17.10.2017, 12:14
What I do to make gamemodes is, instead of making filterscripts I make a seperate file just like a filterscript.
I replace all the public functions of the script with stocks and type the stock names in the original publics of the gamemode
For example :-
I hope you understood what I tried to explain above ^.
I replace all the public functions of the script with stocks and type the stock names in the original publics of the gamemode
For example :-
PHP код:
public OnGameModeInit() to OnGInit() // In the script (not gamemode)
PHP код:
public OnGameModeInit() // In gamemode
{
OnGInit();
}