12.08.2014, 15:32
The issue lies here.
Put it after the #else line, or before the #if defined FILTERSCRIPT line.
pawn Код:
// Everything that follows after this line (if defined filterscript) will only be called if FILTERSCRIPT is defined.
#if defined FILTERSCRIPT
////////////////////////
////////////#defines////
///////////////////////
#define DIALOG_DONATE 342
public OnFilterScriptInit()
{
print("\n--------------------------------------");
print(" Blank Filterscript by your name here");
print("--------------------------------------\n");
return 1;
}
public OnFilterScriptExit()
{
return 1;
}
#else