我制作了一个Discord机器人,该机器人可以让我控制和创建PC上的文件和内容
我尽了我所能想到的一切,可能是我尝试使它起作用的太多,但我做不到
当我输入“ ls
”时表示list
或dir
,它应该列出目录中的所有文件,但不能发送消息
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)
请帮助我