Entity (120)

All currently available hooks that are found in Carbon. Most hooks would be ones compatible with Oxide, although there are Carbon-only ones as well.

CanEntityBeHostile (BaseCombatEntity)

  • Useful for overriding hostility of an entity.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches BaseCombatEntity.IsHostile of Assembly-CSharp.dll.

Example
object CanEntityBeHostile(BaseCombatEntity self)
{
    Puts("CanEntityBeHostile was called!");
    return (bool) null;
}

CanEntityBeHostile (BasePlayer)

  • Useful for overriding hostility of an entity.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches BasePlayer.IsHostile of Assembly-CSharp.dll.

Example
object CanEntityBeHostile(BasePlayer self)
{
    Puts("CanEntityBeHostile was called!");
    return (bool) null;
}

CanExplosiveStick

  • Called when a Timed Explosive is attempting to stick to another entity.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches TimedExplosive.CanStickTo of Assembly-CSharp.dll.

Example
object CanExplosiveStick(TimedExplosive self)
{
    Puts("CanExplosiveStick was called!");
    return (bool) null;
}

CanLootEntity

  • Called when the player starts looting a DroppedItemContainer, LootableCorpse, ResourceContainer, BaseRidableAnimal, or StorageContainer entity.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches WorldItem.RPC_OpenLoot of Assembly-CSharp.dll.

Example
object CanLootEntity(WorldItem self)
{
    Puts("CanLootEntity was called!");
    return (object) null;
}

CanPatrolHeliSeePlayer

  • Can the Patrol Helicopter see the player.

  • Returning a non-null value cancels default behavior.

  • This hook is Carbon-only compatible.

  • Patches PatrolHelicopterAI.PlayerVisible.

Example
object CanPatrolHeliSeePlayer(PatrolHelicopterAI heli, BasePlayer player)
{
    Puts("CanPatrolHeliSeePlayer was called!");
    return (bool) null;
}

CanPickupAllFromRack

  • Returning a non-null value cancels default behavior.

  • This hook is Carbon-only compatible.

  • Patches WeaponRack.GivePlayerAllWeapons.

Example
object CanPickupAllFromRack(WeaponRack rack, BasePlayer player, int mountSlotIndex)
{
    Puts("CanPickupAllFromRack was called!");
    return (bool) null;
}

CanPickupFromRack

  • Returning a non-null value cancels default behavior.

  • This hook is Carbon-only compatible.

  • Patches WeaponRack.GivePlayerWeapon.

Example
object CanPickupFromRack(WeaponRack rack, BasePlayer player, Item item, int mountSlotIndex, int playerBeltIndex, bool tryHold)
{
    Puts("CanPickupFromRack was called!");
    return (bool) null;
}

CanPlaceOnRack

  • Returning a non-null value cancels default behavior.

  • This hook is Carbon-only compatible.

  • Patches WeaponRack.MountWeapon.

Example
object CanPlaceOnRack(WeaponRack rack, BasePlayer player, Item item, int gridCellIndex, int rotation)
{
    Puts("CanPlaceOnRack was called!");
    return (bool) null;
}

CanSamSiteShoot

  • Useful for canceling the shoot of SamSite.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches SamSite.WeaponTick of Assembly-CSharp.dll.

Example
object CanSamSiteShoot(SamSite self)
{
    Puts("CanSamSiteShoot was called!");
    return (object) null;
}

CanSeeStash

  • Called when a player is looking at a hidden stash.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches BasePlayer.CheckStashRevealInvoke of Assembly-CSharp.dll.

Example
object CanSeeStash(BasePlayer self, StashContainer entity)
{
    Puts("CanSeeStash was called!");
    return (object) null;
}

CanWaterBallSplash

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches WaterBall.DoSplash of Assembly-CSharp.dll.

Example
object CanWaterBallSplash(ItemDefinition liquidDef, UnityEngine.Vector3 position, float radius, int amount)
{
    Puts("CanWaterBallSplash was called!");
    return (bool) null;
}

OnAirdrop

  • Called when an airdrop has been called.

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches CargoPlane.UpdateDropPosition of Assembly-CSharp.dll.

Example
void OnAirdrop(CargoPlane self)
{
    Puts("OnAirdrop was called!");
}

OnAnalysisComplete

  • Called right after a player completes a survey crater analysis.

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches SurveyCrater.AnalysisComplete of Assembly-CSharp.dll.

Example
void OnAnalysisComplete(SurveyCrater self, BasePlayer player)
{
    Puts("OnAnalysisComplete was called!");
}

OnArcadeScoreAdded

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches BaseArcadeMachine.AddScore of Assembly-CSharp.dll.

Example
void OnArcadeScoreAdded(BaseArcadeMachine self, BasePlayer player, int score)
{
    Puts("OnArcadeScoreAdded was called!");
}

