14.09.2018, 13:55
Quote:
#include <a_samp>
#include <ZCMD> #include <sscanf2> #include <YSI\y_ini> and i also get this error on other filterscripts only if i put #include <YSI\y_ini> in it too under <a_samp> whats the problem? |
Set the order of the includes correctly (y_ini directly after a_samp.inc):
pawn Код:
#include <a_samp>
#include <YSI\y_ini>
// other YSI libraries if you want to use
// below any other
#include <ZCMD>
#include <sscanf2>