discord.py机器人未加入频道

时间:2020-04-20 16:42:50

标签: python discord discord.py

好的,这是我的代码

import discord
from discord.ext import commands

TOKEN = 'THIS_IS_MY_BOT_TOKEN'

client = commands.Bot(command_prefix = '.')

@client.event
async def on_message(message):
    # we do not want the bot to reply to itself
    if message.author == client.user:
        return
    #typing cat
    if message.content.startswith('!cat'):
        msg = 'https://media.giphy.com/media/JIX9t2j0ZTN9S/giphy.gif'.format(message)
        await client.send_message(message.channel, msg)
    #I dont need sleep i need awnsers
    if message.content.startswith('!sleep'):
        msg = 'https://i.kym-cdn.com/entries/icons/original/000/030/338/New.jpg'.format(message)
        await client.send_message(message.channel, msg)
    #murica
    if message.content.startswith('!murica'):
        msg = 'https://www.dictionary.com/e/wp-content/uploads/2018/08/Murica_1000x700.jpg'.format(message)
        await client.send_message(message.channel, msg)
    if message.content.startswith('!why'):
        msg = 'https://drive.google.com/file/d/1rb132Y785zUjj2RP2G-a_yXBcNK5Ut9z/view?usp=sharing'.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.command(pass_context=True)
async def join(ctx):
    if ctx.message.author.voice:
        channel = ctx.message.author.voice.channel
        await channel.connect()

client.run(TOKEN)

该机器人加入了服务器,但是当我说.join时,没有任何反应

如果有帮助,我想加入的语音频道称为Club Meeting

不太清楚为什么,运行它时没有错误。任何人都知道发生了什么事吗?

1 个答案:

答案 0 :(得分:0)

我认为问题是您缺少Bot.process_commands,您需要将其放在on_message函数的末尾。这似乎是您的命令不起作用的原因。

来自文档:

为什么on_message会使我的命令停止工作? https://discordpy.readthedocs.io/en/latest/faq.html#why-does-on-message-make-my-commands-stop-working