Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
998 views
in Technique[技术] by (71.8m points)

discord.py rewrite - How do i delete every role in a server?

i am trying to find out how to delete every role in a server. I cant find anything on it on the internet, so i am coming here. Basically i need to get a piece of code that just deletes every role in a server with one command.

question from:https://stackoverflow.com/questions/65905096/how-do-i-delete-every-role-in-a-server

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can do for loops and loop over guild roles then deleting every role. Example

for roles in ctx.guild.roles:
    if role.name != "role name that you want to exclude":
        pass
    else:
        await roles.delete(reason="Reason Here")
await ctx.send("Deletion Complete.", delete_after=3)

Check the docs for ctx.guild.roles, and check the docs for delete()


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...