Last active
November 13, 2022 12:49
-
-
Save Sv443/1abfd269d15006a8689470cc14946d1b to your computer and use it in GitHub Desktop.
Discord.js - Get all invites from all your bot's guilds - only works with Discord.js v11 or lower!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// only works with Discord.js v11 or lower! | |
const Discord = require("discord.js"); | |
const dev_ids = ["YOUR_ID(s)_HERE"]; // an array of IDs of the bot's developers - only these people will be able to execute this command | |
// Note: this snippet requires the variables "client" and "message" to work, these need to be provided by your script | |
var allowedToUse = false; | |
dev_ids.forEach(id => { | |
if(message.author.id == id) | |
allowedToUse = true; | |
}); | |
if(allowedToUse) { | |
let invites = ["ignore me"], ct = 0; | |
client.guilds.forEach(g => { | |
g.fetchInvites().then(guildInvites => { | |
invites[invites.length + 1] = (g + " - `Invites: " + guildInvites.array().join(", ") + "`"); | |
ct++; | |
if(ct >= client.guilds.size) { | |
invites.forEach((invite, i) => { | |
if(invite == undefined) | |
invites.splice(i, 1); | |
}); | |
invites.shift(); | |
invites.forEach((invite, i) => invites[i] = "- " + invite); | |
invites = invites.join("\n\n"); | |
let embed = new Discord.RichEmbed() | |
.setTitle("All Invites:") | |
.setDescription(invites); | |
message.channel.send(embed); | |
} | |
}).catch(err => { | |
ct++; | |
}); | |
}); | |
} | |
else { | |
message.reply("this command can only be used by a developer."); | |
} |
im confused what do i say to get the invites like whats the command sorry im new to coding
Same , i don't know how to use it
if(message.author.id == id) this is the commad
There is no command, this is the raw code that returns all invites. How you trigger it is up to you. It is recommended to have it in the callback of the client.on("message")
method. This snippet broke in the last couple of Discord.js versions so you'll need an older version of Discord.js for this to work.
its saying client is not defined
@TajuModding like line 7 says, you need to provide the variables yourself
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Same , i don't know how to use it