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
1 Answer
Reset to default -1To 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.