Importare la Classe

Link to importare-la-classe

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
ParametroTipoDescrizione
Parametro
maxExtract
Tipo
int
Descrizione
No Description Provided
Parametro
simulate
Tipo
boolean
Descrizione
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
ParametroTipoDescrizione
Parametro
maxReceive
Tipo
int
Descrizione
No Description Provided
Parametro
simulate
Tipo
boolean
Descrizione
No Description Provided
NomeTipoHa GetterHa SetterDescrizione
Nome
canExtract
Tipo
boolean
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
canReceive
Tipo
boolean
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
energyStored
Tipo
int
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
maxEnergyStored
Tipo
int
Ha Getter
Ha Setter
no
Descrizione
No Description Provided