05.07.2010, 21:18
OnPlayerConnect:
00 = invisible
/backup
but GetPlayerColor only works if you used SetPlayerColor
Something should work
pawn Код:
for(new i; i<MAX_PLAYERS; i++)
{
SetPlayerMarkerForPlayer(playerid, i, 00);
}
/backup
pawn Код:
for(new i; i<MAX_PLAYERS; i++)
{
SetPlayerMarkerForPlayer(i, playerid, /*GetPlayerColor(playerid) or something else*/);
}
Something should work