Package | Description |
---|---|
net.risingworld.api.events.player | |
net.risingworld.api.events.player.inventory | |
net.risingworld.api.events.world | |
net.risingworld.api.objects |
Modifier and Type | Method and Description |
---|---|
Item |
PlayerCatchFishEvent.getCatchedItem()
Gets the item the player has catched.
|
Item |
PlayerChangeEquippedItemEvent.getItem() |
Item |
PlayerCraftItemEvent.getItem()
Gets the item the player wants to craft.
|
Item |
PlayerDropItemEvent.getItem()
Gets the item the player wants to drop.
|
Constructor and Description |
---|
PlayerCatchFishEvent(Player player,
Vector3f fishingPosition,
Item catchedItem,
boolean removeBait) |
PlayerCraftItemEvent(Player player,
Item item) |
PlayerDropItemEvent(Player player,
Item item,
int amount,
int inventorySlot,
Inventory.SlotType inventorySlotType,
Vector3f position,
Quaternion rotation) |
Modifier and Type | Method and Description |
---|---|
Item |
PlayerChestToInventoryEvent.getExchangeItem()
Gets the item this item eventually gets exchanged with, i.e. when the player
exchanges a chest item with an inventory item (the chest item will be moved to
the inventory, and the inventory item will be moved to the chest).
|
Item |
PlayerInventoryToChestEvent.getExchangeItem()
Gets the item this item will be exchanged with, i.e. when the player
exchanges a chest item with an inventory item (the chest item will be moved to
the inventory, and the inventory item will be moved to the chest).
|
Item |
PlayerChestDropEvent.getItem()
Gets the item.
|
Item |
PlayerChestToInventoryEvent.getItem()
Gets the item.
|
Item |
PlayerInventoryAddEvent.getItem()
Gets the item.
|
Item |
PlayerInventoryToChestEvent.getItem()
Gets the item the player tries to move to the chest.
|
Constructor and Description |
---|
PlayerChestDropEvent(Player player,
Item item,
int amount,
int chestID,
int chestSlot) |
PlayerChestToInventoryEvent(Player player,
Item item,
Item exchangeItem,
int amount,
int chestID,
int chestSlot,
int inventorySlot,
Inventory.SlotType inventorySlotType) |
PlayerInventoryAddEvent(Player player,
Item item,
int inventorySlot,
Inventory.SlotType inventorySlotType,
PlayerInventoryAddEvent.Origin origin) |
PlayerInventoryToChestEvent(Player player,
Item originItem,
Item exchangeItem,
int amount,
int inventorySlot,
Inventory.SlotType inventorySlotType,
int chestID,
int chestSlot) |
Modifier and Type | Method and Description |
---|---|
Item |
ItemTransformEvent.getItem()
Gets the item that's about to transform.
|
Constructor and Description |
---|
ItemTransformEvent(Item item,
short newTypeID,
int newStacksize,
int objectInfoID,
ItemTransformEvent.Trigger trigger) |
Modifier and Type | Interface and Description |
---|---|
interface |
WorldItem
Represents an item that exists in the game world, for example an item that has
been dropped by a player.
|
Modifier and Type | Method and Description |
---|---|
Item[] |
Inventory.getAllItems()
Gets an array containing all items in this inventory.
|
Item |
Player.getEquippedItem()
Gets the currently equipped item (i.e. the item the player
currently holds in his hands), or null if no item is equipped.
|
Item |
Storage.getItem(int slot)
Gets the item from the specified slot.
|
Item |
Inventory.getItem(int slot,
Inventory.SlotType slotType)
Gets the item from the specified slot and inventory type.
|
Item[] |
Storage.getItems()
Gets an array containing all items that are currently in the chest.
|
Item[] |
Inventory.getItems(Inventory.SlotType slotType)
Gets an array containing all items that are currently in the particular
inventory type.
|
Item |
Inventory.insertNewClothingItem(short clothingID,
int variation) |
Item |
Inventory.insertNewClothingItem(short clothingID,
int variation,
int color1,
int color2,
int color3)
Creates and inserts a new "clothes" item (which repreasents a piece of clothes)
into the next slot that is available.
|
Item |
Storage.insertNewClothingItem(short clothingID,
int variation,
int color1,
int color2,
int color3)
Creates and inserts a new "clothes" item (which repreasents a piece of clothes)
to the chest (into the next free slot).
|
Item |
Storage.insertNewClothingItem(short clothingID,
int variation,
int color1,
int color2,
int color3,
int slot)
Creates and inserts a new "clothes" item (which repreasents a piece of clothes)
to the chest (into the particular slot).
|
Item |
Inventory.insertNewClothingItem(short clothingID,
int variation,
int color1,
int color2,
int color3,
int slot,
Inventory.SlotType slotType)
Creates and inserts a new "clothes" item (which repreasents a piece of clothes)
to the inventory.
|
Item |
Inventory.insertNewCustomItem(java.lang.String uuid,
int variation,
int stacksize)
Creates and inserts a new custom item (which was declared and registered previously).
|
Item |
Storage.insertNewCustomItem(java.lang.String uuid,
int variation,
int stacksize)
Creates and inserts a new custom item (which was declared and registered previously).
|
Item |
Storage.insertNewCustomItem(java.lang.String uuid,
int variation,
int stacksize,
int slot)
Creates and inserts a new custom item (which was declared and registered previously)
into the particular slot in the chest.
|
Item |
Inventory.insertNewCustomItem(java.lang.String uuid,
int variation,
int stacksize,
int slot,
Inventory.SlotType slotType)
Creates and inserts a new custom item (which was declared and registered previously)
into the particular slot in the inventory.
|
Item |
Inventory.insertNewItem(short itemID,
int variation,
int stacksize)
Creates and inserts a new item into the next slot that is available.
|
Item |
Storage.insertNewItem(short itemID,
int variation,
int stacksize)
Creates and inserts a new item into the next slot that is available.
|
Item |
Storage.insertNewItem(short itemID,
int variation,
int stacksize,
int slot)
Creates and inserts a new item into the particular slot.
|
Item |
Inventory.insertNewItem(short itemID,
int variation,
int stacksize,
int slot,
Inventory.SlotType slotType)
Creates and inserts a new item into the particular slot.
|
Item |
Inventory.insertNewObjectItem(short objectID,
int variation,
int stacksize)
Creates and inserts a new "objectkit" item into the next slot that is available.
|
Item |
Storage.insertNewObjectItem(short objectID,
int variation,
int stacksize)
Creates and inserts a new "objectkit" item into the next free slot.
|
Item |
Storage.insertNewObjectItem(short objectID,
int variation,
int stacksize,
int slot)
Creates and inserts a new "objectkit" item into the particular slot.
|
Item |
Inventory.insertNewObjectItem(short objectID,
int variation,
int stacksize,
int slot,
Inventory.SlotType slotType)
Creates and inserts a new "objectkit" item into the particular slot.
|