cfg.bot.run(cfg.TOKEN)
, используйте asyncio.gather для запуска обеих задач. moder = None
@client.command()
async def _init_( ctx ):
global moder
embed = discord.Embed(
title = 'Это мой заголовок',
description = 'Это мой основной текст',
color = 0x83c837
)
moder = await ctx.send(
embed = embed
)
@client.command()
async def test( ctx ):
await ctx.send(
moder
)
ctx.voice_client.play(discord.FFmpegPCMAudio(clip.audiopath), None)