- 65
- 12
Мне нужен дс бот который будет отвеччать на сообщение тем же содержанием но почему то ctx.content не работает
Вот код:
Вот код:
Код:
import discord
from discord.ext import commands
config = {
'token': '',
'prefix': '$',
}
bot = commands.Bot(command_prefix=config['prefix'], intents=discord.Intents.default())
@bot.event
async def on_message(ctx):
if ctx.author != bot.user:
await ctx.reply(ctx.content)
bot.run(config['token'])