Skip to content

OnActiveTelephoneUpdated

Usage

  • No return behavior

Example Autogenerated

csharp
private void OnActiveTelephoneUpdated( BasePlayer instance, PhoneController t )
{
    Puts( "OnActiveTelephoneUpdated works!" );
}

Location

  • BasePlayer::SetActiveTelephone(PhoneController t)
csharp
public void SetActiveTelephone(PhoneController t)
{
	this.activeTelephone = t;
	Interface.CallHook("OnActiveTelephoneUpdated", this, t);
}

Released under the MIT License.