27.02.2010, 13:23
Use SetPlayerMarkerForPlayer(playerid, showplayerid, color);
Heres a little something:
This would make set playerids color to blue and everyone(i) will see playerid as "color" on the map.
Heres a little something:
pawn Код:
for(new i = 0; i < MAX_PLAYERS; i++)//Here is the loop that makes i to everyone
{
SetPlayerColor(playerid, 0x0000FFFF);
SetPlayerMarkerForPlayer(i, playerid, color);//Change color
}