mirror of
https://github.com/supleed2/gondilinabot-python.git
synced 2024-11-10 01:35:50 +00:00
60 lines
1.6 KiB
Python
60 lines
1.6 KiB
Python
import discord
|
|
import re
|
|
import yaml
|
|
import random
|
|
|
|
# from discord.ext import commands
|
|
|
|
bot = discord.Client()
|
|
mincooldown = 3
|
|
maxcooldown = 10
|
|
counter = random.randrange(mincooldown, maxcooldown)
|
|
|
|
|
|
@bot.event
|
|
async def on_ready():
|
|
print("Logged in as")
|
|
print(bot.user.name + "#" + bot.user.discriminator)
|
|
print(bot.user.id)
|
|
await bot.change_presence(
|
|
status=discord.Status.online, activity=discord.Game(name="with Godlina")
|
|
)
|
|
|
|
|
|
@bot.event
|
|
async def on_message(message):
|
|
if message.author == bot.user:
|
|
return
|
|
else:
|
|
global counter
|
|
# TODO: Add detection for "genshin" and replace with "g*nshin"
|
|
reply = re.split("(^| )(I'm|Im|i'm|im|I am|i am)( )", message.content, 1)
|
|
if len(reply) > 1:
|
|
print("Message from " + message.author.name + ": " + message.content)
|
|
print(
|
|
"Reply: Length:"
|
|
+ str(len(reply))
|
|
+ ", Final Contents: {"
|
|
+ reply[-1]
|
|
+ "}"
|
|
)
|
|
if counter > 0:
|
|
counter -= 1
|
|
print("Cooldown: " + str(counter) + " messages")
|
|
else:
|
|
counter = random.randrange(mincooldown, maxcooldown)
|
|
await message.reply("Hi " + reply[-1] + ", I'm Dad")
|
|
print("Replied to " + message.author.name + " with Dad Joke")
|
|
|
|
|
|
with open("secrets.yaml") as stream:
|
|
try:
|
|
secrets = yaml.safe_load(stream)
|
|
except yaml.YAMLError as exc:
|
|
print(exc)
|
|
print("Secrets.yaml failed to load, exiting...")
|
|
raise SystemExit
|
|
|
|
|
|
bot.run(secrets["bottoken"])
|