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
Copy
import crafttweaker.api.capability.IEnergyStorage;

Name: canExtract

Return Type: boolean

ZenScript
Copy
// IEnergyStorage.canExtract() as boolean

myIEnergyStorage.canExtract();

Name: canReceive

Return Type: boolean

ZenScript
Copy
// IEnergyStorage.canReceive() as boolean

myIEnergyStorage.canReceive();

Name: extractEnergy

Return Type: int

ZenScript
Copy
IEnergyStorage.extractEnergy(maxExtract as int, simulate as boolean) as int
ParameterTypeDescription
Parameter
maxExtract
Type
int
Description
No Description Provided
Parameter
simulate
Type
boolean
Description
No Description Provided

Name: getEnergyStored

Return Type: int

ZenScript
Copy
// IEnergyStorage.getEnergyStored() as int

myIEnergyStorage.getEnergyStored();

Link to getMaxEnergyStored

Name: getMaxEnergyStored

Return Type: int

ZenScript
Copy
// IEnergyStorage.getMaxEnergyStored() as int

myIEnergyStorage.getMaxEnergyStored();

Name: receiveEnergy

Return Type: int

ZenScript
Copy
IEnergyStorage.receiveEnergy(maxReceive as int, simulate as boolean) as int
ParameterTypeDescription
Parameter
maxReceive
Type
int
Description
No Description Provided
Parameter
simulate
Type
boolean
Description
No Description Provided
이름TypeHas GetterHas SetterDescription
이름
canExtract
Type
boolean
Has Getter
true
Has Setter
false
Description
No Description Provided
이름
canReceive
Type
boolean
Has Getter
true
Has Setter
false
Description
No Description Provided
이름
energyStored
Type
int
Has Getter
true
Has Setter
false
Description
No Description Provided
이름
maxEnergyStored
Type
int
Has Getter
true
Has Setter
false
Description
No Description Provided