You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Args are splitted by the "space" chars. The 0. index is command text for args parameter but doesn't have the prefix.
160
+
```
161
+
Entered Command: "!ping test 123"
162
+
args[0]: "ping"
163
+
args[1]: "test"
164
+
args[2]: "123"
165
+
166
+
prefix: "!"
167
+
```
168
+
169
+
170
+
## Argument Methods
171
+
Argument methods must be public and boolean. If argument method returns false, the `onFalse` callback is run. Names are not important for argument methods.
172
+
173
+
If the Commando annotation of command has `onlyArguments = true` the command is only available for pure usage and use with arguments.
174
+
There is no limit to using arguments, you can use as many arguments as you want. Arguments __has__ case sensitivity.
0 commit comments