PickupXpEvent
Link to pickupxpevent
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.
Importare la Classe
Link to importare-la-classe
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 Copyimport 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
Metodi
Link to metodi
Name: getOrb
Return Type: ExperienceOrb
ZenScript Copy// PickupXpEvent.getOrb() as ExperienceOrb
event.getOrb();
Proprietà
Link to proprietà
Nome | Tipo | Ha Getter | Ha Setter | Descrizione |
---|---|---|---|---|
Nome orb | Tipo ExperienceOrb | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |