25.01.2014, 19:22
that's because you check is playerid equals team id, but not player team id. You have:
Which should be:
pawn Код:
if(GetPlayerTeam(playerid == TEAM_GROVE))
pawn Код:
if(GetPlayerTeam(playerid) == TEAM_GROVE)