Home Getting Started With Scripts Using this wiki Commands CTGUI Global functions Bracket Handlers
Event IEventManager
IBlockEvent IEventCancelable IEventHasResult IEventPositionable IMinecartEvent IPotionBrewEvent IProcessableEvent IProjectileImpactEvent IEntityEvent IExplosionEvent ILivingEvent IPlayerEvent ITickEvent AnimalTameEvent ArrowLooseEvent ArrowNockEvent BlockBreakEvent BlockHarvestDropsEvent BlockNeighborNotifyEvent BlockPlaceEvent ClientTickEvent CommandEvent CriticalHitEvent CropGrowPostEvent CropGrowPreEvent EnchantmentLevelSetEvent EnderTeleportEvent EntityJoinWorldEvent EntityLivingAttackedEvent EntityLivingDamageEvent EntityLivingDeathEvent EntityLivingDeathDropsEvent EntityLivingEquipmentChangeEvent EntityLivingFallEvent EntityLivingHealEvent EntityLivingHurtEvent EntityLivingJumpEvent EntityLivingSpawnEvent EntityLivingUpdateEvent EntityMountEvent EntityStruckByLightningEvent EntityTravelToDimensionEvent ExplosionDetonateEvent ExplosionStartEvent FarmlandTrampleEvent ItemExpireEvent ItemFishedEvent ItemTossEvent LivingDestroyBlockEvent LivingEntityUseItemEvent LivingExperienceDropEvent LivingKnockBackEvent LootingLevelEvent MinecartCollisionEvent MinecartInteractEvent MobGriefingEvent PlayerAdvancementEvent PlayerAnvilRepairEvent PlayerAnvilUpdateEvent PlayerAttackEntityEvent PlayerBonemealEvent PlayerBreakSpeedEvent PlayerBrewedPotionEvent PlayerChangedDimensionEvent PlayerCloneEvent PlayerCloseContainerEvent PlayerCraftedEvent PlayerDeathDropsEvent PlayerDestroyItemEvent PlayerFillBucketEvent PlayerInteractBlockEvent PlayerInteractEntityEvent PlayerInteractEvent PlayerItemPickupEvent PlayerLeftClickBlockEvent PlayerLoggedInEvent PlayerLoggedOutEvent PlayerOpenContainerEvent PlayerPickupItemEvent PlayerPickupXpEvent PlayerRespawnEvent PlayerRightClickItemEvent PlayerSetSpawnEvent PlayerSleepInBedEvent PlayerSmeltedEvent PlayerTickEvent PlayerUseHoeEvent PlayerVisibilityEvent PortalSpawnEvent PotionBrewPostEvent PotionBrewPreEvent ProjectileImpactArrowEvent ProjectileImpactFireballEvent ProjectileImpactThrowableEvent RenderTickEvent ServerTickEvent SleepingLocationCheckEvent SleepingTimeCheckEvent WorldTickEvent

LivingExperienceDrop

This event is fired when an entity dies and drops experience, allowing for the amount of experience to be modified. Alternately, the event can be canceled to prevent experience from being dropped.

Event Class

You will need to cast the event in the function header as this class:
crafttweaker.event.LivingExperienceDropEvent
You can, of course, also import the class before and use that name then.

Event interface extensions

LivingExperienceDrop Events implement the following interfaces and are able to call all of their methods/getters/setters as well:

ZenGetters/ZenSetters

The following information can be retrieved/set during the event:

ZenGetterZenSetterType
ZenGetter
player
ZenSetter
Type
IPlayer
ZenGetter
droppedExperience
ZenSetter
droppedExperience
Type
int
ZenGetter
originalExperience
ZenSetter
Type
int

Notes

originalExperience contains the original Vanilla amount of experience. It is possible that droppedExperience when this event is fired has already been modified.

ZenGetters/ZenSetters/ZenMethods from extensions

The following information can be retrieved/set during the event:

ZenGetterZenSetterType
ZenGetter
entityLivingBase
ZenSetter
Type
IEntityLivingBase
ZenGetter
canceled
ZenSetter
canceled
Type
bool

ZenMethods

  • event.cancel(); Method, returns void (nothing). Can cancel the event and stop something from happening