06.03.2010, 09:10
pawn Код:
for(new i=0; i < MAX_PLAYERS; i++)
{
if(gTeam[i] == YOUR_TEAM)
{
SetPlayerMarkerForPlayer(playerid, showplayerid, color);
}
else if(gTeam[i] == OTHERR_TEAM)
{
SetPlayerMarkerForPlayer(playerid, showplayerid, color);
}
}
showplayerid The player whose color will be changed
color New color. Set the alpha part to 00 for an invisible blip. This works because 00 will set the transparency to nothing, which is invisible.

