SA-MP Forums Archive
physics.inc(233) : error 001: expected token: "-identifier-", but found ";" - 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: physics.inc(233) : error 001: expected token: "-identifier-", but found ";" (/showthread.php?tid=575454)



physics.inc(233) : error 001: expected token: "-identifier-", but found ";" - Khoasmile - 27.05.2015

As the title , i got error on Filterscripts
before i was mix a Soccer Game mode by [PeppeAC] with my Filterscripts
and im also add new plugin called physics, modelsizes and foreach.inc by ******
and i got error on this line.

Код:
C:\Users\Khai\Desktop\samp03z_svr_R4_win32\pawno\include\physics.inc(233) : error 001: expected token: "-identifier-", but found ";"
C:\Users\Khai\Desktop\samp03z_svr_R4_win32\pawno\include\physics.inc(231) : warning 203: symbol is never used: "cz"
C:\Users\Khai\Desktop\samp03z_svr_R4_win32\pawno\include\physics.inc(230) : warning 203: symbol is never used: "cy"
C:\Users\Khai\Desktop\samp03z_svr_R4_win32\pawno\include\physics.inc(229) : warning 203: symbol is never used: "cx"
C:\Users\Khai\Desktop\samp03z_svr_R4_win32\pawno\include\physics.inc(228) : warning 203: symbol is never used: "crz"
C:\Users\Khai\Desktop\samp03z_svr_R4_win32\pawno\include\physics.inc(227) : warning 203: symbol is never used: "cry"
C:\Users\Khai\Desktop\samp03z_svr_R4_win32\pawno\include\physics.inc(226) : warning 203: symbol is never used: "crx"
C:\Users\Khai\Desktop\samp03z_svr_R4_win32\pawno\include\physics.inc(225) : warning 203: symbol is never used: "mod"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


1 Error.
here the include https://sampforum.blast.hk/showthread.php?tid=446286
do you have same problem ? comment .


Re: physics.inc(233) : error 001: expected token: "-identifier-", but found ";" - 1fret - 27.05.2015

For the first error ,You are missing a semi-colon ; . ....

For the errors with the symbol never used jus delete them because you have define it an didn't use it in the script.


Re: physics.inc(233) : error 001: expected token: "-identifier-", but found ";" - PepsiCola23 - 27.05.2015

For the simbol is never used: put on top of the script
PHP код:
#pragma unused ... 
and on ... Put the worlds that are never used.


Re: physics.inc(233) : error 001: expected token: "-identifier-", but found ";" - Khoasmile - 27.05.2015

Quote:
Originally Posted by PepsiCola23
Посмотреть сообщение
For the simbol is never used: put on top of the script
PHP код:
#pragma unused ... 
and on ... Put the worlds that are never used.
Quote:
Originally Posted by 1fret
Посмотреть сообщение
For the first error ,You are missing a semi-colon ; . ....

For the errors with the symbol never used jus delete them because you have define it an didn't use it in the script.
Thank You ! I was fixed it