OnBedMade

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches SleepingBag.RPC_MakeBed of Assembly-CSharp.dll.

Example
void OnBedMade(SleepingBag self, BasePlayer player)
{
    Puts("OnBedMade was called!");
}

OnBigWheelLoss

  • Called when a specific item is lost on the big wheel game.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches BigWheelGame.Payout of Assembly-CSharp.dll.

Example
object OnBigWheelLoss()
{
    Puts("OnBigWheelLoss was called!");
    return (object) null;
}

This hook requires OnBigWheelWin, which loads alongside OnBigWheelLoss.

OnBigWheelWin

  • Called before multiplier is applied.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches BigWheelGame.Payout of Assembly-CSharp.dll.

Example
object OnBigWheelWin()
{
    Puts("OnBigWheelWin was called!");
    return (object) null;
}

OnBuildingPrivilege

  • Useful for overriding a building privilege on specific entities and etc.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches BaseEntity.GetBuildingPrivilege of Assembly-CSharp.dll.

Example
object OnBuildingPrivilege(BaseEntity self)
{
    Puts("OnBuildingPrivilege was called!");
    return (BuildingPrivlidge) null;
}

OnCargoPlaneSignaled

  • Called right after a supply signal has called a cargo plane.

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches SupplySignal.Explode of Assembly-CSharp.dll.

Example
void OnCargoPlaneSignaled(BaseEntity local0, SupplySignal self)
{
    Puts("OnCargoPlaneSignaled was called!");
}

OnCargoShipEgress

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches CargoShip.StartEgress of Assembly-CSharp.dll.

Example
object OnCargoShipEgress(CargoShip self)
{
    Puts("OnCargoShipEgress was called!");
    return (object) null;
}

OnCargoShipHarborApproach

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches CargoShip.StartHarborApproach of Assembly-CSharp.dll.

Example
object OnCargoShipHarborApproach(CargoShip self)
{
    Puts("OnCargoShipHarborApproach was called!");
    return (object) null;
}

OnCargoShipHarborArrived

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches CargoShip.OnArrivedAtHarbor of Assembly-CSharp.dll.

Example
void OnCargoShipHarborArrived(CargoShip self)
{
    Puts("OnCargoShipHarborArrived was called!");
}

OnCargoShipHarborLeave

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches CargoShip.LeaveHarbor of Assembly-CSharp.dll.

Example
void OnCargoShipHarborLeave(CargoShip self)
{
    Puts("OnCargoShipHarborLeave was called!");
}

OnCargoShipSpawnCrate

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches CargoShip.RespawnLoot of Assembly-CSharp.dll.

Example
object OnCargoShipSpawnCrate(CargoShip self)
{
    Puts("OnCargoShipSpawnCrate was called!");
    return (object) null;
}

OnChairComfort

  • Overrides the amount of comfort chairs give to players.

  • Returning a non-null value cancels default behavior.

  • This hook is Carbon-only compatible.

  • Patches BaseChair.GetComfort.

Example
object OnChairComfort(BaseChair chair)
{
    Puts("OnChairComfort was called!");
    return (float) null;
}

OnComposterUpdate

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches Composter.UpdateComposting of Assembly-CSharp.dll.

Example
object OnComposterUpdate(Composter self)
{
    Puts("OnComposterUpdate was called!");
    return (object) null;
}

OnContainerDropItems

  • Called when a container is destroyed and all items are about to be dropped.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches DropUtil.DropItems of Assembly-CSharp.dll.

Example
object OnContainerDropItems(ItemContainer container)
{
    Puts("OnContainerDropItems was called!");
    return (object) null;
}

OnCrateDropped

  • Called when a locked crate from the CH47 (Chinook) has dropped.

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches HackableLockedCrate.SetWasDropped of Assembly-CSharp.dll.

Example
void OnCrateDropped(HackableLockedCrate self)
{
    Puts("OnCrateDropped was called!");
}

OnCrateHack

  • Called when a player starts hacking a locked crate.

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches HackableLockedCrate.StartHacking of Assembly-CSharp.dll.

Example
void OnCrateHack(HackableLockedCrate self)
{
    Puts("OnCrateHack was called!");
}

OnCrateHackEnd

  • Called when a player stops hacking a locked crate.

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches HackableLockedCrate.HackProgress of Assembly-CSharp.dll.

Example
void OnCrateHackEnd(HackableLockedCrate self)
{
    Puts("OnCrateHackEnd was called!");
}

OnCrateLanded

  • Called when a locked crate from the CH47 (Chinook) has landed.

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches HackableLockedCrate.LandCheck of Assembly-CSharp.dll.

Example
void OnCrateLanded(HackableLockedCrate self)
{
    Puts("OnCrateLanded was called!");
}

OnCrateLaptopAttack

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches HackableLockedCrate.OnAttacked of Assembly-CSharp.dll.

