13.08.2011, 20:18
try this
pawn Код:
if (strcmp("/command", cmdtext, true, 10) == 0)
{
if(PlayerTeam[playerid] == TEAM1) {
//code here
}
else if(PlayerTeam[playerid] == TEAM2) {
SendClientMessage(playerid,COLOR_WHITE,"SERVER: "COL_RED"You are not TEAM1 to use this command");
return 1;
}
return 1;
}