X-Git-Url: https://jfr.im/git/erebus.git/blobdiff_plain/7dfbf3b4a9568296778ce1cbe0c1a8e37b7ae77a..193806d55ffc8ca4497a79a03a644f60fa5163ac:/modules/control.py diff --git a/modules/control.py b/modules/control.py index 841128f..884b82b 100644 --- a/modules/control.py +++ b/modules/control.py @@ -144,3 +144,19 @@ def qclear(bot, user, chan, realtarget, *args): bot.fastmsg(user, "Syntax: QCLEAR [regular|slow]") return #short-circuit bot.fastmsg(user, "Cleared that msgqueue.") + +@lib.hook(needchan=False, wantchan=True, glevel=lib.ADMIN) +@lib.help(" ", "inject a line as though it came from ", "note that this injects lines, not commands", "ex: INJECT DimeCadmium !WHOAMI") +def inject(bot, user, chan, realtarget, *args): + targetuser = bot.parent.user(args[0], create=False) + if targetuser is None: + bot.msg(user, "User is unknown.") + return + if targetuser.glevel > user.glevel: + bot.msg(user, "That user has a higher access level than you.") + return + + if chan is not None: + bot.parsemsg(bot.parent.user(args[0], create=False), str(chan), ' '.join(args[1:])) + else: + bot.parsemsg(bot.parent.user(args[0], create=False), str(bot), ' '.join(args[1:]))