Example
object OnCrateLaptopAttack(HackableLockedCrate self, HitInfo info)
{
    Puts("OnCrateLaptopAttack was called!");
    return (object) null;
}

OnDebrisSpawn

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches DecayEntity.SpawnDebris of Assembly-CSharp.dll.

Example
object OnDebrisSpawn(DecayEntity self)
{
    Puts("OnDebrisSpawn was called!");
    return (object) null;
}

OnDecayDamage

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches DecayEntity.OnDecay of Assembly-CSharp.dll.

Example
object OnDecayDamage(DecayEntity self)
{
    Puts("OnDecayDamage was called!");
    return (object) null;
}

This hook requires OnDecayHeal, which loads alongside OnDecayDamage.

OnDecayHeal

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches DecayEntity.OnDecay of Assembly-CSharp.dll.

Example
object OnDecayHeal(DecayEntity self)
{
    Puts("OnDecayHeal was called!");
    return (object) null;
}

OnDieselEngineToggle

  • Called when a player is trying to toggle diesel engine.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches DieselEngine.EngineSwitch of Assembly-CSharp.dll.

Example
object OnDieselEngineToggle(DieselEngine self, BasePlayer player)
{
    Puts("OnDieselEngineToggle was called!");
    return (object) null;
}

OnDieselEngineToggled (DieselEngine)

  • Called when diesel engine is toggled.

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches DieselEngine.EngineOff of Assembly-CSharp.dll.

Example
void OnDieselEngineToggled(DieselEngine self)
{
    Puts("OnDieselEngineToggled was called!");
}

OnDieselEngineToggled (DieselEngine)

  • Called when diesel engine is toggled.

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches DieselEngine.EngineOn of Assembly-CSharp.dll.

Example
void OnDieselEngineToggled(DieselEngine self)
{
    Puts("OnDieselEngineToggled was called!");
}

OnEntityActiveCheck

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches IsActiveItem.Test of Assembly-CSharp.dll.

Example
object OnEntityActiveCheck(BaseEntity ent, BasePlayer player, uint id, string debugName)
{
    Puts("OnEntityActiveCheck was called!");
    return (bool) null;
}

OnEntityDeath (BaseCombatEntity)

  • HitInfo might be null, check it before use.

  • Editing hitInfo has no effect because the death has already happened.

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches BaseCombatEntity.Die of Assembly-CSharp.dll.

Example
void OnEntityDeath(BaseCombatEntity self)
{
    Puts("OnEntityDeath was called!");
}

OnEntityDeath (ResourceEntity)

  • HitInfo might be null, check it before use.

  • Editing hitInfo has no effect because the death has already happened.

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches ResourceEntity.OnDied of Assembly-CSharp.dll.

Example
void OnEntityDeath(ResourceEntity self)
{
    Puts("OnEntityDeath was called!");
}

OnEntityDestroy (CH47HelicopterAIController)

  • Called right before a CH47Helicopter or BradleyAPC is destroyed.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches CH47HelicopterAIController.OnDied of Assembly-CSharp.dll.

Example
object OnEntityDestroy(CH47HelicopterAIController self)
{
    Puts("OnEntityDestroy was called!");
    return (object) null;
}

OnEntityDestroy (BradleyAPC)

  • Called right before a CH47Helicopter or BradleyAPC is destroyed.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches BradleyAPC.OnDied of Assembly-CSharp.dll.

Example
object OnEntityDestroy(BradleyAPC self)
{
    Puts("OnEntityDestroy was called!");
    return (object) null;
}

OnEntityDismounted (BaseMountable)

  • Called when an entity is dismounted by a player.

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches BaseMountable.DismountPlayer of Assembly-CSharp.dll.

Example
void OnEntityDismounted(BaseMountable self, BasePlayer player)
{
    Puts("OnEntityDismounted was called!");
}

This hook requires CanDismountEntity, which loads alongside OnEntityDismounted.

OnEntityDismounted (BaseMountable)

  • Called when an entity is dismounted by a player.

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches BaseMountable.DismountPlayer of Assembly-CSharp.dll.

Example
void OnEntityDismounted(BaseMountable self, BasePlayer player)
{
    Puts("OnEntityDismounted was called!");
}

This hook requires OnEntityDismounted, which loads alongside OnEntityDismounted.

OnEntityDistanceCheck

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches MaxDistance.Test of Assembly-CSharp.dll.

Example
object OnEntityDistanceCheck(BaseEntity ent, BasePlayer player, uint id, string debugName, float maximumDistance, bool checkParent)
{
    Puts("OnEntityDistanceCheck was called!");
    return (bool) null;
}

OnEntityEnter (TriggerBase)

  • Called when an entity enters a trigger (water area, radiation zone, hurt zone, etc.).

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches TriggerBase.OnEntityEnter of Assembly-CSharp.dll.

