Inventory
Link to inventory
Diese Klasse importieren
Link to diese-klasse-importieren
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
Methoden
Link to methoden
Name: add
Return Type: boolean
ZenScript CopyInventory.add(stack as ItemStack) as boolean
Parameter | Type | Beschreibung |
---|---|---|
Parameter stack | Type Artikel-Stack | Beschreibung No Description Provided |
Name: add
Return Type: boolean
ZenScript CopyInventory.add(index as int, stack as ItemStack) as boolean
Parameter | Type | Beschreibung |
---|---|---|
Parameter index | Type int | Beschreibung No Description Provided |
Parameter stack | Type Artikel-Stack | Beschreibung No Description Provided |
Name: contains
Return Type: boolean
ZenScript CopyInventory.contains(stack as ItemStack) as boolean
Parameter | Type | Beschreibung |
---|---|---|
Parameter stack | Type Artikel-Stack | Beschreibung No Description Provided |
Name: contains
Return Type: boolean
ZenScript CopyInventory.contains(tag as MCTag<ItemDefinition>) as boolean
Parameter | Type | Beschreibung |
---|---|---|
Parameter tag | Type MCTag<ItemDefinition> | Beschreibung 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 | Beschreibung |
---|---|---|
Parameter stack | Type Artikel-Stack | Beschreibung No Description Provided |
Name: findSlotMatchingUnusedItem
Return Type: int
ZenScript CopyInventory.findSlotMatchingUnusedItem(stack as ItemStack) as int
Parameter | Type | Beschreibung |
---|---|---|
Parameter stack | Type Artikel-Stack | Beschreibung No Description Provided |
Name: getArmor
Return Type: ItemStack
ZenScript CopyInventory.getArmor(armorIndex as int) as ItemStack
Parameter | Type | Beschreibung |
---|---|---|
Parameter armorIndex | Type int | Beschreibung 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 | Beschreibung |
---|---|---|
Parameter stack | Type Artikel-Stack | Beschreibung 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 | Beschreibung |
---|---|---|
Parameter quell | Type DamageSource | Beschreibung No Description Provided |
Parameter damage | Type float | Beschreibung No Description Provided |
Parameter armorSlots | Type int[] | Beschreibung No Description Provided |
Name: pickSlot
Return Type: void
ZenScript CopyInventory.pickSlot(index as int) as void
Parameter | Type | Beschreibung |
---|---|---|
Parameter index | Type int | Beschreibung No Description Provided |
Name: removeItem
Return Type: void
ZenScript CopyInventory.removeItem(stack as ItemStack) as void
Parameter | Type | Beschreibung |
---|---|---|
Parameter stack | Type Artikel-Stack | Beschreibung No Description Provided |
Name: setPickedItem
Return Type: void
ZenScript CopyInventory.setPickedItem(stack as ItemStack) as void
Parameter | Type | Beschreibung |
---|---|---|
Parameter stack | Type Artikel-Stack | Beschreibung No Description Provided |
Properties
Link to properties
Name | Type | Has Getter | Has Setter | Beschreibung |
---|---|---|---|---|
Name freeSlot | Type int | Has Getter true | Has Setter false | Beschreibung No Description Provided |
Name selected | Type Artikel-Stack | Has Getter true | Has Setter false | Beschreibung No Description Provided |
Name suitableHotbarSlot | Type int | Has Getter true | Has Setter false | Beschreibung No Description Provided |
Name timesChanged | Type int | Has Getter true | Has Setter false | Beschreibung No Description Provided |