A few errors - 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: A few errors (
/showthread.php?tid=126097)
A few errors -
too803 - 07.02.2010
I made a SHITLONG filter and when I compiled I got THIS error or errors
C:\Documents and Settings\Admin\Desktop\server\pawno\include\Dini.i nc(46) : error 017: undefined symbol "MAX_stringdutils"
C:\Documents and Settings\Admin\Desktop\server\pawno\include\Dini.i nc(46) : error 009: invalid array size (negative, zero or out of bounds)
C:\Documents and Settings\Admin\Desktop\server\pawno\include\Dini.i nc(46) : error 036: empty statement
C:\Documents and Settings\Admin\Desktop\server\pawno\include\Dini.i nc(46) : fatal error 107: too many error messages on one line
Re: A few errors -
mansonh - 07.02.2010
Post your code.
you need to define "MAX_stringdutils" somewhere
invalid array size (negative, zero or out of bounds)
error 036: empty statement
- will have to see code for
Re: A few errors -
wangdata - 07.02.2010
You have an undefined symbol "MAX_stringdutils", a invalid array size (negative, zero or out of bounds), also a error 036: empty statement, and too many error messages on one line.
Re: A few errors -
too803 - 07.02.2010
How can i fastly find the code?
Re: A few errors -
mansonh - 07.02.2010
The error shows what lines you need
pawno\include\Dini.inc(46)
looks like you modified the dini include, or you got an incorrect one.
Re: A few errors -
too803 - 07.02.2010
new tmp[MAX_stringdutils];
theres the line from my dini.inc number 46
Re: A few errors -
too803 - 07.02.2010
FIXED