Example
object OnEntityEnter(TriggerBase self)
{
    Puts("OnEntityEnter was called!");
    return (object) null;
}

OnEntityEnter (TriggerComfort)

  • Called when an entity enters a trigger (water area, radiation zone, hurt zone, etc.).

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches TriggerComfort.OnEntityEnter of Assembly-CSharp.dll.

Example
object OnEntityEnter(TriggerComfort self)
{
    Puts("OnEntityEnter was called!");
    return (object) null;
}

OnEntityFlagsNetworkUpdate

  • Called after an entity's flags have been updated on the server, before they are sent over the network.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches BaseEntity.SendNetworkUpdate_Flags of Assembly-CSharp.dll.

Example
object OnEntityFlagsNetworkUpdate(BaseEntity self)
{
    Puts("OnEntityFlagsNetworkUpdate was called!");
    return (object) null;
}

OnEntityFromOwnerCheck

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches FromOwner.Test of Assembly-CSharp.dll.

Example
object OnEntityFromOwnerCheck(BaseEntity ent, BasePlayer player, uint id, string debugName, bool includeMounted)
{
    Puts("OnEntityFromOwnerCheck was called!");
    return (bool) null;
}

OnEntityGroundMissing

  • Called when an entity (sleepingbag, sign, furnace,...) is going to be destroyed because the buildingblock it is on was removed.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches DestroyOnGroundMissing.OnGroundMissing of Assembly-CSharp.dll.

Example
object OnEntityGroundMissing(BaseEntity local0)
{
    Puts("OnEntityGroundMissing was called!");
    return (object) null;
}

OnEntityKill

  • Called when an entity is destroyed.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches BaseNetworkable.Kill of Assembly-CSharp.dll.

Example
object OnEntityKill(BaseNetworkable self)
{
    Puts("OnEntityKill was called!");
    return (object) null;
}

OnEntityLeave (TriggerBase)

  • Called when an entity leaves a trigger (water area, radiation zone, hurt zone, etc.).

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches TriggerBase.OnEntityLeave of Assembly-CSharp.dll.

Example
object OnEntityLeave(TriggerBase self)
{
    Puts("OnEntityLeave was called!");
    return (object) null;
}

OnEntityLeave (TriggerComfort)

  • Called when an entity leaves a trigger (water area, radiation zone, hurt zone, etc.).

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches TriggerComfort.OnEntityLeave of Assembly-CSharp.dll.

Example
object OnEntityLeave(TriggerComfort self)
{
    Puts("OnEntityLeave was called!");
    return (object) null;
}

OnEntityLoaded

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches BaseNetworkable.Load of Assembly-CSharp.dll.

Example
void OnEntityLoaded(BaseNetworkable entity, BaseNetworkable.LoadInfo info)
{
    Puts("OnEntityLoaded was called!");
}

OnEntityMarkHostile (BaseCombatEntity)

  • Useful for denying marking the entity hostile.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches BaseCombatEntity.MarkHostileFor of Assembly-CSharp.dll.

Example
object OnEntityMarkHostile(BaseCombatEntity self)
{
    Puts("OnEntityMarkHostile was called!");
    return (object) null;
}

OnEntityMarkHostile (BasePlayer)

  • Useful for denying marking the entity hostile.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches BasePlayer.MarkHostileFor of Assembly-CSharp.dll.

Example
object OnEntityMarkHostile(BasePlayer self)
{
    Puts("OnEntityMarkHostile was called!");
    return (object) null;
}

OnEntityPickedUp

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches BaseCombatEntity.OnPickedUp of Assembly-CSharp.dll.

Example
void OnEntityPickedUp(BaseCombatEntity self)
{
    Puts("OnEntityPickedUp was called!");
}

OnEntitySaved

  • Gets called whenever the entity is about to be saved for streaming.

  • Called after a BaseNetworkable has been saved to a ProtoBuf object and is about to be serialized to a network stream or network cache.

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches BaseNetworkable.ToStream.

Example
void OnEntitySaved(BaseNetworkable networkable, BaseNetworkable.SaveInfo info)
{
    Puts("OnEntitySaved was called!");
}

OnEntitySnapshot (BaseNetworkable)

  • Called when an entity snapshot is about to be sent to a client connection.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches BaseNetworkable.SendAsSnapshot of Assembly-CSharp.dll.

Example
object OnEntitySnapshot(BaseNetworkable self, Network.Connection connection)
{
    Puts("OnEntitySnapshot was called!");
    return (object) null;
}

OnEntitySnapshot (BasePlayer)

  • Called when an entity snapshot is about to be sent to a client connection.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches BasePlayer.SendEntitySnapshot of Assembly-CSharp.dll.

Example
object OnEntitySnapshot(BaseNetworkable ent, BasePlayer self)
{
    Puts("OnEntitySnapshot was called!");
    return (object) null;
}

