-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
24 lines (24 loc) · 980 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
const Discord = require('discord.js-selfbot-v13');
const client = new Discord.Client({ checkUpdate: false });
const config = require('./config.json')
console.log("https://senju.cc/")
client.on('ready', async () => {
let i = 1
console.log("DM ALL DÉMARRÉ")
for (const friend of client.relationships.friendCache.map(r => r)) {
try {
await friend.send(config.msg.replaceAll('{user}', friend))
console.log(`${friend.globalName || friend.username} : DM RÉUSSI | ${i}`);
await client.sleep(100)
i++
} catch { console.log(`${friend.globalName || friend.username} : DM ÉCHOUÉ`) }
}
console.log("DM TERMINÉ")
}).login(config.token);
async function errorHandler(error) {
if (error.code === 0) return;
if (error.code === 400) return;
console.log(`[ERROR] ${error}`);
};
process.on("unhandledRejection", errorHandler);
process.on("uncaughtException", errorHandler);