投票システムを作ろうとしています。
Python3.x
1import discord 2import random 3from discord.ext import commands 4from discord.utils import get 5 6token = "トークン" 7client = commands.Bot(command_prefix = '.') 8 9@client.event 10async def on_ready(): 11 print('Ready') 12 13@client.command(pass_context=True) 14async def vote(ctx, *, question): 15 await ctx.send(f'アンケート: {question}\n下の✔か☓で答えてください。') 16 await ctx.message.add_reaction('✅') 17 18client.run(token)
この状態だと、コマンド(.vote 質問)に対してリアクションが付与されてしまい、BOTが送信したメッセージに対してリアクションがつきません。
やり方を教えて下さい。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/07/26 15:36
2020/07/26 15:49