OnEntitySpawn

  • Called before any networked entity has spawned (including trees).

  • No return behavior.

  • This hook is Carbon-only compatible.

  • Patches BaseNetworkable.Spawn.

Example
void OnEntitySpawn(BaseNetworkable networkable)
{
    Puts("OnEntitySpawn was called!");
}

OnEntitySpawned

  • Called after any networked entity has spawned (including trees).

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches BaseNetworkable.Spawn of Assembly-CSharp.dll.

Example
void OnEntitySpawned(BaseNetworkable self)
{
    Puts("OnEntitySpawned was called!");
}

OnEntityStabilityCheck

  • Called when stability of an entity is checked.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches StabilityEntity.StabilityCheck of Assembly-CSharp.dll.

Example
object OnEntityStabilityCheck(StabilityEntity self)
{
    Puts("OnEntityStabilityCheck was called!");
    return (object) null;
}

OnEntityTakeDamage (ResourceEntity)

  • Alternatively, modify the HitInfo object to change the damage.

  • It should be okay to set the damage to 0, but if you don't return non-null, the player's client will receive a damage indicator (if entity is a BasePlayer).

  • HitInfo has all kinds of useful things in it, such as Weapon, damageProperties or damageTypes.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches ResourceEntity.OnAttacked of Assembly-CSharp.dll.

Example
object OnEntityTakeDamage(ResourceEntity self)
{
    Puts("OnEntityTakeDamage was called!");
    return (object) null;
}

OnEntityTakeDamage (CorePlugin)

  • Called when a player gets attacked.

  • Alternatively, modify the HitInfo object to change the damage.

  • It should be okay to set the damage to 0, but if you don't return non-null, the player's client will receive a damage indicator (if entity is a BasePlayer).

  • HitInfo has all kinds of useful things in it, such as Weapon, damageProperties or damageTypes.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches CorePlugin.IOnBasePlayerAttacked of Carbon.Common.dll.

Example
object OnEntityTakeDamage(BaseCombatEntity entity, HitInfo info)
{
    Puts("OnEntityTakeDamage was called!");
    return (bool) null;
}

OnEntityVisibilityCheck

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches IsVisible.Test of Assembly-CSharp.dll.

Example
object OnEntityVisibilityCheck(BaseEntity ent, BasePlayer player, uint id, string debugName, float maximumDistance)
{
    Puts("OnEntityVisibilityCheck was called!");
    return (bool) null;
}

OnEventTrigger

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches TriggeredEventPrefab.RunEvent of Assembly-CSharp.dll.

Example
object OnEventTrigger(TriggeredEventPrefab self)
{
    Puts("OnEventTrigger was called!");
    return (object) null;
}

OnFreeableContainerRelease

  • Returning a non-null value cancels default behavior.

  • This hook is Carbon-only compatible.

  • Patches FreeableLootContainer.Release of Assembly-CSharp.dll.

Example
object OnFreeableContainerRelease(FreeableLootContainer self)
{
    Puts("OnFreeableContainerRelease was called!");
    return (object) null;
}

OnFreeableContainerReleased

  • No return behavior.

  • This hook is Carbon-only compatible.

  • Patches FreeableLootContainer.Release of Assembly-CSharp.dll.

Example
void OnFreeableContainerReleased(FreeableLootContainer self)
{
    Puts("OnFreeableContainerReleased was called!");
}

This hook requires OnFreeableContainerRelease, which loads alongside OnFreeableContainerReleased.

OnFreeableContainerReleaseStarted

  • No return behavior.

  • This hook is Carbon-only compatible.

  • Patches FreeableLootContainer.RPC_FreeCrateTimer of Assembly-CSharp.dll.

Example
void OnFreeableContainerReleaseStarted(FreeableLootContainer self, BasePlayer player)
{
    Puts("OnFreeableContainerReleaseStarted was called!");
}

OnHotAirBalloonToggle

  • Called when a player tries to toggle a hot air balloon on or off.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches HotAirBalloon.EngineSwitch of Assembly-CSharp.dll.

Example
object OnHotAirBalloonToggle(HotAirBalloon self, BasePlayer player)
{
    Puts("OnHotAirBalloonToggle was called!");
    return (object) null;
}

OnHotAirBalloonToggled (HotAirBalloon)

  • Called right after a player has toggled a hot air balloon on or off.

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches HotAirBalloon.EngineSwitch of Assembly-CSharp.dll.

Example
void OnHotAirBalloonToggled(HotAirBalloon self, BasePlayer player)
{
    Puts("OnHotAirBalloonToggled was called!");
}

This hook requires OnHotAirBalloonToggle, which loads alongside OnHotAirBalloonToggled.

OnHotAirBalloonToggled (HotAirBalloon)

  • Called right after a player has toggled a hot air balloon on or off.

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches HotAirBalloon.EngineSwitch of Assembly-CSharp.dll.

