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

Name: argument

Return Type: MCRequiredArgumentBuilder

ZenScript
Copy
CustomCommands.argument(name as string) as MCRequiredArgumentBuilder
ParameterTypeDescription
Parameter
name
Type
string
Description
No Description Provided

Name: literal

Return Type: MCLiteralArgumentBuilder

ZenScript
Copy
CustomCommands.literal(name as string) as MCLiteralArgumentBuilder
ParameterTypeDescription
Parameter
name
Type
string
Description
No Description Provided

Name: registerCommand

Return Type: void

ZenScript
Copy
CustomCommands.registerCommand(builder as MCLiteralArgumentBuilder) as void
ParameterTypeDescription
Parameter
builder
Type
MCLiteralArgumentBuilder
Description
No Description Provided