- Katılım
- 22 May 2021
- Mesajlar
- 1,475
- Beğeniler
- 333
Bot Aktif oluyor çalışıyor olarak gösteriliyor fakat !hello yazıyorum fakat bir cevap vermiyor
Python:
import discord
TOKEN = "TOKEN"
client = discord.Client()
@client.event
async def on_ready():
print("{0.user} is online!".format(client))
@client.event
async def on_message(message):
if message.author == client.user:
return
elif message.content.startswith("!hello") or message.content.startswith("/hello"):
await message.channel.send("Hello from the other side!")
client.run(TOKEN)