11.03.2009, 20:47
http://pastebin.com/f4c2442d0
I added this:
Meaning, if the level of the person receiving the nuke is greater than or equal to the person using the command, it won't work.
You can add that to every command and edit it as you feel.
I added this:
pawn Code:
if (AccountInfo[giverplayerid][AdminLevel] >= AccountInfo[playerid][AdminLevel])
{
SendClientMessage(playerid, GREY, "You cannot nuke admins higher or equal to you");
return 1;
}
You can add that to every command and edit it as you feel.