У меня есть этот код в Python: < /p>
import discord
client = commands.Bot(command_prefix='!')
@client.event
async def on_voice_state_update(member):
channel = client.get_channel(channels_id_where_i_want_to_send_message))
response = f'Hello {member}!'
await channel.send(response)
client.run('bots_token')
< /code>
И я хочу, чтобы бот удалил свое собственное сообщение. Например, через одну минуту, как мне это сделать?
Подробнее здесь: https://stackoverflow.com/questions/654 ... -some-time
Мобильная версия