This repository has been archived on 2023-04-13. You can view files and clone it, but cannot push or open issues or pull requests.
CloudBot/plugins/info.py

14 lines
401 B
Python

from util import hook
@hook.command(autohelp=False)
def channels(inp, conn=None):
"channels -- Lists the channels that the bot is in."
return "I am in these channels: %s" % ", ".join(conn.channels)
@hook.command(autohelp=False)
def prefix(inp, notice=False, conn=False):
"prefix -- Shows the bot's command prefix"
notice('The command prefix is "%s"' % conn.conf["command_prefix"])