Skip to content

OnBookmarkControlStarted

Usage

  • No return behavior

Example Autogenerated

csharp
private void OnBookmarkControlStarted( ComputerStation instance, BasePlayer player, string text, IRemoteControllable remoteControllable )
{
    Puts( "OnBookmarkControlStarted works!" );
}

Location

  • ComputerStation::BeginControllingBookmark(BaseEntity/RPCMessage msg)
csharp
//---
	this.SendControlBookmarks(player);
	if (GameInfo.HasAchievements && remoteControllable.GetEnt() is CCTV_RC)
	{
		base.InvokeRepeating(new Action(this.CheckCCTVAchievement), 1f, 3f);
	}
	Interface.CallHook("OnBookmarkControlStarted", this, player, text, remoteControllable);
	base.InvokeRepeating(new Action(this.ControlCheck), 0f, 0f);
}

Released under the MIT License.