public class NpcSpawnEvent extends Event implements Cancellable
Modifier and Type | Class and Description |
---|---|
static class |
NpcSpawnEvent.Origin |
Constructor and Description |
---|
NpcSpawnEvent(Npc npc,
Player player,
NpcSpawnEvent.Origin origin) |
Modifier and Type | Method and Description |
---|---|
int |
getGlobalID()
Gets the global ID that will be assigned to the npc once it spawns.
|
Npc |
getNpc()
Gets the npc that is about to spawn.
|
NpcSpawnEvent.Origin |
getOrigin()
Gets the origin of this npc spawn, i.e. the reason why this npc spawns
(e.g. natural spawn, or spawned via command etc).
|
Vector3f |
getPosition() |
Player |
getRelatedPlayer()
Returns the related player.
|
Quaternion |
getRotation() |
int |
getTypeID()
Gets the type ID of the npc.
|
byte |
getVariation() |
boolean |
isCancelled()
Determines if the event is cancelled.
|
void |
setCancelled(boolean cancel)
Cancels this event.
|
void |
setPosition(float x,
float y,
float z) |
void |
setPosition(Vector3f position) |
void |
setRotation(Quaternion rotation) |
void |
setTypeID(int newTypeID) |
void |
setVariation(byte newVariation) |
public NpcSpawnEvent(Npc npc, Player player, NpcSpawnEvent.Origin origin)
public Npc getNpc()
public int getGlobalID()
public int getTypeID()
public void setTypeID(int newTypeID)
public byte getVariation()
public void setVariation(byte newVariation)
public Vector3f getPosition()
public void setPosition(Vector3f position)
public void setPosition(float x, float y, float z)
public Quaternion getRotation()
public void setRotation(Quaternion rotation)
public NpcSpawnEvent.Origin getOrigin()
public Player getRelatedPlayer()
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.