SA-MP Forums Archive
Map TP, coordinates TP - 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)
+--- Thread: Map TP, coordinates TP (/showthread.php?tid=590027)



Map TP, coordinates TP - Alsarty - 24.09.2015

Hi..

I need a filterscript that can make me TP over the map with the marker. I also need a command to TP to coordinates.

This is going to be used for mapping so yeh.

ty


Re: Map TP, coordinates TP - saffierr - 24.09.2015

You can easily create your own tp system.
Goto the teleport coordinates and type /save.
Add the coods in your script and done.


Re: Map TP, coordinates TP - Alsarty - 24.09.2015

Wasn't even me posting, was a friend. Nevermind this, I'll make it myself.

Thanks.


Re: Map TP, coordinates TP - Abagail - 24.09.2015

pawn Код:
public OnPlayerClickMap(playerid, Float:fX, Float:fY, Float:fZ)
{
       if(fX != 0.0 && fY != 0.0) SetPlayerPosFindZ(playerid, fX, fY, fZ);
       return true;
}