26.01.2011, 22:47
use it like this:
so if you make a cmd.
I use zcmd:
hope it helped
pawn Код:
if(PInfo[playerid][Level] < 1) return SendClientMessage(playerid,ORANGE,"You're not an admin level 1 or higher!");
I use zcmd:
pawn Код:
COMMAND:hello(playerid,params[])
{
if(PInfo[playerid][Level] < 1) return SendClientMessage(playerid,ORANGE,"You're not an admin level 1 or higher!");
else
{
SendClientMessageToAll(COLORCODE,"Hello Everyone");
}
return 1;
}