Compare commits
3 Commits
b2d77abf3f
...
a7e475a603
Author | SHA1 | Date |
---|---|---|
|
a7e475a603 | |
|
5f2c313562 | |
|
ee1976e3f3 |
7
main.py
7
main.py
|
@ -4,6 +4,7 @@ from discord import app_commands
|
||||||
from parse_colles import create_colloscope
|
from parse_colles import create_colloscope
|
||||||
import os
|
import os
|
||||||
from dotenv import load_dotenv, dotenv_values
|
from dotenv import load_dotenv, dotenv_values
|
||||||
|
import random as rng
|
||||||
|
|
||||||
|
|
||||||
# Créer une instance du bot
|
# Créer une instance du bot
|
||||||
|
@ -34,7 +35,11 @@ async def on_message(message):
|
||||||
if message.author == bot.user:
|
if message.author == bot.user:
|
||||||
return
|
return
|
||||||
if "quoi" in message.content[-10:].lower():
|
if "quoi" in message.content[-10:].lower():
|
||||||
await message.channel.send(f"quoicoubeh {message.author.mention} !")
|
r = rng.randint(0,1000)
|
||||||
|
if r == 1 :
|
||||||
|
await message.channel.send(f"quoicoubeh {message.author.mention} !")
|
||||||
|
else :
|
||||||
|
await message.channel.send(f"FEUUR {message.author.mention} !!!")
|
||||||
if "j'aime" in message.content.lower()[:6]:
|
if "j'aime" in message.content.lower()[:6]:
|
||||||
await message.author.edit(nick=f'{message.content[6:]}')
|
await message.author.edit(nick=f'{message.content[6:]}')
|
||||||
|
|
||||||
|
|
Binary file not shown.
Loading…
Reference in New Issue