Skip to content

OnTick

Usage

  • No return behavior

Example Autogenerated

csharp
private void OnTick(  )
{
    Puts( "OnTick works!" );
}

Location

  • ServerMgr::DoTick()
csharp
private void DoTick()
{
	Interface.CallHook("OnTick");
	RCon.Update();
	CompanionServer.Server.Update();
	NexusServer.Update();
	for (int i = 0; i < Network.Net.sv.connections.Count; i++)
	{
//---

Released under the MIT License.