CraftBukkit-CommandsEX Wiki
Modular Minecraft server plugin - commands, events, ...
Status: Abandoned
Brought to you by:
zathrus-writer
\<Parameter> - pointy brackets, or tag brackets denote a mandatory parameter that needs to be filled for the command to work. This can be for example player name for a teleport command. /tp \<Player>
[Parameter] - square brackets denote an optional parameter that doesn't have to be filled. This can be for example second player name to which we want the first player to be teleported. /tp \<Player1> [Player2]
(Parameter) - round brackets denote an optional parameter that can only evaluate to one of the values provided in these brackets. For example (yes/no) would only accept words yes or no as a parameter. Any other value would generate an error message.