17.03.2013, 06:52
pawn Code:
CMD:jetpack(playerid,params[])
{
if(PlayerInfo[playerid][pAdmin] >= 3)
{
if( sscanf( params, "u", params[0] ) )
{
SetPlayerSpecialAction(playerid, 2);
}
else
{
SetPlayerSpecialAction(params[0], 2);
SendClientMessageEx(params[0] , COLOR_BLUE ," admin %s you gave a jetpack" , Name(playerid) );
}
} else return SendClientMessage(playerid, COLOR_RED , "you are not an administrator with sufficient level to use this command");
return 1;
}

