Skip to content

IOnRconInitialize

WARNING

This is an internal hook and will not be called in plugins. See Internal Hooks for more information.

Usage

  • Return a non-null value to override default behavior

Example Autogenerated

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

Location

  • Facepunch.RCon::Initialize()
csharp
public static void Initialize()
{
	if (Interface.CallHook("IOnRconInitialize") != null)
	{
		return;
	}
	if (RCon.Port == 0)
	{
//---

Released under the MIT License.