Кодировал Discord, и я думаю, что он не видит остальную часть моего кода - PullRequest
0 голосов
/ 12 мая 2019

Я сделал код, и вот он:

import discord

class MyClient(discord.Client):
    async def on_ready(self):
        print('Logged in as')
        print(self.user.name)
        print(self.user.id)
        print('------')

    async def on_message(self, message):
        # we do not want the bot to reply to itself
        if message.author.id == self.user.id:
            return

        if message.content.startswith('Hello'):
            await message.channel.send('Hello {0.author.mention}'.format(message))

            if message.content.startswith('G!Help'):
                await message.channel.send('Hello {0.author.mention} Here are some commands you can use: Who, Yeet, Why, Help'.format(message))

                if message.content.startswith('G!Who'):
                    await message.channel.send('You are {0.author.mention} WOW!'.format(message))

                    if message.content.startswith('G!Yeet'):
                        await message.channel.send('{0.author.mention} Yeet!'.format(message))

                        if message.content.startswith('G!Why'):
                            await message.channel.send('Erm, {0.author.mention} Why What?'.format(message))


client = MyClient()
client.run('Insert token here')

Извините за форматирование, вот как это делает сайт, поэтому с

if message.content.startswith('G!Help'):
                await message.channel.send('Hello {0.author.mention} Here are some commands you can use: Who, Yeet, Why, Help'.format(message)) to  if message.content.startswith('G!Why'):
                            await message.channel.send('Erm, {0.author.mention} Why What?'.format(message)) 

это не такработа, любая помощь?и токен вставки здесь имеет токен, просто я удалил его, потому что я не хочу его пропускать, Помощь очень ценится.

1 Ответ

0 голосов
/ 14 мая 2019
import discord

class MyClient(discord.Client):
    async def on_ready(self):
        print('Logged in as')
        print(self.user.name)
        print(self.user.id)
        print('------')

    async def on_message(self, message):
        # we do not want the bot to reply to itself
        if message.author.id == self.user.id:
            return

        if message.content.startswith('Hello'):
            await message.channel.send('Hello {0.author.mention}'.format(message))

        elif message.content.startswith('G!Help'):
            await message.channel.send('Hello {0.author.mention} Here are some commands you can use: Who, Yeet, Why, Help'.format(message))
...