SA-MP Forums Archive
Help me with Anims! - 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: Help me with Anims! (/showthread.php?tid=397945)



Help me with Anims! - Goldino - 07.12.2012

I've added a anim system [FS] to my script. Heres the whole script:

http://pastebin.com/UvD1KZfV

As you can see, I've added this to each command:

GameTextForPlayer(playerid, "Type /sync to stop, 3000, 1);


But I get these errors in the description...


pawn Код:
C:\Documents and Settings\Danny.YOUR-E6F02835AE\My Documents\GTA SA Server\filterscripts\anims.pwn(112) : error 037: invalid string (possibly non-terminated string)
C:\Documents and Settings\Danny.YOUR-E6F02835AE\My Documents\GTA SA Server\filterscripts\anims.pwn(112) : error 017: undefined symbol "Type"
C:\Documents and Settings\Danny.YOUR-E6F02835AE\My Documents\GTA SA Server\filterscripts\anims.pwn(112) : error 017: undefined symbol "to"
C:\Documents and Settings\Danny.YOUR-E6F02835AE\My Documents\GTA SA Server\filterscripts\anims.pwn(112) : fatal error 107: too many error messages on one line

Compilation aborted.Pawn compiler 3.2.3664          Copyright (c) 1997-2006, ITB CompuPhase


4 Errors.
Please help


Re: Help me with Anims! - emokidx - 07.12.2012

GameTextForPlayer(playerid, "Type /sync to stop, 3000, 1");
you forgot the (")


Re: Help me with Anims! - Goldino - 07.12.2012

what do you mean


Re: Help me with Anims! - emokidx - 07.12.2012

your line
GameTextForPlayer(playerid, "Type /sync to stop, 3000, 1);
fixed line
GameTextForPlayer(playerid, "Type /sync to stop, 3000, 1");
the (") in the end, you forgot it.


Re: Help me with Anims! - Goldino - 07.12.2012

That's exactly what I wrote? They are the same


Re: Help me with Anims! - Goldino - 07.12.2012

Oh sorry, I see my mistake