SA-MP Forums Archive
map ircon problem - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: map ircon problem (/showthread.php?tid=213936)



map ircon problem - Face9000 - 20.01.2011

Hi all,i added this icons:

Код:
	SetPlayerMapIcon(playerid, 8, 240.0153,1858.9503,14.0840,274.1904,6, 0);
	SetPlayerMapIcon(playerid, 7,-181.6294,1166.3633,19.7500 ,6, 0);
	SetPlayerMapIcon(playerid, 1, 261.2657,1857.4570,8.7578,176.7428, 23, 0);
 	SetPlayerMapIcon(playerid, 2, -285.1750,2603.6836,62.8594,166.6725, 6, 0);
  	SetPlayerMapIcon(playerid, 3, -1482.7408,2641.6597,58.7813,186.3550, 6, 0);
And i got this:

Код:
warning 213: tag mismatch
warning 202: number of arguments does not match definition
Coordinates:

-1482.7408,2641.6597,58.7813,186.3550
-285.1750,2603.6836,62.8594,166.6725
261.2657,1857.4570,8.7578,176.7428
240.0153,1858.9503,14.0840,274.1904
405.6168,2534.6714,16.2748,332.3438,123,1

Thanks


- viKKmaN - 20.01.2011

Код:
	SetPlayerMapIcon(playerid, 8, 240.0153, 1858.9503, 14.0840, 6, 0);
	SetPlayerMapIcon(playerid, 7, -181.6294, 1166.3633, 19.7500, 6, 0);
	SetPlayerMapIcon(playerid, 1, 261.2657, 1857.4570, 8.7578, 23, 0);
 	SetPlayerMapIcon(playerid, 2, -285.1750, 2603.6836, 62.8594, 6, 0);
  	SetPlayerMapIcon(playerid, 3, -1482.7408, 2641.6597, 58.7813, 6, 0);



Re: map ircon problem - Face9000 - 20.01.2011

Oh! Thanks ^^