include\YSI/y_ini.inc(76) : fatal error 100: cannot read from file: "..\YSI_Storage\y_ini"
#8

Quote:
Originally Posted by JuWo
Посмотреть сообщение
#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?
ZCMD has isnull defined and is included before YSI libraries. Then YSI tries to re-define it and result in error.
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>
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 3 Guest(s)