我如何创建命令来关闭我的Discord.py Bot?
问题描述
我已重写了现有的Discord Bot,以便命令通过@client.command
工作。
下面是Clear命令的示例,您可以看到该语言是如何工作的。
@client.command()
async def echo(*args):
output = ""
for word in args:
output += word
output += " "
await client.say(output)
我要创建2个命令。
它将-shutdown
机器人,使其脱机,并且没有响应。
另一个将-restart
机器人,这意味着如果我更新代码,运行重新启动命令,机器人将脱机,重新启动,然后再回来。
我该如何着手进行此操作?
因为我希望这些命令只对我有效,所以我在下面留下了不一致的用户ID,以便您可以将其包括在代码中。432234718860148749
。
提前感谢, h
解决方案
https://discordpy.readthedocs.io/en/latest/ext/commands/api.html#discord.ext.commands.Bot.logout您的答案是
@client.command()
@commands.is_owner()
async def shutdown(ctx):
await ctx.bot.logout()
但是,我还不知道如何通过命令重新启动bot
相关文章