This repository has been archived on 2023-04-13. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
CloudBot/plugins/info.py

16 lines
No EOL
475 B
Python

from util import hook
@hook.command(autohelp=False)
def admins(inp, notice=None, bot=None):
".admins -- Lists bot's admins."
if bot.config["admins"]:
notice("Admins are: %s." % ", ".join(bot.config["admins"]))
else:
notice("No users are admins!")
return
@hook.command(autohelp=False)
def prefix(inp, notice=False, conn=False):
".prefix -- Shows the bot's command prefix"
notice("The prefix is: \"%s\"" % conn.conf["command_prefix"])