This event is fired after the player collides with an experience orb, but before the player has been given the experience. It can be cancelled, and no further processing will be done.

The event is cancelable.

If the event is canceled, the xp will not change

The event does not have a result.

Importing the class

Link to importing-the-class

It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.

ZenScript
Copy
import crafttweaker.api.event.entity.player.xp.PickupXpEvent;

Extending PlayerXpEvent

Link to extending-playerxpevent

PickupXpEvent extends PlayerXpEvent. That means all methods available in PlayerXpEvent are also available in PickupXpEvent

Name: getOrb

Return Type: ExperienceOrb

ZenScript
Copy
// PickupXpEvent.getOrb() as ExperienceOrb

event.getOrb();
NameTypeHas GetterHas SetterDescription
Name
orb
Type
ExperienceOrb
Has Getter
true
Has Setter
false
Description
No Description Provided