IItemHandler
Link to iitemhandler
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.capability.IItemHandler;
Methoden
Link to methoden
Name: extractItem
Return Type: IItemStack
ZenScript CopyIItemHandler.extractItem(slot as int, amount as int, simulate as boolean) as IItemStack
Parameter | Type | Beschreibung | Optional | DefaultValue |
---|---|---|---|---|
Parameter slot | Type int | Beschreibung No Description Provided | Optional false | DefaultValue |
Parameter amount | Type int | Beschreibung No Description Provided | Optional false | DefaultValue |
Parameter simulate | Type boolean | Beschreibung No Description Provided | Optional true | DefaultValue false |
Name: getSlotLimit
Return Type: int
ZenScript CopyIItemHandler.getSlotLimit(slot as int) as int
Parameter | Type | Beschreibung |
---|---|---|
Parameter slot | Type int | Beschreibung No Description Provided |
Name: getSlots
Return Type: int
ZenScript Copy// IItemHandler.getSlots() as int
myIItemHandler.getSlots();
Name: getStackInSlot
Return Type: IItemStack
ZenScript CopyIItemHandler.getStackInSlot(slot as int) as IItemStack
Parameter | Type | Beschreibung |
---|---|---|
Parameter slot | Type int | Beschreibung No Description Provided |
Name: insertItem
Return Type: IItemStack
ZenScript CopyIItemHandler.insertItem(slot as int, stack as IItemStack, simulate as boolean) as IItemStack
Parameter | Type | Beschreibung | Optional | DefaultValue |
---|---|---|---|---|
Parameter slot | Type int | Beschreibung No Description Provided | Optional false | DefaultValue |
Parameter stack | Type IItemStack | Beschreibung No Description Provided | Optional false | DefaultValue |
Parameter simulate | Type boolean | Beschreibung No Description Provided | Optional true | DefaultValue false |
Name: isItemValid
Return Type: boolean
ZenScript CopyIItemHandler.isItemValid(slot as int, stack as IItemStack) as boolean
Parameter | Type | Beschreibung |
---|---|---|
Parameter slot | Type int | Beschreibung No Description Provided |
Parameter stack | Type IItemStack | Beschreibung No Description Provided |
Properties
Link to properties
Name | Type | Has Getter | Has Setter | Beschreibung |
---|---|---|---|---|
Name slots | Type int | Has Getter true | Has Setter false | Beschreibung No Description Provided |