KazTron is the /r/worldbuilding Discord server’s resident helper bot! It mostly helps the moderators manage the community and run features like the World Spotlight, with a few automation features that happen behind the scenes, and a few commands of use to our members.

This website documents the usage of the various commands, organised by module. Note that not all modules may be loaded, depending on needs as judged by the moderation team.

How to use KazTron commands

KazTron is mostly a command-based bot: in a Discord text channel, you send a command starting with . and KazTron will pick up on the command and respond to you. As an example, a command to add three numbers together could look like this (this is an illustrative example and doesn’t really exist):

.add 4 191 33

The command is add, and there are three arguments, 4, 191 and 33.

Examples

If you want to be notified about World Spotlight events and updates, you can type this command in any channel:

.info

If you want to roll dice, say three 20-sided dice, you could type the following message in any channel:

.roll 3d20

Getting Help

In addition to this manual, you can always get contextual help from within Discord. To get a list of commands you can use, type .help into any channel on the server. To get help on specific commands, you can type .help <command>, or even get help with subcommands using .help <command> <subcommand>.

For example, .help spotlight will give you general information on the spotlight bot features, whereas .help spotlight join will specifically tell you about the “join” subcommand and its syntax. (In this case, the commands are both very simple, though!)

You can always ask us for help in the #meta channel of the Discord server.

Command syntax and design

This is a more technical version of the above how-to, and may be useful to people familiar with the Linux/*nix command line or programmers. You can feel free to skip this section.

The structure of a command is formally defined as follows:

.<command_name> [subcommand1 [subcommand2 [...]]] [arg1 [arg2 [arg3...]]]

The . prefix differentiates KazTron commands from normal Discord messages.

Commands in KazTron are often hierarchical, so one or more level of subcommands may be present. For example, the .quote command has subcommands .quote add, .quote grab, .quote rem, which are all operations that affect the Quote Database feature. In general, KazTron’s design philosophy is to try and keep this hierarchy limited to two levels (the command indicates the module/feature, the subcommand indicates the specific operation).

Subcommands and arguments are all space-separated. In the case that an argument needs to contain a space, you should enclose it in double quotation marks to ensure it is treated as a single argument; for example:

.command arg1 "arg2 has spaces in it" arg3

As a general design philosophy, if a command only takes one argument and that argument is expected to be textual, quotation marks are not required. (If you notice commands that don’t follow this, it may be a bug; please feel free to report it on our repository.)

In some rare cases, optional keyword arguments are allowed after positional arguments, and a “free text” argument may be allowed at the very end. This is the case with the ModNotes module, for example. This kind of construction is not user-friendly and highly discouraged; at present, it is generally limited to more complex features intended for moderator or administrator use. For these commands, the syntax would be:

.<command_name> [subcommand1 [subcommand2 [...]]] [arg1 [arg2 [arg3...]]] [keyword1="arg_value" [keyword2="arg_value" [...]]] [full_text]

As an example,

.notes add @SomeUser watch timestamp="2016-01-01" expires="2016-03-01" A full-text description of the note here.

This is somewhat analogous to command-line positional arguments and options (dash arguments), such as notes add --timestamp=2016-01-01 --expires=2016-03-03 SomeUser watch "A full-text description of the note here." if the above example were for a CLI tool.

The Team

KazTron is developed and operated by:

Former members

Contributors

  • Grine_ : Guinea pig (QA)

  • Kauyon Kais : Development

  • Teeteegone : KazTron “cat” icon artwork

  • Yazuki : Guinea pig (QA)

  • B.W., Izzy, Nyxlexica, Poison, ThiefOfHope, Zuberan : QA