[HELP] Teleport - 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: [HELP] Teleport (
/showthread.php?tid=114444)
[HELP] Teleport -
Adam199 - 19.12.2009
How to get the teleport code
?!!!!
I mean like this:
Код:
614.528,-515.147,19.911
Re: [HELP] Teleport -
Correlli - 19.12.2009
Use
/save command in-game, it will save the coords to the
savedpositions.txt which is located at your GTA:San Andreas directory.
Re: [HELP] Teleport -
Kurence - 19.12.2009
Код:
if(strcmp("/tele",cmdtext,true) == 0){
SetPlayerPos(playerid,614.528,-515.147,19.911);
}
- add under OnPlayerCommandText
Re: [HELP] Teleport -
Adam199 - 19.12.2009
Thanks Don Correlli