###したい事
Pythonでロール付与コマンドを作成したい
###問題内容
コマンドが動作しない
###エラー内容
無し
###補足
言語.Python/バージョン.3.8.3
###該当コード
Python
1@client.command() 2@commands.has_permissions(administrator=True) 3async def add(ctx,role:discord.Role,user:discord.Member): 4 await user.add_roles(role) 5 embed=discord.Embed(title="ロールを付与しました/API経由", url="https://bit.ly/2JahfiF", description=f"コマンドユーザー {message.author.mention}", color=0x00ff00) 6 embed.add_field(name="付与ユーザー", value=f"{user.mention}", inline=True) 7 embed.add_field(name="ロールID", value=f"{role.mention}", inline=True) 8 embed.set_footer(text="コマンド詳細/!cmd_addrole") 9 await ctx.send(embed=embed) 10 await ctx.send(embed=embed)
回答1件
あなたの回答
tips
プレビュー