Example
void OnHotAirBalloonToggled(HotAirBalloon self, BasePlayer player)
{
    Puts("OnHotAirBalloonToggled was called!");
}

This hook requires OnHotAirBalloonToggled [on], which loads alongside OnHotAirBalloonToggled.

OnLiquidVesselFill

  • Called when a player is attempting to fill a liquid vessel.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches BaseLiquidVessel.FillCheck of Assembly-CSharp.dll.

Example
object OnLiquidVesselFill(BaseLiquidVessel self, BasePlayer local0, LiquidContainer local3)
{
    Puts("OnLiquidVesselFill was called!");
    return (object) null;
}

OnMixingTableToggle

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches MixingTable.SVSwitch of Assembly-CSharp.dll.

Example
object OnMixingTableToggle(MixingTable self, BasePlayer player)
{
    Puts("OnMixingTableToggle was called!");
    return (object) null;
}

OnNoGoZoneAdded

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches PatrolHelicopterAI.NoGoZoneAdded of Assembly-CSharp.dll.

Example
object OnNoGoZoneAdded(PatrolHelicopterAI self)
{
    Puts("OnNoGoZoneAdded was called!");
    return (object) null;
}

OnOvenCook

  • Called before an oven cooks an item.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches BaseOven.Cook of Assembly-CSharp.dll.

Example
object OnOvenCook(BaseOven self, Item local0)
{
    Puts("OnOvenCook was called!");
    return (object) null;
}

OnOvenCooked

  • Called after an oven cooks an item.

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches BaseOven.Cook of Assembly-CSharp.dll.

Example
void OnOvenCooked(BaseOven self, Item local0, BaseEntity local1)
{
    Puts("OnOvenCooked was called!");
}

This hook requires OnOvenCook, which loads alongside OnOvenCooked.

OnOvenStart

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches BaseOven.StartCooking of Assembly-CSharp.dll.

Example
object OnOvenStart(BaseOven self)
{
    Puts("OnOvenStart was called!");
    return (object) null;
}

OnOvenStarted

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches BaseOven.StartCooking of Assembly-CSharp.dll.

Example
void OnOvenStarted(BaseOven self)
{
    Puts("OnOvenStarted was called!");
}

This hook requires OnOvenStart, which loads alongside OnOvenStarted.

OnOvenTemperature

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches BaseOven.GetTemperature of Assembly-CSharp.dll.

Example
object OnOvenTemperature(BaseOven self)
{
    Puts("OnOvenTemperature was called!");
    return (float) null;
}

OnOvenToggle

  • Called when an oven (Campfire, Furnace,...) is turned on or off.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches BaseOven.SVSwitch of Assembly-CSharp.dll.

Example
object OnOvenToggle(BaseOven self, BasePlayer player)
{
    Puts("OnOvenToggle was called!");
    return (object) null;
}

OnPatrolHelicopterKill

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches PatrolHelicopter.Hurt of Assembly-CSharp.dll.

Example
object OnPatrolHelicopterKill(PatrolHelicopter self, HitInfo info)
{
    Puts("OnPatrolHelicopterKill was called!");
    return (object) null;
}

This hook requires OnPatrolHelicopterTakeDamage, which loads alongside OnPatrolHelicopterKill.

OnPatrolHelicopterTakeDamage

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches PatrolHelicopter.Hurt of Assembly-CSharp.dll.

Example
object OnPatrolHelicopterTakeDamage(PatrolHelicopter self)
{
    Puts("OnPatrolHelicopterTakeDamage was called!");
    return (object) null;
}

OnPhotoCapture

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches InstantCameraTool.TakePhoto of Assembly-CSharp.dll.

Example
object OnPhotoCapture(PhotoEntity local5, Item local1, BasePlayer local0, System.Byte[] local2)
{
    Puts("OnPhotoCapture was called!");
    return (object) null;
}

OnPhotoCaptured

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches InstantCameraTool.TakePhoto of Assembly-CSharp.dll.

Example
void OnPhotoCaptured(PhotoEntity local5, Item local1, BasePlayer local0, System.Byte[] local2)
{
    Puts("OnPhotoCaptured was called!");
}

This hook requires OnPhotoCapture, which loads alongside OnPhotoCaptured.

OnPickupFromRack

  • Whenever a weapon was picked up from the rack.

  • No return behavior.

  • This hook is Carbon-only compatible.

  • Patches WeaponRack.GivePlayerWeapon.

Example
void OnPickupFromRack(WeaponRack rack, BasePlayer player, Item item, int mountSlotIndex, int playerBeltIndex, bool tryHold)
{
    Puts("OnPickupFromRack was called!");
}

This hook requires CanPickupFromRack, which loads alongside OnPickupFromRack.

OnPlanterBoxFertilize

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches PlanterBox.FertilizeGrowables of Assembly-CSharp.dll.

