24.09.2012, 18:02
next time use your code in [ pawn ] [ /pawn ] (*without space)
OT: Tip:
The following code must be used to block a command for a particular team
(*you need to edit following according to your vars.. its just an example.. else you have to do it on your own*)
OT: Tip:
The following code must be used to block a command for a particular team
(*you need to edit following according to your vars.. its just an example.. else you have to do it on your own*)
pawn Код:
if(gTeam[playerid] != TEAM_HUMAN) //You need to edit it according to your team variable!
{
SendClientMessage(playerid, 0xFF0000FF,"You cannot use this command");
}