21.02.2012, 15:54
I think you get this error when you delete this part from the script:
public OnFilterScriptInit()
{
print("\n--------------------------------------");
print(" Blank Filterscript by your name here");
print("--------------------------------------\n");
return 1;
}
public OnFilterScriptExit()
{
return 1;
}
#else
After I tried to compile my script without it I got the errors, and so I opened another PAWNO window and added that part back to my script and it worked without any errors.
public OnFilterScriptInit()
{
print("\n--------------------------------------");
print(" Blank Filterscript by your name here");
print("--------------------------------------\n");
return 1;
}
public OnFilterScriptExit()
{
return 1;
}
#else
After I tried to compile my script without it I got the errors, and so I opened another PAWNO window and added that part back to my script and it worked without any errors.