forked from Arthur-Le-M/botDiscordRU
-
Notifications
You must be signed in to change notification settings - Fork 0
/
HegoBot.py
46 lines (32 loc) · 1.23 KB
/
HegoBot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import sys,os
# On recupere le dotenv
from dotenv import load_dotenv
load_dotenv()
TOKEN=os.getenv('TOKEN')
if TOKEN==None:
print("[Main] TOKEN non trouvé")
exit()
import interactions
intents = interactions.Intents.DEFAULT | interactions.Intents.MESSAGE_CONTENT
client = interactions.Client(intents=intents,send_command_tracebacks=False)
sys.path.append('Cogs')
sys.path.append('Cogs/src')
# On charge les extensions
client.load_extension("Cogs.Salles")
@interactions.listen()
async def on_ready():
#Fonction qui s'execute quand le bot est prêt
print("[Main] Bot prêt")
pass
@interactions.slash_command(name="kill", description='Tue le bot')
async def kill(ctx: interactions.SlashContext):
"""Kill le bot"""
#Si c'est moi qui lance la commande, il le fait sinon il répond par un gif plus ou moins approprié
if str(ctx.author.id)=="356383729125556228":
await ctx.send("Je degage!")
await client.stop()
exit()
else:
print("[Main] l'Utilisateur "+ ctx.author.username+ " a tenté de kill le bot")
await ctx.send("https://tenor.com/view/chut-ferme-la-tg-puceau-puceau-de-merde-gif-20903914",ephemeral=True)
client.start(TOKEN)