1.Как создать команду остановки чата в discord.py?
STOP_CHANNEL = 1
@Client.command()
@commands.is_owner()
async def stop(ctx):
global STOP_CHANNEL
STOP_CHANNEL = 1
@Client.command()
@commands.is_owner()
async def start(ctx):
global STOP_CHANNEL
STOP_CHANNEL = 0
@Client.event
async def on_message(message):
if STOP_CHANNEL:
if message.author.id != 458244468240547842:
await message.delete()
+ Как создать Slash commands в discord.py?
PS: документацию я читал, сложно, если есть наглядный пример: буду очень благодарен