SA-MP Forums Archive
Fatal Error when i add calculation - 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: Fatal Error when i add calculation (/showthread.php?tid=425658)



Fatal Error when i add calculation - MMAS09 - 26.03.2013

Hi all

when i compile my FS i show
Код:
D:\gta\server12\filterscripts\gCamera.pwn(595) : error 029: invalid expression, assumed zero
D:\gta\server12\filterscripts\gCamera.pwn(595) : warning 215: expression has no effect
D:\gta\server12\filterscripts\gCamera.pwn(595) : error 001: expected token: ";", but found "]"
D:\gta\server12\filterscripts\gCamera.pwn(595) : error 029: invalid expression, assumed zero
D:\gta\server12\filterscripts\gCamera.pwn(595) : fatal error 107: too many error messages on one line
Error line
Код:
							GivePlayerMoney(a, - SpeedCameras[b][_fine]*speed-limit*[_fine]);
but when i edit it to
Код:
							GivePlayerMoney(a, - SpeedCameras[b][_fine]*speed);
compiler working fine

any one can help me please?


Re: Fatal Error when i add calculation - Vince - 26.03.2013

pawn Код:
limit*[_fine]
You missed something there.