最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

python - How do I get someones specific discord ID - Stack Overflow

programmeradmin1浏览0评论

Im using pycord to build a discord bot. I am trying to make it so if the user that is being banned equals a specific discord ID. It will print, "Can not perform this action." What have I missed and what can I do to get someones specific discord ID?


@botmand(description="Bans a user from the server")
async  def ban(ctx, member : discord.Member, *, reason = None):
    await member.ban(reason = reason)
    user = client.get_member()
    if member == user
        print("Can not ban user")

I have tried looking through multiple forums and the pycord documentation but cant find anything to help me.

Im using pycord to build a discord bot. I am trying to make it so if the user that is being banned equals a specific discord ID. It will print, "Can not perform this action." What have I missed and what can I do to get someones specific discord ID?


@botmand(description="Bans a user from the server")
async  def ban(ctx, member : discord.Member, *, reason = None):
    await member.ban(reason = reason)
    user = client.get_member()
    if member == user
        print("Can not ban user")

I have tried looking through multiple forums and the pycord documentation but cant find anything to help me.

Share Improve this question asked 2 days ago SkinWalkersAreHereSkinWalkersAreHere 112 bronze badges New contributor SkinWalkersAreHere is a new contributor to this site. Take care in asking for clarification, commenting, and answering. Check out our Code of Conduct. 3
  • Are you trying to prevent users from banning themselves? The solution depends on the answer. – Lubomyr Pryt Commented 2 days ago
  • Or just prevent from banning specific users? – Lubomyr Pryt Commented 2 days ago
  • People's discord keys are private because if you knew them, you could pretend to be that person. it's like asking for someones SIN – F-22 Destroyer Commented 2 days ago
Add a comment  | 

1 Answer 1

Reset to default -1

To get the ID of a Discord user you first need to activate developer mode. Once this has been activated, simply copy the id into the member options.

发布评论

评论列表(0)

  1. 暂无评论