SA-MP Forums Archive
Problem with include load - 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: Problem with include load (/showthread.php?tid=554871)



Problem with include load - deimantas1 - 05.01.2015

Hello, when I entry bad include name this: <callback/OnGameModeInit> I got error, it's ok, but if I entry bad file name #include <callback/OnGameModeExit> I didn't get error and didn't load this include. Code:

Код:
#include <a_samp>
#include <a_mysql>
#include <zcmd>
#include <function/p/need>
#include <function/p/define>
#include <function/p/enum>
#include <function/p/variable>
#include <callback/p/OnGameModeInit>
#include <callback/p/OnGameModeExit>



Re: Problem with include load - Nitin - 05.01.2015

You dont need to #include these :-
pawn Код:
#include <function/p/need>
#include <function/p/define>
#include <function/p/enum>
#include <function/p/variable>
#include <callback/p/OnGameModeInit>
#include <callback/p/OnGameModeExit>



Re: Problem with include load - deimantas1 - 05.01.2015

What need do? What these files read from includes folder?