Вы можете написать событие on_message
, которое повторяет содержание сообщений, отправленных другими людьми в канале.
from discord.ext import commands
bot = commands.Bot(command_prefix='!')
channel_ids = ("1234", "5678")
@bot.event
async def on_message(message):
if message.author == bot.user:
return
if message.channel.id in channel_ids:
await bot.send_message(message.channel, message.content)
await bot.process_commands(message)
bot.run("token")