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 (this.activeCallTo != null)
	{
		this.activeCallTo.ServerPlayAnsweringMessage(this);
	}
	this.SetPhoneState(Telephone.CallState.Idle);
	Interface.CallHook("OnPhoneDialTimedOut", this.activeCallTo, this, this.activeCallTo.currentPlayer);
}

Released under the MIT License.