added !admins

This commit is contained in:
Jimmy Cao 2011-07-19 22:50:52 -05:00
parent 2912b23056
commit 38c2356534

View File

@ -1894,4 +1894,27 @@ def help2(cli, nick, chan, rest):
@hook("invite", raw_nick = False, admin_only = True)
def on_invite(cli, nick, something, chan):
cli.join(chan)
@cmd("admins")
def show_admins(cli, nick, chan, rest):
admins = []
@hook("whoreply")
def on_whoreply(cli, server, dunno, chan, dunno1,
cloak, dunno3, user, status, dunno4):
if cloak in botconfig.ADMINS and 'G' not in status and user != botconfig.NICK:
admins.append(user)
@hook("endofwho")
def show(*args):
cli.msg(chan, "Available admins: "+" ".join(admins))
HOOKS.pop("whoreply") # todo, makes this better :(
HOOKS.pop("endofwho")
cli.who(chan)