不和谐的机器人不发送消息

时间:2019-05-14 12:27:14

标签: python api discord discord.py

我制作了一个Discord机器人,该机器人可以让我控制和创建PC上的文件和内容

我尽了我所能想到的一切,可能是我尝试使它起作用的太多,但我做不到

当我输入“ ls”时表示listdir,它应该列出目录中的所有文件,但不能发送消息

botToken = '------------------------------------------------------'
botMaster = 'xXxAaRkEtxXx#2475'
import discord
import subprocess

client = discord.Client()

@client.event
async def on_message(message):

    if message.content:
        if str(message.author) == botMaster:
            comando = subprocess.getoutput(str(message.content))
            msg = 'Command granted by {0.author.mention}\n{1}'.format(message, comando)
            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(botToken)

请帮助我

0 个答案:

没有答案