// This is a comment
// uncomment the line below if you want to write a filterscript
//#define FILTERSCRIPT
#include <a_samp>
#include <zcmd>
//No sscanf2 included
public OnFilterScriptInit()
{
print("\n--------------------------------------");
print(" Blank Filterscript by your name here");
print("--------------------------------------\n");
return 1;
}
public OnFilterScriptExit()
{
return 1;
}
-------------------------------------- [22:30:26] Blank Filterscript by your name here [22:30:26] -------------------------------------- [22:30:26] Filterscript 'PTPM2.amx' loaded.
// This is a comment
// uncomment the line below if you want to write a filterscript
//#define FILTERSCRIPT
#include <a_samp>
#include <zcmd>
#include <sscanf2> //Sscanf2 included
public OnFilterScriptInit()
{
print("\n--------------------------------------");
print(" Blank Filterscript by your name here");
print("--------------------------------------\n");
return 1;
}
public OnFilterScriptExit()
{
return 1;
}
Console input: Okay Reloading Console input: reloadfs PTPM2 [22:34:36] Filterscript 'PTPM2.amx' unloaded. [22:34:36] Filterscript 'PTPM2.amx' loaded.
|
I don't get it...whats the problem? Also, did you add sscanf to plugins, and define it in your server.cfg?
plugins sscanf2 That should be in server.cfg |