public class NpcDeathEvent extends Event implements Cancellable
NpcHitNpcEvent
Modifier and Type | Class and Description |
---|---|
static class |
NpcDeathEvent.Cause
Determines why the
NpcDeathEvent was triggered exactly
(i.e. why the npc actually died). |
Constructor and Description |
---|
NpcDeathEvent(Npc npc,
java.lang.Object killer,
Vector3f deathPosition,
NpcDeathEvent.Cause cause) |
Modifier and Type | Method and Description |
---|---|
NpcDeathEvent.Cause |
getCause()
Gets the cause (why the npc died).
|
Vector3f |
getDeathPosition()
Gets the position where the npc died.
|
java.lang.Object |
getKiller()
Gets the killer, i.e. the player who is responsible for the death of this
npc.
|
Npc |
getNpc()
Gets the npc which died.
|
boolean |
isCancelled()
Determines if the event is cancelled.
|
void |
setCancelled(boolean cancel)
Cancels this event.
|
public NpcDeathEvent(Npc npc, java.lang.Object killer, Vector3f deathPosition, NpcDeathEvent.Cause cause)
public Npc getNpc()
public Vector3f getDeathPosition()
public java.lang.Object getKiller()
getCause()
public NpcDeathEvent.Cause getCause()
public boolean isCancelled()
Cancellable
isCancelled
in interface Cancellable
public void setCancelled(boolean cancel)
Cancellable
setCancelled
in interface Cancellable
cancel
- set to true if you want to cancel this event.