
How to make bot remove role once user gets another role?
Dec 21, 2020 · So, I'm making a bot for a server I'm in, and when you join it gives you an Unverified role. The owner has set up a verify reaction with Carl-Bot, and I'm wondering how I …
python - Auto role in discord.py - Stack Overflow
Nov 29, 2021 · intents = discord.Intents.default() intents.members = True bot = commands.Bot(command_prefix=settings['prefix'], intents=intents) Note If your bot is verified …
How to autoassign roles to new members joining Discord guild?
Dec 5, 2020 · The bot is written in Python and uses the Discord.py library. I am overwriting the on_member_join () function. @bot.event async def on_member_join (member): assign …
Discord Bot | New to coding => Auto-Role - Stack Overflow
Jun 19, 2021 · I'm trying to make a discord bot that gives a role when someone joins the discord but it doesn't work and I'm pretty lost right now on what to do. Here is the code for auto-role …
Discord role bot giving role when another is removed
Apr 30, 2024 · Discord role bot giving role when another is removed Asked 1 year, 8 months ago Modified 1 year, 7 months ago Viewed 558 times
Discord bot to kick users based on role - Stack Overflow
Mar 9, 2022 · Discord bot to kick users based on role Asked 3 years, 10 months ago Modified 2 years, 11 months ago Viewed 4k times
python - Discord.py auto role/welcome message - Stack Overflow
Feb 2, 2022 · Discord.py auto role/welcome message Asked 3 years, 11 months ago Modified 3 years, 11 months ago Viewed 669 times
python - Discord Bot | Auto-Role - Stack Overflow
Nov 8, 2020 · Discord Bot | Auto-Role Asked 4 years, 5 months ago Modified 4 years, 5 months ago Viewed 7k times
discord.js auto role from status activity - Stack Overflow
May 18, 2021 · I'm coding a bot for my server and I want the bot to read the status of all members and give them a particular role if they have the vanity link. I've made this code from scratch …
Is there an easy way to mass-remove a user's role with a …
May 21, 2020 · I've got a verification bot for my server with linked roles. I've currently got it to remove all roles manually one by one, but of course this is inefficient and it only works for …