@monster and @go

myieee

New member
Messages
5
Points
0
Hi I would like to request in src if the GM use @monster command it will announce to all like this "GM-Hercules has summoned [1 or how many monster Poring] in the map of Prontera etc etc"

and for the @go command . when player is dead they arent able to use @go command 

thank you

 
Last edited by a moderator:
go to your atcommand.c file, search for the code related to (go) and add the check:

Code:
if( pc_isdead(sd) ) {
		clif->message(fd, msg_fd(fd,864)); // "You cannot use this command when dead."
		return false;
	}
 
Back
Top