help i get 1 error with my teleport command - 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 i get 1 error with my teleport command (
/showthread.php?tid=259528)
help i get 1 error with my teleport command -
-matt- - 05.06.2011
Код:
C:\Users\Family\Desktop\FastFive DriftCity 0.3c\gamemodes\fastfive.pwn(370) : error 017: undefined symbol "SafeSetPlayerPos"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
1 Error.
my command code is
Код:
if (strcmp("/gotols", cmdtext, true, 10) == 0)
{
SafeSetPlayerPos(playerid, 1529.6,-1691.2,13.3);
SetPlayerVirtualWorld(playerid, 0);
return 1;
}
Re: help i get 1 error with my teleport command -
Calgon - 05.06.2011
Remove the "Safe" part and leave it as "SetPlayerPos" for it to work.
Re: help i get 1 error with my teleport command -
-matt- - 05.06.2011
thanks