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.commands.custom.MCCommand;

No Description Provided

ZenScript
Copy
new MCCommand(fun as ToIntFunction<MCCommandContext>) as MCCommand
ParametroTipoDescrizione
Parametro
divertente
Tipo
ToIntFunction<MCCommandContext>
Descrizione
No Description Provided
Tipo RisultatoImplicito
Tipo Risultato
string
Implicito

Name: equals

Return Type: boolean

ZenScript
Copy
MCCommand.equals(o as Object) as boolean
ParametroTipoDescrizione
Parametro
o
Tipo
Object
Descrizione
No Description Provided

Name: hashCode

Return Type: int

ZenScript
Copy
// MCCommand.hashCode() as int

myMCCommand.hashCode();

Name: run

Return Type: int

ZenScript
Copy
MCCommand.run(context as MCCommandContext) as int
ParametroTipoDescrizione
Parametro
contesto
Tipo
MCCommandContext
Descrizione
No Description Provided

Name: toString

Return Type: string

ZenScript
Copy
// MCCommand.toString() as string

myMCCommand.toString();

Name: EQUALS

ZenScript
Copy
myMCCommand == o come oggetto