Player list command

AnHeroBridge can add an irc command like the built-in .players but that shows a list of members of the current herochat channel, like /ch who.

However I couldn't decide a good name for this command, so you can configure it to anything you like with the players-irc-commands entry of the settings section (if you don't have it, check the default config link above).

A few examples:

    players-irc-commands: []

The default setting, will not add any commands.

    players-irc-commands: ['chwho', 'hcwho', 'chatters', 'hcplayers']

This would add four different aliases for the same command, all of them rather awful.

    players-irc-commands: ['players']

This will add a single command that has the same name as the built-in one, so that one will get replaced by ours.

Note that the CraftIRC config also allows adding aliases to the built-in commands (irc-commands section) - you can use that to keep the old command under a different name.


Back to the configuration page