- Install NodeJS here
- Create a non-important alternative Discord Account and save ID somewhere
- Install DiscordJ-Selfbot-v13 Library, open cmd.exe :
npm install discord.js-selfbot-v13
- Create new file,
index.js :
const { Client } = require('discord.js-selfbot-v13');
const client = new Client();
client.on('ready', async () => {
console.log(`${client.user.username} is ready!`);
// Function to send the /bump command
const sendBumpCommand = async () => {
const channel = client.channels.cache.get(' THE CHANNEL ID WHERE YOU WANT TO DO /bump ');
if (channel) {
await channel.sendSlash('302050872383242240', 'bump');
console.log('Bump command sent!');
} else {
console.log('Channel not found!');
}
// Calculate next interval with 2h + (1-3 random minutes)
const nextInterval = 7200000 + (Math.floor(Math.random() * 3) + 1) *60000;
setTimeout(sendBumpCommand, nextInterval);
};
// Send the first bump command
sendBumpCommand();
});
// Login to Discord with your app's token
client.login(" YOUR ALTERNATIVE DISCORD ACCOUNT TOKEN ");