15.11.2011, 12:52
FIX
Cuz you only checked if "i" is in the blue team , u forget to checek if "playerid" is in the blue team too
pawn Код:
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(gTeam[i] == BLUE_TEAM && gTeam[playerid] == BLUE_TEAM)
{
SetPlayerMarkerForPlayer(playerid, i, COLOR_BLUE);
}
}