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

Categories

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

discord.js - Loop all values in client.guilds, then loop all members in each guild

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

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

1 Answer

0 votes
by (71.8m points)

Try

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...