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 have been trying to figure out how to delete every channel in an event for fun. Does anyone know how to do this, and if so, can you help me out?

question from:https://stackoverflow.com/questions/65647229/how-do-i-delete-every-text-channel-with-an-event

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

1 Answer

You get the guild object, then use a for loop to iterate through each text channel in the guild and do channel.delete(). You'll find everything else that you need in the documentation

A good practice is to familiarize yourself with the documentation so that later on you can find how to do this on your own, and you won't require help.


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