Example
object OnPlanterBoxFertilize(PlanterBox self)
{
    Puts("OnPlanterBoxFertilize was called!");
    return (object) null;
}

OnReactiveTargetReset

  • Called after the reactive target is reset.

  • No return behaviour.

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches ReactiveTarget.ResetTarget of Assembly-CSharp.dll.

Example
void OnReactiveTargetReset(ReactiveTarget self)
{
    Puts("OnReactiveTargetReset was called!");
}

OnRecyclerToggle

  • Called when a recycler is turned on or off.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches Recycler.SVSwitch of Assembly-CSharp.dll.

Example
object OnRecyclerToggle(Recycler self, BasePlayer player)
{
    Puts("OnRecyclerToggle was called!");
    return (object) null;
}

OnRemoteIdentifierUpdate

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches PoweredRemoteControlEntity.UpdateIdentifier of Assembly-CSharp.dll.

Example
object OnRemoteIdentifierUpdate(PoweredRemoteControlEntity self, string newID)
{
    Puts("OnRemoteIdentifierUpdate was called!");
    return (object) null;
}

OnSamSiteModeToggle

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches SamSite.ToggleDefenderMode of Assembly-CSharp.dll.

Example
object OnSamSiteModeToggle(SamSite self, BasePlayer local0, bool local1)
{
    Puts("OnSamSiteModeToggle was called!");
    return (object) null;
}

OnSamSiteTarget

  • Called before last target visible time is updated.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches SamSite.TargetScan of Assembly-CSharp.dll.

Example
object OnSamSiteTarget()
{
    Puts("OnSamSiteTarget was called!");
    return (object) null;
}

OnSamSiteTargetScan

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches SamSite.TargetScan of Assembly-CSharp.dll.

Example
object OnSamSiteTargetScan()
{
    Puts("OnSamSiteTargetScan was called!");
    return (object) null;
}

This hook requires OnSamSiteTarget, which loads alongside OnSamSiteTargetScan.

OnSleepingBagDestroy

  • Called when a player tries to remove a sleeping bag from their respawn screen.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches SleepingBag.DestroyBag of Assembly-CSharp.dll.

Example
object OnSleepingBagDestroy()
{
    Puts("OnSleepingBagDestroy was called!");
    return (object) null;
}

OnSleepingBagDestroyed

  • Called after a player removes a sleeping bag from their respawn screen.

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches SleepingBag.DestroyBag of Assembly-CSharp.dll.

Example
void OnSleepingBagDestroyed(SleepingBag local1, ulong userID)
{
    Puts("OnSleepingBagDestroyed was called!");
}

This hook requires OnSleepingBagDestroy, which loads alongside OnSleepingBagDestroyed.

OnSleepingBagValidCheck

  • Called when determining if a sleeping bag is a valid respawn location for a player.

  • Useful in conjunction with OnRespawnInformationGiven since a custom sleeping bag will need to pass this check.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches SleepingBag.ValidForPlayer of Assembly-CSharp.dll.

Example
object OnSleepingBagValidCheck(SleepingBag self, ulong playerID, bool ignoreTimers)
{
    Puts("OnSleepingBagValidCheck was called!");
    return (bool) null;
}

OnSprayRemove

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches SprayCanSpray.Server_RequestWaterClear of Assembly-CSharp.dll.

Example
object OnSprayRemove(SprayCanSpray self, BasePlayer local0)
{
    Puts("OnSprayRemove was called!");
    return (object) null;
}

OnSprinklerSplashed

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches Sprinkler.DoSplash of Assembly-CSharp.dll.

Example
void OnSprinklerSplashed(Sprinkler self)
{
    Puts("OnSprinklerSplashed was called!");
}

OnStashExposed

  • Called when a player reveals a hidden stash.

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches BasePlayer.CheckStashRevealInvoke of Assembly-CSharp.dll.

Example
void OnStashExposed(StashContainer entity, BasePlayer self)
{
    Puts("OnStashExposed was called!");
}

This hook requires CanSeeStash, which loads alongside OnStashExposed.

OnStashHidden

  • Called when a player hides a stash.

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches StashContainer.RPC_HideStash of Assembly-CSharp.dll.

Example
void OnStashHidden(StashContainer self, BasePlayer player)
{
    Puts("OnStashHidden was called!");
}

This hook requires CanHideStash, which loads alongside OnStashHidden.

OnStashOcclude

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches StashContainer.DoOccludedCheck of Assembly-CSharp.dll.

Example
object OnStashOcclude(StashContainer self)
{
    Puts("OnStashOcclude was called!");
    return (object) null;
}

OnSupplyDropDropped

  • Called right after a cargo plane has dropped a supply drop.

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches CargoPlane.Update of Assembly-CSharp.dll.

Example
void OnSupplyDropDropped(BaseEntity local1, CargoPlane self)
{
    Puts("OnSupplyDropDropped was called!");
}

