Inventory
Link to inventory
Importing the class
Link to importing-the-class
It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.
ZenScript Copyimport crafttweaker.api.entity.type.player.Inventory;
Implemented Interfaces
Link to implemented-interfaces
Inventory implements the following interfaces. That means all methods defined in these interfaces are also available in Inventory
Methods
Link to methods
Name: add
Return Type: boolean
ZenScript CopyInventory.add(stack as ItemStack) as boolean
Parameter | Type | Description |
---|---|---|
Parameter stack | Type Stos przedmiotów | Description No Description Provided |
Name: add
Return Type: boolean
ZenScript CopyInventory.add(index as int, stack as ItemStack) as boolean
Parameter | Type | Description |
---|---|---|
Parameter index | Type int | Description No Description Provided |
Parameter stack | Type Stos przedmiotów | Description No Description Provided |
Name: contains
Return Type: boolean
ZenScript CopyInventory.contains(stack as ItemStack) as boolean
Parameter | Type | Description |
---|---|---|
Parameter stack | Type Stos przedmiotów | Description No Description Provided |
Name: contains
Return Type: boolean
ZenScript CopyInventory.contains(tag as MCTag<ItemDefinition>) as boolean
Parameter | Type | Description |
---|---|---|
Parameter tag | Type MCTag<ItemDefinition> | Description No Description Provided |
Name: dropAll
Return Type: void
ZenScript Copy// Inventory.dropAll() as void
myInventory.dropAll();
Name: findSlotMatchingItem
Return Type: int
ZenScript CopyInventory.findSlotMatchingItem(stack as ItemStack) as int
Parameter | Type | Description |
---|---|---|
Parameter stack | Type Stos przedmiotów | Description No Description Provided |
Name: findSlotMatchingUnusedItem
Return Type: int
ZenScript CopyInventory.findSlotMatchingUnusedItem(stack as ItemStack) as int
Parameter | Type | Description |
---|---|---|
Parameter stack | Type Stos przedmiotów | Description No Description Provided |
Name: getArmor
Return Type: ItemStack
ZenScript CopyInventory.getArmor(armorIndex as int) as ItemStack
Parameter | Type | Description |
---|---|---|
Parameter armorIndex | Type int | Description No Description Provided |
Name: getFreeSlot
Return Type: int
ZenScript Copy// Inventory.getFreeSlot() as int
myInventory.getFreeSlot();
Name: getSelected
Return Type: ItemStack
ZenScript Copy// Inventory.getSelected() as ItemStack
myInventory.getSelected();
Name: getSlotWithRemainingSpace
Return Type: int
ZenScript CopyInventory.getSlotWithRemainingSpace(stack as ItemStack) as int
Parameter | Type | Description |
---|---|---|
Parameter stack | Type Stos przedmiotów | Description No Description Provided |
Name: getSuitableHotbarSlot
Return Type: int
ZenScript Copy// Inventory.getSuitableHotbarSlot() as int
myInventory.getSuitableHotbarSlot();
Name: getTimesChanged
Return Type: int
ZenScript Copy// Inventory.getTimesChanged() as int
myInventory.getTimesChanged();
Name: hurtArmor
Return Type: void
ZenScript CopyInventory.hurtArmor(source as DamageSource, damage as float, armorSlots as int[]) as void
Parameter | Type | Description |
---|---|---|
Parameter źródło | Type DamageSource | Description No Description Provided |
Parameter damage | Type float | Description No Description Provided |
Parameter armorSlots | Type int[] | Description No Description Provided |
Name: pickSlot
Return Type: void
ZenScript CopyInventory.pickSlot(index as int) as void
Parameter | Type | Description |
---|---|---|
Parameter index | Type int | Description No Description Provided |
Name: removeItem
Return Type: void
ZenScript CopyInventory.removeItem(stack as ItemStack) as void
Parameter | Type | Description |
---|---|---|
Parameter stack | Type Stos przedmiotów | Description No Description Provided |
Name: setPickedItem
Return Type: void
ZenScript CopyInventory.setPickedItem(stack as ItemStack) as void
Parameter | Type | Description |
---|---|---|
Parameter stack | Type Stos przedmiotów | Description No Description Provided |
Properties
Link to properties
Name | Type | Has Getter | Has Setter | Description |
---|---|---|---|---|
Name freeSlot | Type int | Has Getter true | Has Setter false | Description No Description Provided |
Name selected | Type Stos przedmiotów | Has Getter true | Has Setter false | Description No Description Provided |
Name suitableHotbarSlot | Type int | Has Getter true | Has Setter false | Description No Description Provided |
Name timesChanged | Type int | Has Getter true | Has Setter false | Description No Description Provided |