AdvancementEvent
Link to advancementevent
This event is fired every time the player earns an advancement. This happens after the advancement has already been earned, so it can not be prevented.
The event is not cancelable.
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.AdvancementEvent;
Extending PlayerEvent
Link to extending-playerevent
AdvancementEvent extends PlayerEvent. That means all methods available in PlayerEvent are also available in AdvancementEvent
Metodi
Link to metodi
Name: getAdvancement
Gets the advancement being unlocked.
Returns: The advancement being unlocked by the player.
Return Type: Advancement
ZenScript Copy// AdvancementEvent.getAdvancement() as Advancement
event.getAdvancement();
Proprietà
Link to proprietà
Nome | Tipo | Ha Getter | Ha Setter | Descrizione |
---|---|---|---|---|
Nome advancement | Tipo Advancement | Ha Getter sì | Ha Setter no | Descrizione Gets the advancement being unlocked. |