mirror of
https://github.com/supleed2/gondilinabot-python.git
synced 2024-12-22 21:45:48 +00:00
Add idle logging and tidy code
This commit is contained in:
parent
6ec9714e2b
commit
43057b949c
14
app.py
14
app.py
|
@ -9,6 +9,7 @@ bot = discord.Client()
|
|||
mincooldown = 3
|
||||
maxcooldown = 10
|
||||
counter = random.randrange(mincooldown, maxcooldown)
|
||||
idleMessageCounter = 0
|
||||
|
||||
|
||||
@bot.event
|
||||
|
@ -27,7 +28,9 @@ async def on_message(message):
|
|||
if message.author == bot.user:
|
||||
return
|
||||
elif message.author.id == 581890740360052764:
|
||||
reply = re.split("(^| )(I'M|IM|I AM|I'm|Im|I am|i'm|im|i am)( )", message.content, 1)
|
||||
reply = re.split(
|
||||
"(^| )(I'M|IM|I AM|I'm|Im|I am|i'm|im|i am)( )", message.content, 1
|
||||
)
|
||||
if len(reply) > 1:
|
||||
print("Message from " + message.author.name + ": " + message.content)
|
||||
print(
|
||||
|
@ -43,9 +46,13 @@ async def on_message(message):
|
|||
)
|
||||
else:
|
||||
global counter
|
||||
global idleMessageCounter
|
||||
# TODO: Add detection for "genshin" and replace with "g*nshin"
|
||||
reply = re.split("(^| )(I'M|IM|I AM|I'm|Im|I am|i'm|im|i am)( )", message.content, 1)
|
||||
reply = re.split(
|
||||
"(^| )(I'M|IM|I AM|I'm|Im|I am|i'm|im|i am)( )", message.content, 1
|
||||
)
|
||||
if len(reply) > 1:
|
||||
idleMessageCounter = 0
|
||||
print("Message from " + message.author.name + ": " + message.content)
|
||||
print(
|
||||
"Reply: Length:"
|
||||
|
@ -61,6 +68,9 @@ async def on_message(message):
|
|||
counter = random.randrange(mincooldown, maxcooldown)
|
||||
await message.reply("Hi " + reply[-1] + ", I'm Dad")
|
||||
print("Replied to " + message.author.name + " with Dad Joke")
|
||||
else:
|
||||
idleMessageCounter += 1
|
||||
print("Idle Message Counter: " + str(idleMessageCounter), end="\r")
|
||||
|
||||
|
||||
with open("secrets.yaml") as stream:
|
||||
|
|
Loading…
Reference in a new issue