How to make a player location system? - 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: How to make a player location system? (
/showthread.php?tid=83835)
How to make a player location system? -
decayer - 27.06.2009
I don't know the exact name, but how do you make it so different classes are different colors, and then they have those little squares/arrows on the radar?
I already searched "location system" and didn't find anything of use.
Re: How to make a player location system? -
Grim_ - 27.06.2009
pawn Код:
//onplayerrequestclass
if(classid == 0) { SetPlayerColor(playerid, color); }
else if (classid == 1) { SetPlayerColor(playerid, color); } // ect ect
//ongamemodeinit
ShowPlayerMarkers(1);