12.06.2011, 21:27
Remove
, the #else line and the #endif line from your script. It should fix it.
Edit: A script that is similar to this is the new.pwn in your pawno folder.
pawn Код:
#if defined FILTERSCRIPT
Edit: A script that is similar to this is the new.pwn in your pawno folder.
pawn Код:
#if defined FILTERSCRIPT
public OnFilterScriptInit()
{
print("\n--------------------------------------");
print(" Blank Filterscript by your name here");
print("--------------------------------------\n");
return 1;
}
public OnFilterScriptExit()
{
return 1;
}
#else
main()
{
print("\n----------------------------------");
print(" Blank Gamemode by your name here");
print("----------------------------------\n");
}
#endif