Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.1k views
Welcome To Ask or Share your Answers For Others

1 Answer

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()


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...