@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 ):
global moder
await ctx.send(
moder
)
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
)
class MyClass:
@client.command()
async def _init_(sefl,ctx):
self.moder = None
embed = discord.Embed(
title='Это мой заголовок',
description='Это мой основной текст',
color=0x83c837)
self.moder = await ctx.send(embed=embed)
@client.command()
async def test(sefl,ctx):
await ctx.send(
self.moder
)