09.01.2011, 14:00
Well.. I'm having a roleplay server, and I don't want it to display colors and icons. But for the cops I want it to display the blue color. And I have a /backup command for the cops which gives them a beacon.
Now the problem is, whenever a new player connects to the server he will see they cop as whitenamed. This is what I got under OnPlayerConnect()
Do I really have to make a switch for each faction inside the loop?
Now the problem is, whenever a new player connects to the server he will see they cop as whitenamed. This is what I got under OnPlayerConnect()
pawn Код:
for(new i = 0; i<MAX_PLAYERS; i++)
{
SetPlayerMarkerForPlayer(i, playerid, 0xFFFFFF00);
}
for(new i = 0; i<MAX_PLAYERS; i++)
{
SetPlayerMarkerForPlayer(playerid, i, 0xFFFFFF00);
}