View Single Post
  #6  
Old 09-27-2011, 11:06 AM
Congdar
Developer
 
Join Date: Jul 2007
Location: my own little world
Posts: 751
Default

what specific exploit are your trying to fix?
How about just making it so you can't spawn bots while you have aggro?

Code:
	if(!strcasecmp(sep->arg[1], "spawn") ) {
		if(c->GetAggroCount() > 0) {
			c->Message(0, "You can't spawn bots while you have aggro.");
			return;
		}
__________________
The Realm
Reply With Quote