Package | Description |
---|---|
net.risingworld.api.events.player | |
net.risingworld.api.events.player.inventory | |
net.risingworld.api.objects |
Modifier and Type | Method and Description |
---|---|
Inventory.SlotType |
PlayerDropItemEvent.getInventorySlotType()
Gets the inventory / slot type in the players inventory where the item was removed from.
|
Inventory.SlotType |
PlayerPickupItemEvent.getTargetInventorySlotType()
Gets the destinated inventory / slot type in the players inventory where
the item will be added.
|
Constructor and Description |
---|
PlayerDropItemEvent(Player player,
Item item,
int amount,
int inventorySlot,
Inventory.SlotType inventorySlotType,
Vector3f position,
Quaternion rotation) |
PlayerPickupItemEvent(Player player,
WorldItem item,
int targetInventorySlot,
Inventory.SlotType targetInventorySlotType) |
Modifier and Type | Method and Description |
---|---|
Inventory.SlotType |
PlayerChestToInventoryEvent.getInventorySlotType()
Gets the target inventory slot type (e.g. quickslot, equipment etc).
|
Inventory.SlotType |
PlayerInventoryAddEvent.getInventorySlotType()
Gets the inventory slot type (e.g. quickslot, equipment etc).
|
Inventory.SlotType |
PlayerInventoryToChestEvent.getInventorySlotType()
Gets the inventory slot type (e.g. quickslot, equipment etc).
|
Constructor and Description |
---|
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 |
---|---|
static Inventory.SlotType |
Inventory.SlotType.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Inventory.SlotType[] |
Inventory.SlotType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
Item |
Inventory.getItem(int slot,
Inventory.SlotType slotType)
Gets the item from the specified slot and inventory type.
|
Item[] |
Inventory.getItems(Inventory.SlotType slotType)
Gets an array containing all items that are currently in the particular
inventory type.
|
int |
Inventory.getSlotCount(Inventory.SlotType slotType)
Gets the amount of slots the particular inventory/slot type has.
|
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,
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,
int slot,
Inventory.SlotType slotType)
Creates and inserts a new 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.
|
void |
Inventory.removeItem(int slot,
Inventory.SlotType slotType)
Removes an item from a particular slot in the inventory.
|
void |
Inventory.removeItem(int slot,
Inventory.SlotType slotType,
int amount)
Removes an item (or more precisely, reduces the stack size of the item by
the provided amount) from a particular slot in the inventory.
|