25.01.2013, 19:44
Assuming you used DaRk_RaiN's example
Change
to
Change
pawn Код:
if(pInfo[playerid][Adminlevel] <=3)return SendClientMessage(playerid, -1, " You are not allowed to use this command");
pawn Код:
if(pInfo[playerid][Adminlevel] < 3)return SendClientMessage(playerid, -1, " You are not allowed to use this command");

