Does anyone know how I can add option hints in commands? Like this vanilla command
this is my code
system.beforeEvents.startup.subscribe((init) => {
const bloodStormCommand = {
name: "one:bloodstorm",
description: "command",
permissionLevel: CommandPermissionLevel.Any,
optionalParameters: [
{name: "action", type: CustomCommandParamType.String}, /// reset // add // remove // set
{name: "value", type: CustomCommandParamType.Integer},
]
};
init.customCommandRegistry.registerCommand(bloodStormCommand, origin);
});