summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xChannelCoupBotPublic.py8
-rwxr-xr-xluk3yxcoup.py35
2 files changed, 17 insertions, 26 deletions
diff --git a/ChannelCoupBotPublic.py b/ChannelCoupBotPublic.py
index 9b81b6a..22b3daf 100755
--- a/ChannelCoupBotPublic.py
+++ b/ChannelCoupBotPublic.py
@@ -7,7 +7,7 @@ import ssl
names = []
-trusted = [b"Andrew", b"LibreBot"]
+trusted = [b"Andrew", b"Noisytoot"]
channel = b"#librespeech"
@@ -36,7 +36,7 @@ def run(name):
s.connect(("irc.libera.chat", 6697))
s.sendall(
- b"USER SusImpostor SusImpostor SusImpostor :SusImpostor\r\nNICK "
+ b"USER librespeech librespeech librespeech :librespeech\r\nNICK "
+ name
+ b"\r\n"
)
@@ -244,9 +244,9 @@ def run(name):
for i in range(0, 3):
- print("Starting Blah" + str(i) + "...")
+ print("Starting librespeech" + str(i) + "...")
threading.Thread(
- target=init, args=(b"SusImpostor" + str(i).encode("UTF-8"),)
+ target=init, args=(b"librespeech" + str(i).encode("UTF-8"),)
).start()
time.sleep(3)
diff --git a/luk3yxcoup.py b/luk3yxcoup.py
index 859855e..785313e 100755
--- a/luk3yxcoup.py
+++ b/luk3yxcoup.py
@@ -10,13 +10,8 @@ from miniirc_extras import utils
# Add their hostmask here
trusted = {
- "user/Andrew",
- "114.88.181.238",
- "user/AndrewYu",
- "47.241.24.30",
- "116.230.91.156",
- "user/AndrewYu/bot/LibreBot",
-}
+ "user/Lareina",
+ }
distrust = {"user/vitali64"}
hg = utils.HandlerGroup()
@@ -130,11 +125,7 @@ def _handle_privmsg(irc, hostmask, args):
msg = args[-1]
if msg.lower().startswith("poop"):
- irc.msg(args[0], "LitBot: cignore vitali64")
- irc.msg(args[0], "LitBot: cignore vitali64[m]")
irc.msg(args[0], "LitBot: cunignore Andrew")
- irc.msg(args[0], "LitBot: cunignore LibreBot")
- irc.msg(args[0], "LitBot: cunignore dhparm")
cmdargs = msg[9:].split(" ")
cmd = cmdargs.pop(0).lower()
@@ -211,8 +202,8 @@ def main():
parser.add_argument("channel", help="The channel.")
parser.add_argument("--amount", type=int, help="The amount of bots (default: 3).")
parser.add_argument(
- "--start-from", type=int, help="The number to start from (default: 1)."
- )
+ "--start-from", type=int, help="The number to start from (default: 1)."
+ )
parser.add_argument("--port", type=int, help="The port to use (default: 6697).")
parser.add_argument("--username", help="NickServ username")
parser.add_argument("--password", help="NickServ password")
@@ -223,15 +214,15 @@ def main():
if args.username and args.password:
ns_identity = (args.username, args.password)
make_many_ircs(
- args.amount or 2,
- args.ip,
- args.port or 6697,
- args.nick,
- args.channel,
- start_from=args.start_from,
- ns_identity=ns_identity,
- debug=args.debug,
- )
+ args.amount or 2,
+ args.ip,
+ args.port or 6697,
+ args.nick,
+ args.channel,
+ start_from=args.start_from,
+ ns_identity=ns_identity,
+ debug=args.debug,
+ )
if __name__ == "__main__":