Reputation: 55
I tried on googling but all of the errors was "is not a function", that's because i'm using discord.js V12? I can't find it on google, there is less question about this one. This was my code.
var serverArray = client.guilds.array();
for(i = 0; i < serverArray.length; i++) {
console.log("Server ID: " + serverArray[i].id);
}
Upvotes: 4
Views: 10400
Reputation: 331
client.guilds.cache.forEach(guild => {
console.log(`${guild.name} | ${guild.id}`);
})
Upvotes: 8
Reputation: 61
let clientguilds = client.guilds.cache()
console.log(clientguilds.map(g => g.id) || "None")
This should do the trick! It's going to cache all the guilds your bot is in and then it will map the guilds as an array. We then get the id of each guild or, if it's not in any guilds "none".
Upvotes: 1