Table of Contents

Class JailbirdChargeCompleteEventArgs

Namespace
Exiled.Events.EventArgs.Item
Assembly
Exiled.Events.dll

Contains all information when a player completes charging a Jailbird.

public class JailbirdChargeCompleteEventArgs : IItemEvent, IPlayerEvent, IDeniableEvent, IExiledEvent
Inheritance
JailbirdChargeCompleteEventArgs
Implements
Inherited Members
Extension Methods

Constructors

JailbirdChargeCompleteEventArgs(ReferenceHub, ItemBase, bool)

Initializes a new instance of the JailbirdChargeCompleteEventArgs class.

public JailbirdChargeCompleteEventArgs(ReferenceHub player, ItemBase jailbird, bool isAllowed = true)

Parameters

player ReferenceHub

The player who completed the charge.

jailbird ItemBase

The Jailbird item whose charge is complete.

isAllowed bool

Whether the Jailbird is allowed to attack after charging.

Properties

IsAllowed

Gets or sets a value indicating whether the Jailbird is allowed to attack after charging.

public bool IsAllowed { get; set; }

Property Value

bool

Item

Gets the Item associated with the charged Jailbird.

public Item Item { get; }

Property Value

Item

Jailbird

Gets the Jailbird that was fully charged.

public Jailbird Jailbird { get; }

Property Value

Jailbird

Player

Gets the Player who completed the charge.

public Player Player { get; }

Property Value

Player