SA-MP Forums Archive
Where can I get a cord finding application? - 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: Where can I get a cord finding application? (/showthread.php?tid=82672)



Where can I get a cord finding application? - left48 - 19.06.2009

I was wondering where I could get an application, or a map or something, of the cord locations? Because, I have a bunch of cords, and I don't know where the locations are, thanks, I hope you can help.


Re: Where can I get a cord finding application? - member - 19.06.2009

i dont think that is possible.

Just make a command to test each coordinate.
Like /teleport1, teleport 2...

pawn Код:
if(!strcmp(cmdtext,"/tp1",true,4))
    {
      SetPlayerPos(playerid, 1278.1628,-36.6077,1001.0156); //change coordinates
        SendClientMessage(playerid,COLOR_KHAKI,"This is teleport 1");
      return 1;
    }

    if(!strcmp(cmdtext,"/tp2",true,4))
    {
      SetPlayerPos(playerid, 1278.1628,-36.6077,1001.0156); //change coordinates
        SendClientMessage(playerid,COLOR_KHAKI,"This is teleport 2");
      return 1;
    }



Re: Where can I get a cord finding application? - Vetle - 19.06.2009

use /save ingame

the position is saved to savedpositions.txt in gta sa directory


Re: Where can I get a cord finding application? - left48 - 19.06.2009

Quote:
Originally Posted by Vetle
use /save ingame

the position is saved to savedpositions.txt in gta sa directory
No.. I have the coords, and I need something where I can see the location on the map, of where the coords are..