Bonjour, Je suis nouveau dans la programation et je fais un self bot discord. je probleme c’est que j’ai une commande spam et quand je fais /stop sa ne le stop pas. voila le bout de code
spam_txt = False
# COMMANDE BOTE
spam_txt = False
@bot.command()
async def spam(ctx, msg): # exemple : /spam coucou
spam_txt = True
if spam_txt == True:
while True:
await ctx.channel.send(msg)
print("Vous avez éxercuter la commande /spam " + msg)
@bot.command()
async def stop(ctx):
spam_txt = False
await ctx.channel.send("[BOT ALERT] - Spam stoppé !")
+0
-0