Skip to content

Instantly share code, notes, and snippets.

View joshdrumz's full-sized avatar
🎯
Focusing

Josh Arrants joshdrumz

🎯
Focusing
View GitHub Profile
@joshdrumz
joshdrumz / abjDetector.js
Created November 19, 2022 20:47
ABJ Detector Discord Bot
const { Client, Events, GatewayIntentBits } = require('discord.js');
const { token } = require('./config.json');
const client = new Client({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.MessageContent
]
});