自定义命令
导入相关包
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.
import crafttweaker.api.commands.custom.CustomCommands;
方法
参数
Return Type: MCRequiredArgumentBuilder
CustomCommands.argument(name as string) as MCRequiredArgumentBuilder
参数 | 类型 | 描述 |
---|
name | string | No Description Provided |
纯文本
Return Type: MCLiteralArgumentBuilder
CustomCommands.literal(name as string) as MCLiteralArgumentBuilder
参数 | 类型 | 描述 |
---|
name | string | No Description Provided |
注册命令
Return Type: void
CustomCommands.registerCommand(builder as MCLiteralArgumentBuilder) as void