gooブログもありますが、やはりはてなブログが使いやすいですね。
技術系もここに書いてますが。
ということで本日のソースコード。
dpyさん復活記念にスラッシュコマンドの書き方のヒントを。
intents = discord.Intents.all() bot = commands.Bot(command_prefix="!!!", intents=intents) @bot.tree.command(name="aaa", description="テストコマンドだ。") async def aaaaaaaaaaa(ctx): await ctx.response.send_message("test")
まずコマンドの場合はすでにcommandtreeが指示されているので、また特殊になります。
で、bot.tree.commandとなります。
ctxの場合はawait ctx.response.send_messageとなりますのでご注意。
新しくスラコマに対応したということで書き方ですが、説明が難しいので許して、(;||)
では||)ノシ