import discord
TOKEN = 'insert bot token here'
client = discord.Client()
@client.event
async def on_message(message):
# we do not want the bot to reply to itself
if message.author == client.user:
return
if message.content.startswith('sam'):
msg = 'what {0.author.mention}'.format(message)
await client.send_message(message.channel, msg)
@client.event
async def on_ready():
print('Logged in as')
print(client.user.name)
print(client.user.id)
print('------')
client.run(TOKEN)
Вот что происходит, когда я пытаюсь его запустить.
Я использую Python 3.5, Pycharm, pip 18.1, virtualenv и новейшую версиюдиссонанс.Я сделал бот как приложение и правильно скопировал токен.