import disnake
from disnake.ext import commands
intents = disnake.Intents.all() # Тут изменения.
TOKEN = "твой токен"
bot = commands.Bot(command_prefix='=', intents=intents)
@bot.command()
async def hello(ctx):
await ctx.reply("Hello!")
bot.run(TOKEN)
Если не работает, то включи "message content intent"" в настройках приложения, во вкладке Bot.
Сам код:
import disnake from disnake.ext import commands intents = disnake.Intents.default() intents.members = True intents.message_content = True command_sync_flags = commands.CommandSyncFlags.default() command_sync_flags.sync_commands_debug = False TOKEN = "тут был токен " bot = commands.Bot( command_prefix='=', command_sync_flags=command_sync_flags, intents=intents ) bot = commands.Bot(command_prefix='=') @bot.command() async def hello(ctx): await ctx.reply("Hello!") bot.run(TOKEN)