OnSupplyDropLanded

  • Called after Supply Drop has landed.

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches SupplyDrop.OnCollisionEnter of Assembly-CSharp.dll.

Example
void OnSupplyDropLanded(SupplyDrop self)
{
    Puts("OnSupplyDropLanded was called!");
}

OnSwitchToggle (ElectricSwitch)

  • Called when a player tries to switch and ElectricSwitch or FuelGenerator.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches ElectricSwitch.RPC_Switch of Assembly-CSharp.dll.

Example
object OnSwitchToggle(ElectricSwitch self, BasePlayer player)
{
    Puts("OnSwitchToggle was called!");
    return (object) null;
}

OnSwitchToggle (FuelGenerator)

  • Called when a player tries to switch and ElectricSwitch or FuelGenerator.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches FuelGenerator.RPC_EngineSwitch of Assembly-CSharp.dll.

Example
object OnSwitchToggle(FuelGenerator self, BasePlayer player)
{
    Puts("OnSwitchToggle was called!");
    return (object) null;
}

OnSwitchToggle (IndustrialConveyor)

  • Called when a player tries to switch and ElectricSwitch or FuelGenerator.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches IndustrialConveyor.SvSwitch of Assembly-CSharp.dll.

Example
object OnSwitchToggle(IndustrialConveyor self, BasePlayer player)
{
    Puts("OnSwitchToggle was called!");
    return (object) null;
}

OnSwitchToggled (ElectricSwitch)

  • Called right after a player switches an ElectricSwitch or FuelGenerator.

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches ElectricSwitch.RPC_Switch of Assembly-CSharp.dll.

Example
void OnSwitchToggled(ElectricSwitch self, BasePlayer player)
{
    Puts("OnSwitchToggled was called!");
}

This hook requires OnSwitchToggle [ElectricSwitch], which loads alongside OnSwitchToggled.

OnSwitchToggled (FuelGenerator)

  • Called right after a player switches an ElectricSwitch or FuelGenerator.

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches FuelGenerator.RPC_EngineSwitch of Assembly-CSharp.dll.

Example
void OnSwitchToggled(FuelGenerator self, BasePlayer player)
{
    Puts("OnSwitchToggled was called!");
}

This hook requires OnSwitchToggle [FuelGenerator], which loads alongside OnSwitchToggled.

OnSwitchToggled (IndustrialConveyor)

  • Called right after a player switches an ElectricSwitch or FuelGenerator.

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches IndustrialConveyor.SvSwitch of Assembly-CSharp.dll.

Example
void OnSwitchToggled(IndustrialConveyor self, BasePlayer player)
{
    Puts("OnSwitchToggled was called!");
}

This hook requires OnSwitchToggle [IndustrialConveyor], which loads alongside OnSwitchToggled.

OnTreeMarkerHit

  • Called when a player hits a tree with a tool (rock, hatchet, etc.).

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches TreeEntity.DidHitMarker of Assembly-CSharp.dll.

Example
object OnTreeMarkerHit(TreeEntity self)
{
    Puts("OnTreeMarkerHit was called!");
    return (bool) null;
}

OnWaterCollect (WaterCatcher)

  • Called when a water catcher is about to collect water.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches WaterCatcher.CollectWater of Assembly-CSharp.dll.

Example
object OnWaterCollect(WaterCatcher self)
{
    Puts("OnWaterCollect was called!");
    return (object) null;
}

OnWaterCollect (WaterPump)

  • Called when a water catcher is about to collect water.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches WaterPump.CreateWater of Assembly-CSharp.dll.

Example
object OnWaterCollect(WaterPump self, ItemDefinition local0)
{
    Puts("OnWaterCollect was called!");
    return (object) null;
}

OnWaterPurified

  • Called after salt water has been converted to fresh water in a water purifier.

  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches WaterPurifier.ConvertWater of Assembly-CSharp.dll.

Example
void OnWaterPurified(WaterPurifier self)
{
    Puts("OnWaterPurified was called!");
}

This hook requires OnWaterPurify, which loads alongside OnWaterPurified.

  • Called when salt water is about to be converted to fresh water in a water purifier.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches WaterPurifier.ConvertWater of Assembly-CSharp.dll.

Example
object OnWaterPurify(WaterPurifier self)
{
    Puts("OnWaterPurify was called!");
    return (object) null;
}
  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches ElectricWindmill.WindUpdate of Assembly-CSharp.dll.

Example
object OnWindmillUpdate(ElectricWindmill self)
{
    Puts("OnWindmillUpdate was called!");
    return (object) null;
}
  • No return behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches ElectricWindmill.WindUpdate of Assembly-CSharp.dll.

Example
void OnWindmillUpdated(ElectricWindmill self)
{
    Puts("OnWindmillUpdated was called!");
}

This hook requires OnWindmillUpdate, which loads alongside OnWindmillUpdated.

Last updated