Не понимаю, как сделать несколько команд моему боту:
import discord
import asyncio
from asyncio import sleep
client = discord.Client()
@client.event
async def on_ready():
print('We have logged in as {0.user}'.format(client))
@client.event
async def on_ready():
while True:
await client.change_presence(status=discord.Status.online, activity=discord.Game("$help"))
await sleep(5)
await client.change_presence(status=discord.Status.online,activity=discord.Game(f'{len(client.guilds)} серверов.'))
await sleep(5)
@client.event
async def on_message(message):
embed = (discord.Embed(title='Страница хелп!',description='$help - Увидеть этот список'))
if message.content.startswith('$help'):
await message.reply(embed = embed)
client.run('ODc0MzkxMzQ4NDQ5NTM4MTI4.YRGSZg.lL7DwCEfbtb3BbXH8GGiwWvXssc')
И после того как я создал ещё одну команду:
import discord
import asyncio
from asyncio import sleep
client = discord.Client()
@client.event
async def on_ready():
print('We have logged in as {0.user}'.format(client))
@client.event
async def on_ready():
while True:
await client.change_presence(status=discord.Status.online, activity=discord.Game("$help"))
await sleep(5)
await client.change_presence(status=discord.Status.online,activity=discord.Game(f'{len(client.guilds)} серверов.'))
await sleep(5)
@client.event
async def on_message(message):
embed = (discord.Embed(title='Страница хелп!',description='$hello - Заставить бота сказать вам привет!\n$help - Увидеть этот список'))
if message.content.startswith('$help'):
await message.reply(embed = embed)
@client.event
async def on_message(message):
embed = (discord.Embed(title='инфо',description='Я ТОКСИК!'))
if message.content.startswith('$toxic'):
await message.reply(embed = embed)
client.run('ODc0MzkxMzQ4NDQ5NTM4MTI4.YRGSZg.lL7DwCEfbtb3BbXH8GGiwWvXssc')
Команда $help Перестала работать.