Element routes
As previously seen, description tags can receive a route to an element as a value. This route is a string that represents the path to the element in the command structure.
Syntax
The syntax for a route is very simple; it is a dot-separated list of names indicating the path to the object to be referenced.
For example, consider the following command structure:
In order to reach the arg2
argument from the MyCommand
command, the route would be args.arg2
.
When writing a route, the names of the elements available depend on the current target in the route. This is similar to accessing properties in objects. For instance, if the current target is a command, you can access the args
path to reach an argument, just like with groups, for example.
Selectable objects
- args
The arguments the current target contains. The next element in the route must be the name of one of these arguments.
- groups
The groups the current target contains. The next element in the route must be the name of one of these groups.
- cmds
The sub-commands the current target contains. The next element in the route must be the name of one of these sub-commands.
- type
The argument type of the current target (only available when the target is an argument).
Examples
Select the type of the argument
myArg1
of the current command:args.myArg1.type
Select the Sub-Command
myCmd
of the current command:cmds.myCmd
Select the type of the argument
myArg1
of the Sub-CommandmyCmd
in the current command:cmds.myCmd.args.myArg1.type
Select the type of the argument that is requesting to parse this description by using the
!
prefix:!.type