IOnServerInitialized
WARNING
This is an internal hook and will not be called in plugins. See Internal Hooks for more information.
Usage
- No return behavior
Example Autogenerated
csharp
private void IOnServerInitialized( )
{
Puts( "IOnServerInitialized works!" );
}Location
- ServerMgr::OpenConnection(bool useSteamServer)
csharp
//---
EACServer.DoStartup();
InvokeRepeating("DoTick", 1f, 1f / (float)ConVar.Server.tickrate);
InvokeRepeating("DoHeartbeat", 1f, 1f);
runFrameUpdate = true;
ConsoleSystem.OnReplicatedVarChanged += OnReplicatedVarChanged;
Interface.CallHook("IOnServerInitialized");
}