我的 python 机器人不和谐发送 !help 命令,但它不在代码中......我怎样才能删除它?可能是导入到code idk中,长这样: http: //prnt.sc/oxqj0s我已经导入了这个: import discord from discord.ext import commands import asyncio import time import random from discord import Game import os
1 回答
沧海一幻觉
TA贡献1824条经验 获得超5个赞
我认为您应该可以使用以下代码摆脱它:
# Imports
import discord
from discord.ext import commands
import asyncio
import time
import random
from discord import Game
import os
# Create the bot with prefix '!'
client = commands.Bot(command_prefix='!')
# Remove the 'help' command
client.remove_command('help')
Discord 机器人在启动时会自动创建一个“帮助”命令。然后,当您通过键入“!help”(因为我使用命令前缀“!”设置机器人)调用帮助命令时,它会加载内置的帮助命令。代码 'client.remove_command('help')' 从机器人 'client' 中删除帮助命令。
添加回答
举报
0/150
提交
取消