###リアクションで作成するチャンネルを選んで✅のリアクションを押すとチャンネルが作成されるプログラムを組んでいます
@bot.event async def on_reaction_add(reaction , member ): guild = bot.get_guild(member.guild.id) channel = bot.get_channel(reaction.message.channel.id) if reaction.emoji == ("✅") if reaction.count == 2 : if reaction.emoji == ("1️⃣") : if reaction.count == 2 : await guild.create_text_channel(name = "チャンネル1") if reaction.emoji == ("2️⃣"): if reaction.count == 2 : await guild.create_text_channel(name="チャンネル2" )
3段目より下のifが動きません。ご教授お願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/14 08:38