CustomCommands

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.

script.zs
import crafttweaker.api.commands.custom.CustomCommands;

Static Methods

Return Type: MCRequiredArgumentBuilder

script.zs
CustomCommands.argument(name as string) as MCRequiredArgumentBuilder
ParameterTypeDescription
Parameter
name
Type
string
Description
No Description Provided

Return Type: MCLiteralArgumentBuilder

script.zs
CustomCommands.literal(name as string) as MCLiteralArgumentBuilder
ParameterTypeDescription
Parameter
name
Type
string
Description
No Description Provided

Return Type: void

script.zs
CustomCommands.registerCommand(builder as MCLiteralArgumentBuilder) as void
ParameterTypeDescription
Parameter
builder
Type
MCLiteralArgumentBuilder
Description
No Description Provided