Skip to content

OnServerShutdown

Server is shutting down

Usage

  • No return behavior

Example Autogenerated

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

Location

  • RustCore::IOnServerShutdown()
csharp
private void IOnServerShutdown()
{
	Interface.Oxide.CallHook("OnServerShutdown");
	Interface.Oxide.OnShutdown();
	Covalence.PlayerManager.SavePlayerData();
}

Released under the MIT License.