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'm trying to make a moderation bot and I'm trying to solve an issue I have where when the bot stops/restarts/crashes if a user is muted then they will be permanently muted until manually unmuted. I need to loop all guilds the bot is in and save its id to a variable, as well as loop all members in that guild and save their id to a variable as well. I have tried .forEach() but I get client.guilds.forEach() is not a function any help is appreciated.

question from:https://stackoverflow.com/questions/66050302/loop-all-values-in-client-guilds-then-loop-all-members-in-each-guild

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

1 Answer

Try

let guildsID = [];
client.guilds.forEach(guild => {
    guildsID.push(guild.id)
});

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