SA-MP Forums Archive
Can't read y_ini and y_utils - 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: Can't read y_ini and y_utils (/showthread.php?tid=487129)



Can't read y_ini and y_utils - roar - 12.01.2014

So here is the problem. I am using JLAdmin filterscript. The thing is, when I compile the script it got this message:

Code:
pawno\include\YSI\y_utils.inc(737) : error 017: undefined symbol "fexist"
pawno\include\YSI\y_utils.inc(744) : error 017: undefined symbol "fopen"
pawno\include\YSI\y_utils.inc(744) : warning 213: tag mismatch
pawno\include\YSI\y_utils.inc(747) : error 017: undefined symbol "fclose"
pawno\include\YSI\y_ini.inc(466) : error 017: undefined symbol "fopen"
pawno\include\YSI\y_ini.inc(512) : error 017: undefined symbol "fread"
pawno\include\YSI\y_ini.inc(659) : error 017: undefined symbol "fclose"
pawno\include\YSI\y_ini.inc(466) : warning 204: symbol is assigned a value that is never used: "f"
pawno\include\YSI\y_ini.inc(1227) : error 017: undefined symbol "ftemp"
pawno\include\YSI\y_ini.inc(1228) : warning 213: tag mismatch
pawno\include\YSI\y_ini.inc(1262) : error 017: undefined symbol "fread"
pawno\include\YSI\y_ini.inc(1298) : error 017: undefined symbol "fwrite"
pawno\include\YSI\y_ini.inc(1306) : error 017: undefined symbol "fwrite"
pawno\include\YSI\y_ini.inc(1349) : error 017: undefined symbol "fwrite"
pawno\include\YSI\y_ini.inc(1394) : error 017: undefined symbol "fwrite"
pawno\include\YSI\y_ini.inc(1407) : error 017: undefined symbol "fwrite"
pawno\include\YSI\y_ini.inc(1412) : error 017: undefined symbol "fclose"
pawno\include\YSI\y_ini.inc(1431) : error 017: undefined symbol "fwrite"
pawno\include\YSI\y_ini.inc(1438) : error 017: undefined symbol "fwrite"
pawno\include\YSI\y_ini.inc(1446) : error 017: undefined symbol "fremove"
pawno\include\YSI\y_ini.inc(1451) : error 017: undefined symbol "fopen"
pawno\include\YSI\y_ini.inc(1451) : warning 213: tag mismatch
pawno\include\YSI\y_ini.inc(1453) : error 017: undefined symbol "fseek"
pawno\include\YSI\y_ini.inc(1456) : error 017: undefined symbol "fread"
pawno\include\YSI\y_ini.inc(1456) : error 017: undefined symbol "fwrite"
pawno\include\YSI\y_ini.inc(1466) : error 017: undefined symbol "fclose"
pawno\include\YSI\y_ini.inc(1467) : error 017: undefined symbol "fclose"
filterscripts\JLadmin.pwn(400) : error 017: undefined symbol "fexist"
filterscripts\JLadmin.pwn(980) : error 017: undefined symbol "fexist"
filterscripts\JLadmin.pwn(996) : error 017: undefined symbol "fexist"
Please note that I HAVE THE REQUIRED FILES IN PAWNO\INCLUDE\YSI. (y_utils and y_ini).

Thank you.


Re: Can't read y_ini and y_utils - Hansrutger - 12.01.2014

And I assume you did include it at the top of the script?


Re: Can't read y_ini and y_utils - Emmet_ - 12.01.2014

You seem to be missing the original includes that are shipped with the SA-MP package.

Download the SA-MP package and place the includes in your folder.


Re: Can't read y_ini and y_utils - roar - 12.01.2014

Quote:
Originally Posted by Emmet_
View Post
You seem to be missing the original includes that are shipped with the SA-MP package.

Download the SA-MP package and place the includes in your folder.
Yes, I tried to download the server package and replace the old default include with the new one. And yes it seems that I was missing one of the include.

Thanks for your help! It is fixed now.