22.07.2014, 11:55
pawn Код:
if(PlayerInfo[playerid][pAdmin] < 6)
(
//...code...
)
else SendClientMessage(playerid,-1,"You are not authorized to use this command.");
pawn Код:
if(PlayerInfo[playerid][pAdmin] < 6) return SendClientMessage(playerid,-1,"You are not authorized to use this command");
you don't need if/else all the time, you can just directly return something.
and write everything else below that code.