10.09.2011, 21:29
Ok so heres my code
If a admin higher than level 3 types this command it returns Syntax....
If a admin lower than 3 tpes the command it works.
Can anyone help me with this problem
pawn Код:
CMD:goto(playerid)
{
if(PlayerInfo[playerid][pAdmin] >= 3) return SendClientMessage(playerid, COLOR_RED, "Syntax Error: You are not a admin.");
{
//code
}
return 1;
}
If a admin lower than 3 tpes the command it works.
Can anyone help me with this problem