Skip to content

OnPhoneDialTimedOut

Usage

  • No return behavior

Example Autogenerated

csharp
private void OnPhoneDialTimedOut( PhoneController activeCallTo, PhoneController instance, BasePlayer currentPlayer )
{
    Puts( "OnPhoneDialTimedOut works!" );
}

Location

  • PhoneController::TimeOutDialing()
csharp
//---
		if (activeCallTo != null)
		{
			activeCallTo.ServerPlayAnsweringMessage(this);
		}
		SetPhoneState(Telephone.CallState.Idle);
		Interface.CallHook("OnPhoneDialTimedOut", activeCallTo, this, activeCallTo.currentPlayer);
	}
}

Released under the MIT License.