OnGameModeInit
Description
This callback is triggered when the gamemode starts.
Examples
public OnGameModeInit()
{
print("Gamemode started!");
return 1;
}
Notes
подсказка
This function can also be used in a filterscript to detect if the gamemode changes with RCON commands like changemode or gmx, as changing the gamemode does not reload a filterscript.
Related Callbacks
The following callbacks might be useful, as they're related to this callback in one way or another.
- OnGameModeExit: This callback is called when a gamemode ends.
- OnFilterScriptInit: This callback is called when a filterscript is loaded.
- OnFilterSciptExit: This callback is called when a filterscript is unloaded.