Package | Description |
---|---|
net.risingworld.api | |
net.risingworld.api.events.npc | |
net.risingworld.api.events.player | |
net.risingworld.api.objects |
Modifier and Type | Method and Description |
---|---|
Npc |
World.findNearestNpc(short typeID,
Vector3f position)
Gets the npc which has the shortest distance to a world position.
|
Npc |
World.findNearestNpc(Vector3f position)
Gets the npc which has the shortest distance to a world position.
|
Npc |
World.getNpc(int globalID) |
Npc |
World.spawnNpc(short typeID,
byte variation,
Vector3f position,
Quaternion rotation)
Spawns a new npc in the world.
|
Npc |
World.spawnNpc(short typeID,
byte variation,
Vector3f position,
Quaternion rotation,
boolean temporary)
Spawns a new npc in the world.
|
Npc |
World.spawnNpc(short typeID,
Vector3f position,
Quaternion rotation)
Spawns a new npc in the world.
|
Modifier and Type | Method and Description |
---|---|
java.util.Collection<Npc> |
World.getAllNpcs(java.util.Collection<Npc> storeTo)
Gets all npcs which are spawned in this world.
|
java.util.Collection<Npc> |
World.getAllNpcsInArea(Area area,
java.util.Collection<Npc> storeTo) |
Modifier and Type | Method and Description |
---|---|
java.util.Collection<Npc> |
World.getAllNpcs(java.util.Collection<Npc> storeTo)
Gets all npcs which are spawned in this world.
|
java.util.Collection<Npc> |
World.getAllNpcsInArea(Area area,
java.util.Collection<Npc> storeTo) |
Modifier and Type | Method and Description |
---|---|
Npc |
NpcHitNpcEvent.getAttacker()
Gets the attacking npc, i.e. the npc who hit the target npc.
|
Npc |
NpcDeathEvent.getNpc()
Gets the npc which died.
|
Npc |
NpcHitNpcEvent.getNpc()
Gets the target npc, i.e. the npc which was hit by the attacker.
|
Npc |
NpcSpawnEvent.getNpc()
Gets the npc that is about to spawn.
|
Constructor and Description |
---|
NpcDeathEvent(Npc npc,
java.lang.Object killer,
Vector3f deathPosition,
NpcDeathEvent.Cause cause) |
NpcHitNpcEvent(Npc attackerNpc,
Npc targetNpc,
short damage,
float distance) |
NpcSpawnEvent(Npc npc,
Player player,
NpcSpawnEvent.Origin origin) |
Modifier and Type | Method and Description |
---|---|
Npc |
PlayerDismountNpcEvent.getNpc() |
Npc |
PlayerHitNpcEvent.getNpc()
Gets the target npc, i.e. the npc which was hit by the player.
|
Npc |
PlayerMountNpcEvent.getNpc() |
Npc |
PlayerNpcEvent.getNpc()
Gets the npc.
|
Npc |
PlayerHitNpcEvent.getTargetNpc()
Deprecated.
Use
PlayerHitNpcEvent.getNpc() instead! |
Constructor and Description |
---|
PlayerDismountNpcEvent(Player player,
Npc targetNpc) |
PlayerHitNpcEvent(Player player,
Npc targetNpc,
Vector3f damagePoint,
short damage,
float distance) |
PlayerMountNpcEvent(Player player,
Npc targetNpc) |
PlayerNpcEvent(Player player,
Npc npc) |
PlayerNpcInteractionEvent(Player player,
Npc npc) |
PlayerNpcInventoryAccessEvent(Player player,
Npc targetNpc) |
Modifier and Type | Method and Description |
---|---|
Npc |
Player.getMount()
Gets the mount the player is currently riding on.
|