27.05.2009, 13:01
ok i removed the code to check if the cop has made the arrest to see if it affected it in anyway,
It has and now compiles successfully, But im not sure wether its my account or the timer but it gave me one point, Then nothing else happens, Anyone?
It has and now compiles successfully, But im not sure wether its my account or the timer but it gave me one point, Then nothing else happens, Anyone?
pawn Code:
#include <a_samp>
#define FILTERSCRIPT
#if defined FILTERSCRIPT
forward Score(playerid);
public OnFilterScriptInit()
{
print("\n--------------------------------------");
print(" Blank Filterscript by your name here");
print("--------------------------------------\n");
print("Starting timer...");
SetTimer("Score",10000,true);
return 1;
}
public OnFilterScriptExit()
{
return 1;
}
#endif
public Score(playerid)
{
SetPlayerScore(playerid,1);
}