前提・実現したいこと
discord.pyでdiscord.Clientにwait_forのメソッドが存在すると思います。
discord.pyの公式ドキュメントにもwait_forは記述されています。
そこで私は@client.eventを@bot.commandで実行しようとしています。
一応公式ドキュメントのサンプルコードから引用して該当のソースコードまでは書けています。
流れ的には
.greetが渡されたらctx.send()を実行し、ユーザーが????リアクションを追加するまで待ち、タイムアウト(60秒)してしまったら????追加されるのを確認出来たら????をctx.send()でそれぞれ行う
というような流れです。(ctxはprefixの.です。)
.greetでSend me that ???? reaction, mateとは送信されましたがそこからエラーが吐かれます。
発生している問題・エラーメッセージ
Traceback (most recent call last): File "C:\Users\user\AppData\Local\Programs\Python\Python39\lib\site-packages\discord\ext\commands\bot.py", line 903, in invoke await ctx.command.invoke(ctx) File "C:\Users\user\AppData\Local\Programs\Python\Python39\lib\site-packages\discord\ext\commands\core.py", line 859, in invoke await injected(*ctx.args, **ctx.kwargs) File "C:\Users\user\AppData\Local\Programs\Python\Python39\lib\site-packages\discord\ext\commands\core.py", line 94, in wrapped raise CommandInvokeError(exc) from exc discord.ext.commands.errors.CommandInvokeError: Command raised an exception: NameError: name 'message' is not defined
該当のソースコード
python
1@bot.command() 2async def greet(ctx): 3 await ctx.send('Send me that ???? reaction, mate') 4 def check(reaction, user): 5 return user == message.author and str(reaction.emoji) == '????' 6 7 try: 8 reaction, user = await bot.wait_for('reaction_add', timeout=60.0, check=check) 9 except asyncio.TimeoutError: 10 await ctx.send('????') 11 else: 12 await ctx.send('????')
試したこと
補足情報(FW/ツールのバージョンなど)
Python 3.9.0
VScode 2019
回答1件
あなたの回答
tips
プレビュー