14.03.2011, 14:31
Quote:
Now, give me some suggestions. How can I script a /fly ADMIN ONLY cmd?!
|
pawn Code:
CMD:fly(playerid, params[])
{
if(PlayerInfo[playerid][pAdmin] < 1) return SendClientMessage(playerid, 0XFFFFFFFF," You are not authorized to use this command");
else
{
// Your fly codes here
}
return 1;
}