14.08.2011, 07:24
You are using the same id for each map icon! That's your problem, it's constantly re-creating that map icon with the specified ID. Please look at documentation of the function here: https://sampwiki.blast.hk/wiki/SetPlayerMapIcon
It should look something more like so:
It should look something more like so:
pawn Код:
SetPlayerMapIcon(playerid, 1, 2136.19, -1147.62, 24.52, 55, 0 );
SetPlayerMapIcon(playerid, 2, 1553.53, -1675.70, 16.20, 30, 0 );
SetPlayerMapIcon(playerid, 3, 1315.42, -897.68, 39.58, 17, 0 );
SetPlayerMapIcon(playerid, 4, 1380.79, -1088.64, 27.38, 56, 0 );
SetPlayerMapIcon(playerid, 5, 1368.45, -1279.75, 13.55 , 6, 0 );
...