Posts: 46
Threads: 13
Joined: Jan 2011
Reputation:
0
is there any code to change the colors of the markers on the radar ?
Posts: 59
Threads: 9
Joined: May 2006
Reputation:
0
See: SetPlayerMapIcon
(and you're suggesting people call you if they want something scripted?)
Posts: 46
Threads: 13
Joined: Jan 2011
Reputation:
0
with that SetPlayerMapIcon i cant archive what i want, now i have 3 npc cars running, and i want to change the colors of their squares on the minimap, and also those from the players.
Posts: 46
Threads: 13
Joined: Jan 2011
Reputation:
0
SetPlayerColor(playerid, (colorid))??
and than a list with color id's or?
Posts: 211
Threads: 22
Joined: Apr 2011
Reputation:
0
use
Public Onplayerspawn
{
if(IsPlayerNPC(playerid))
{
SetPlayerColor(playerid, (colorid))
return 1;
}
return 0;
}