for auto_message in fetched:
name, cooldown, end_time, last_used, value = auto_message
+ print(auto_message)
if time.time() < last_used + cooldown:
continue
if time.time() > start_stream_ts + end_time and end_time != 0:
--- /dev/null
+from aptbot.bot import Message, Commands, Bot
+
+COOLDOWN = 25 * 60
+END_TIME = 2 * 60 * 60
+
+
+def main(bot: Bot, message: Message):
+ msg = "ELLO it's me Murphy. I managed to find my way in to twitch chat PepeLaugh"
+ bot.send_privmsg(message.channel, msg)
--- /dev/null
+from aptbot.bot import Message, Commands, Bot
+
+COOLDOWN = 21 * 60
+END_TIME = 2 * 60 * 60
+
+
+def main(bot: Bot, message: Message):
+ msg = "MurphyAI reporting for duty!"
+ bot.send_privmsg(message.channel, msg)
--- /dev/null
+from aptbot.bot import Message, Commands, Bot
+
+COOLDOWN = 30 * 60
+END_TIME = 2 * 60 * 60
+
+
+def main(bot: Bot, message: Message):
+ msg = "I have taken over Screamlads! Careful, or you're next elmoFire"
+ bot.send_privmsg(message.channel, msg)