Skip to content

OnEntityPickedUp

Usage

  • No return behavior

Example Autogenerated

csharp
private void OnEntityPickedUp( BaseCombatEntity instance, Item createdItem, BasePlayer player )
{
    Puts( "OnEntityPickedUp works!" );
}

Location

  • BaseCombatEntity::OnPickedUp(Item createdItem, BasePlayer player)
csharp
public virtual void OnPickedUp(Item createdItem, BasePlayer player)
{
	Interface.CallHook("OnEntityPickedUp", this, createdItem, player);
}

Released under the MIT License.