from util import hook import random with open("plugins/data/larts.txt") as f: larts = [line.strip() for line in f.readlines() if not line.startswith("//")] with open("plugins/data/slaps.txt") as f: slaps = [line.strip() for line in f.readlines() if not line.startswith("//")] with open("plugins/data/slap_items.txt") as f: items = [line.strip() for line in f.readlines() if not line.startswith("//")] with open("plugins/data/kills.txt") as f: kills = [line.strip() for line in f.readlines() if not line.startswith("//")] @hook.command def slap(inp, me=None, nick=None, conn=None, notice=None): "slap -- Makes the bot slap ." target = inp.strip() if " " in target: notice("Invalid username!") return # if the user is trying to make the bot slap itself, slap them if target.lower() == conn.nick.lower() or target.lower() == "itself": target = nick values = {"item": random.choice(items), "user": target} phrase = random.choice(slaps) # act out the message me(phrase.format(**values)) @hook.command def lart(inp, me=None, nick=None, conn=None, notice=None): "lart -- LARTs ." target = inp.strip() if " " in target: notice("Invalid username!") return # if the user is trying to make the bot slap itself, slap them if target.lower() == conn.nick.lower() or target.lower() == "itself": target = nick values = {"user": target} phrase = random.choice(larts) # act out the message me(phrase.format(**values)) @hook.command def kill(inp, me=None, nick=None, conn=None, notice=None): "kill -- Makes the bot kill ." target = inp.strip() if " " in target: notice("Invalid username!") return # if the user is trying to make the bot slap itself, slap them if target.lower() == conn.nick.lower() or target.lower() == "itself": target = nick values = {"user": target} phrase = random.choice(kills) # act out the message me(phrase.format(**values))