From bfad754ae87c24133d88cf70e88cbefd97062aa0 Mon Sep 17 00:00:00 2001 From: Georgios Atheridis Date: Wed, 21 Jun 2023 20:26:11 +0100 Subject: [PATCH] Add subathon auto message --- ihaspeks/auto_messages/subathon.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 ihaspeks/auto_messages/subathon.py diff --git a/ihaspeks/auto_messages/subathon.py b/ihaspeks/auto_messages/subathon.py new file mode 100644 index 0000000..4bd8895 --- /dev/null +++ b/ihaspeks/auto_messages/subathon.py @@ -0,0 +1,9 @@ +from aptbot.bot import Message, Commands, Bot + +COOLDOWN = 60 * 60 +END_TIME = 0 + + +def main(bot: Bot, message: Message): + msg = "Ding SubRATathon on the 1st of july. Multiple activities and events. 1v1 and 2v2 tournament -- JOIN THE DISCORD with the command ?discord -- Other events, such as Bingo, Customs, Spoopy games and much much more. Don't forget to join discord to be updated and learn more --- USE THE COMMAND ?discord Ding" + bot.send_privmsg(message.channel, msg) -- 2.30.2