Posts: 186
Threads: 41
Joined: Aug 2013
Quote:
Originally Posted by SilentSoul
Search for
pawn Код:
#define FILTERSCRIPT #if defined FILTERSCRIPT
and remove them , also move all codes inside
pawn Код:
public OnFilterScriptInit() { return 1; } public OnFilterScriptExit() { return 1; }
To
pawn Код:
public OnGameModeInit() { return 1; }
public OnGameModeExit() { return 1; }
|
thankyou verymuch for your clear explaination