前提・実現したいこと
Python3環境下のdiscord.pyでDiscordBotを作成しています。
ユーザーが入力したコマンドに誤りがある時、「!help コマンド」で返す内容を返信したいと考えています。
!add {文字列引数} というコマンドが存在する時、「!add」とだけ発言したユーザが居た場合「!help add」の内容を返すというようなことをしたいと考えております。
網羅的に人力でやればできなくないと思うのですが、うまいやり方はあるでしょうか。
以下のAPIリファレンスを見ていると、名前的にsend_bot_helpが該当するのか?と考えてみたものの、説明を読むとどうにも違いそうで、一応確かめてみようと実装方法をググってもわからず…という状態です。
https://discordpy.readthedocs.io/ja/latest/ext/commands/api.html#discord.ext.commands.HelpCommand.send_bot_help
使えそうなコマンド
追記:2019/11/29
get_commandとinovkeでhelpを発言させることには成功しました。
しかし、helpに引数を与える方法(サブコマンド?)がわかりません。
「!help add」を発言させる方法はあるでしょうか?
Python
1bot.get_command('help').invoke(context)
該当のソースコード
Cog
Python
1import discord 2from discord.ext import commands 3from discord.ext.commands import CommandNotFound 4 5 6 7class TestCog(commands.Cog, name='コマンド'): 8 def __init__(self, bot: commands.Bot): 9 self.bot: commands.Bot = bot 10 11 @commands.command(usage='追加する文字', 12 help='追加する\n\n' 13 '説明文章1\n' 14 '説明文章2\n') 15 async def add(self, ctx: discord.ext.commands.Context, arg: str): 16 """ 17 文字を追加する 18 :param ctx: コンテキスト 19 :param arg: 文字 20 :return: 21 """ 22 await ctx.send(arg) 23 24 @commands.Cog.listener() 25 async def on_command_error(self, ctx: discord.ext.commands.Context, error: discord.ext.commands.CommandError): 26 if hasattr(ctx.command, 'on_error'): 27 return 28 29 error = getattr(error, 'original', error) 30 if isinstance(error, commands.UserInputError): 31 # ここでどうにかする想定 32 await ctx.send('入力間違い') 33 34 35def setup(bot): 36 bot.add_cog(TestCog(bot)) 37
Main
iniファイル上からtokenを読んでBotを起動
Python
1import configparser 2 3from discord.ext import commands 4 5import JapaneseHelpCommand 6 7# コンフィグファイルの読み込み 8inifile = configparser.ConfigParser() 9inifile.read('./config.ini', 'UTF-8') 10token = inifile.get('settings', 'token') 11 12# 読み込むコグの名前を格納しておく。 13INITIAL_EXTENSIONS = [ 14 'cogs.testcog' 15] 16 17 18 19class MyBot(commands.Bot): 20 def __init__(self, command_prefix, help_command): 21 super().__init__(command_prefix, help_command) 22 23 for cog in INITIAL_EXTENSIONS: 24 try: 25 self.load_extension(cog) 26 except Exception as e: 27 print(e) 28 29 # Botの準備完了時に呼び出されるイベント 30 async def on_ready(self): 31 print('-----') 32 print(self.user.name) 33 print(self.user.id) 34 print('-----') 35 36 37# MyBotのインスタンス化及び起動処理。 38if __name__ == '__main__': 39 prefix = '!' 40 bot = MyBot(command_prefix=prefix, help_command=JapaneseHelpCommand.JapaneseHelpCommand(prefix)) 41 bot.run(token)
JapaneseHelpCommand
HelpCommandを日本語化してるだけのクラス
Python
1from discord.ext import commands 2 3class JapaneseHelpCommand(commands.DefaultHelpCommand): 4 def __init__(self, prefix): 5 super().__init__() 6 self.commands_heading = "コマンド:" 7 self.no_category = "その他" 8 self.command_attrs["help"] = "コマンド一覧と簡単な説明を表示" 9 self.command_prefix = prefix 10 11 def get_ending_note(self): 12 return (f"各コマンドの説明: {self.command_prefix}help <コマンド名>\n" 13 f"各カテゴリの説明: {self.command_prefix}help <カテゴリ名>\n") 14
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。