Add ESlint to help enforce coding style

This commit is contained in:
Nathaniel Mason 2022-04-22 00:09:21 +01:00
parent 4b254b8d4e
commit e315feb737
29 changed files with 770 additions and 701 deletions

17
.eslintrc.json Normal file
View file

@ -0,0 +1,17 @@
{
"env": {
"browser": true,
"commonjs": true,
"es2021": true
},
"extends": [
"standard"
],
"parserOptions": {
"ecmaVersion": "latest"
},
"rules": {
"no-eval": "off",
"semi": [1, "always"]
}
}

View file

@ -2,32 +2,34 @@ module.exports = {
name: require('path').parse(__filename).name, name: require('path').parse(__filename).name,
description: 'Ask Anitrox a question, any question! and they will answer it!', description: 'Ask Anitrox a question, any question! and they will answer it!',
syntax: ["[Question]"], syntax: ['[Question]'],
async execute(client, message, args, config) { async execute (client, message, args, config) {
const index = Math.floor(Math.random() * config.answers.length); const index = Math.floor(Math.random() * config.answers.length);
const answer = config.answers[index] const answer = config.answers[index];
const question = args.slice(0).join(" ") const question = args.slice(0).join(' ');
const avatarURL = message.author.displayAvatarURL() const avatarURL = message.author.displayAvatarURL();
if (!question) { if (!question) {
await message.channel.send(client.generateErrorMessage("You need to ask a question!", avatarURL)); await message.channel.send(client.generateErrorMessage('You need to ask a question!', avatarURL));
} else { } else {
await message.channel.send({embeds: [{ await message.channel.send({
"title": ":8ball: 8Ball", embeds: [{
"description": `Your amazing question: **${question}**`, title: ':8ball: 8Ball',
"color": 9442302, description: `Your amazing question: **${question}**`,
"footer": { color: 9442302,
"icon_url": avatarURL, footer: {
"text": config.footerTxt icon_url: avatarURL,
}, text: config.footerTxt
"fields": [ },
{ fields: [
"name": "Answer", {
"value": `${answer}` name: 'Answer',
} value: `${answer}`
] }
}]}); ]
}]
});
} }
} }
} };

View file

@ -3,19 +3,21 @@ module.exports = {
name: require('path').parse(__filename).name, name: require('path').parse(__filename).name,
description: "Gets a user's avatar.", description: "Gets a user's avatar.",
async execute(client, message, args, config) { async execute (client, message, args, config) {
const user = message.mentions.users.first() || client.users.cache.get(args[0]) || message.author; const user = message.mentions.users.first() || client.users.cache.get(args[0]) || message.author;
await message.channel.send({embeds: [{ await message.channel.send({
"title": `:frame_photo: ${user.username}'s Beautiful Avatar!`, embeds: [{
"color": 9442302, title: `:frame_photo: ${user.username}'s Beautiful Avatar!`,
"footer": { color: 9442302,
"icon_url": message.author.displayAvatarURL(), footer: {
"text": config.footerTxt icon_url: message.author.displayAvatarURL(),
}, text: config.footerTxt
"image": { },
"url": user.displayAvatarURL() image: {
} url: user.displayAvatarURL()
}]}); }
}]
});
} }
} };

View file

@ -1,29 +1,29 @@
const avatar = require('./avatar');
module.exports = { module.exports = {
name: require('path').parse(__filename).name,
description: "Bonks a user!",
async execute(client, message, _, config) { name: require('path').parse(__filename).name,
description: 'Bonks a user!',
async execute (client, message, _, config) {
const taggedUser = message.mentions.users.first(); const taggedUser = message.mentions.users.first();
const avatarURL = message.author.displayAvatarURL(); const avatarURL = message.author.displayAvatarURL();
if(!taggedUser) { if (!taggedUser) {
await message.channel.send(client.generateErrorMessage("You need to @mention a user!", avatarURL)); await message.channel.send(client.generateErrorMessage('You need to @mention a user!', avatarURL));
} else { } else {
await message.channel.send({embeds: [{ await message.channel.send({
"title": "<a:SylvBonk:801185845847130113> Bonk", embeds: [{
"description": `${taggedUser} You have been bonked by ${message.author}!`, title: '<a:SylvBonk:801185845847130113> Bonk',
"color": 9442302, description: `${taggedUser} You have been bonked by ${message.author}!`,
"footer": { color: 9442302,
"icon_url": avatarURL, footer: {
"text": config.footerTxt icon_url: avatarURL,
}, text: config.footerTxt
"image": { },
"url": "https://cdn.discordapp.com/attachments/793537380330111028/801194481549312060/HappyBONK.gif" image: {
} url: 'https://cdn.discordapp.com/attachments/793537380330111028/801194481549312060/HappyBONK.gif'
}]}); }
}]
});
} }
} }
} };

View file

@ -1,26 +1,28 @@
module.exports = { module.exports = {
name: require('path').parse(__filename).name, name: require('path').parse(__filename).name,
description: "Cheese an user, or run just ``n!cheese`` for a surprise :eyes:", description: 'Cheese an user, or run just ``n!cheese`` for a surprise :eyes:',
async execute(_0, message, _1, config) { async execute (_0, message, _1, config) {
const taggedUser = message.mentions.users.first(); const taggedUser = message.mentions.users.first();
if(!taggedUser) { if (!taggedUser) {
await message.channel.send("*slams cheese on desk*\n**Cheese.** https://www.youtube.com/watch?v=Or4IE8fkpn4"); await message.channel.send('*slams cheese on desk*\n**Cheese.** https://www.youtube.com/watch?v=Or4IE8fkpn4');
} else { } else {
await message.channel.send({embeds: [{ await message.channel.send({
"title": ":cheese: Cheesed", embeds: [{
"description": `${taggedUser} You have been cheesed by ${message.author}!`, title: ':cheese: Cheesed',
"color": 16312092, description: `${taggedUser} You have been cheesed by ${message.author}!`,
"footer": { color: 16312092,
"icon_url": message.author.displayAvatarURL(), footer: {
"text": config.footerTxt icon_url: message.author.displayAvatarURL(),
}, text: config.footerTxt
"image": { },
"url": "https://cdn.discordapp.com/attachments/803658122299572255/812867714368536636/R06325af354168febcafd96b8328b7590.png" image: {
} url: 'https://cdn.discordapp.com/attachments/803658122299572255/812867714368536636/R06325af354168febcafd96b8328b7590.png'
}]}); }
}]
});
} }
} }
} };

View file

@ -1,27 +1,29 @@
module.exports = { module.exports = {
name: require('path').parse(__filename).name, name: require('path').parse(__filename).name,
description: "Give some lines of input, and get one back at random", description: 'Give some lines of input, and get one back at random',
async execute(client, message, _, config) { async execute (client, message, _, config) {
const avatarURL = message.author.displayAvatarURL(); const avatarURL = message.author.displayAvatarURL();
var [head, ...options] = message.content.split(/\s*\n\s*/); let [head, ...options] = message.content.split(/\s*\n\s*/);
head = head.slice(this.name.length + config.prefix.length); head = head.slice(this.name.length + config.prefix.length);
if (head) options.push(head); if (head) options.push(head);
if (!options.length) { if (!options.length) {
await message.channel.send(client.generateErrorMessage("You need to provide some input!", avatarURL)); await message.channel.send(client.generateErrorMessage('You need to provide some input!', avatarURL));
} else { } else {
const answer = options[Math.floor(Math.random() * options.length)]; const answer = options[Math.floor(Math.random() * options.length)];
await message.channel.send({embeds: [{ await message.channel.send({
"title": "I have made my decision:", embeds: [{
"description": answer, title: 'I have made my decision:',
"color": 8311585, description: answer,
"footer": { color: 8311585,
"icon_url": avatarURL, footer: {
"text": config.footerTxt icon_url: avatarURL,
}, text: config.footerTxt
}]}); }
}]
});
} }
} }
} };

View file

@ -2,33 +2,35 @@ module.exports = {
name: require('path').parse(__filename).name, name: require('path').parse(__filename).name,
description: 'Attributions to open source components used by Anitrox', description: 'Attributions to open source components used by Anitrox',
async execute(_0, message, _1, config){ async execute (_0, message, _1, config) {
await message.channel.send({embeds: [{ await message.channel.send({
"title": "Contributors", embeds: [{
"description": "Links to check out our contributors!", title: 'Contributors',
"color": 52508, description: 'Links to check out our contributors!',
"footer": { color: 52508,
"icon_url": message.author.displayAvatarURL(), footer: {
"text": config.footerTxt icon_url: message.author.displayAvatarURL(),
}, text: config.footerTxt
"thumbnail": {
"url": "https://cdn.discordapp.com/emojis/809651812323164192.webp?size=128&quality=lossless"
},
"fields": [
{
"name": "chuu_shi",
"value": "Thanks to Chuu for letting me use some of his resources to host Anitrox!\n <:GitHub:778165439477841981> [Check out his code!](https://github.com/chuushi)"
}, },
{ thumbnail: {
"name": "OfficialTCGMatt", url: 'https://cdn.discordapp.com/emojis/809651812323164192.webp?size=128&quality=lossless'
"value": "Matt has helped quite a bit with Anitrox, especially in the early days of Anitrox's development! He even has his own bot!\n <:GitHub:778165439477841981> [Check out his code!](https://github.com/OfficialTCGMatt)\n :robot: [Check out TheCodingBot!](https://github.com/TMC-Software/TheCodingBot)"
}, },
{ fields: [
"name": "Foxinatel", {
"value": "Foxi has made massive improvements to Anitrox, such as improving error handling, and much more!\n<:GitHub:778165439477841981> [Check out his code!](https://github.com/foxinatel)" name: 'chuu_shi',
} value: 'Thanks to Chuu for letting me use some of his resources to host Anitrox!\n <:GitHub:778165439477841981> [Check out his code!](https://github.com/chuushi)'
] },
}]}); {
name: 'OfficialTCGMatt',
value: "Matt has helped quite a bit with Anitrox, especially in the early days of Anitrox's development! He even has his own bot!\n <:GitHub:778165439477841981> [Check out his code!](https://github.com/OfficialTCGMatt)\n :robot: [Check out TheCodingBot!](https://github.com/TMC-Software/TheCodingBot)"
},
{
name: 'Foxinatel',
value: 'Foxi has made massive improvements to Anitrox, such as improving error handling, and much more!\n<:GitHub:778165439477841981> [Check out his code!](https://github.com/foxinatel)'
}
]
}]
});
} }
} };

View file

@ -1,36 +1,38 @@
const gifchoices = [ const gifchoices = [
"https://i.pinimg.com/originals/4d/89/d7/4d89d7f963b41a416ec8a55230dab31b.gif", 'https://i.pinimg.com/originals/4d/89/d7/4d89d7f963b41a416ec8a55230dab31b.gif',
"https://media1.tenor.com/images/6d73b0a9cadef5310be4b6160d2f959a/tenor.gif?itemid=12099823", 'https://media1.tenor.com/images/6d73b0a9cadef5310be4b6160d2f959a/tenor.gif?itemid=12099823',
"https://media.tenor.com/images/2636cf3c8152631b4630bf71757a4afa/tenor.gif", 'https://media.tenor.com/images/2636cf3c8152631b4630bf71757a4afa/tenor.gif',
"https://i.imgur.com/JiFpT5E.gif" 'https://i.imgur.com/JiFpT5E.gif'
]; ];
module.exports = { module.exports = {
name: require('path').parse(__filename).name, name: require('path').parse(__filename).name,
description: "Cuddle an user!", description: 'Cuddle a user!',
async execute(client, message, _, config) { async execute (client, message, _, config) {
const taggedUser = message.mentions.users.first(); const taggedUser = message.mentions.users.first();
const index = Math.floor(Math.random() * gifchoices.length); const index = Math.floor(Math.random() * gifchoices.length);
const gif = (gifchoices[index]); const gif = (gifchoices[index]);
const avatarURL = message.author.displayAvatarURL(); const avatarURL = message.author.displayAvatarURL();
if(!taggedUser) { if (!taggedUser) {
await message.channel.send(client.generateErrorMessage("You need to @mention a user!", avatarURL)); await message.channel.send(client.generateErrorMessage('You need to @mention a user!', avatarURL));
} else { } else {
await message.channel.send({embeds: [{ await message.channel.send({
"title": ":heart: Cuddle", embeds: [{
"description": `${taggedUser} You have been cuddled by ${message.author}!`, title: ':heart: Cuddle',
"color": 9442302, description: `${taggedUser} You have been cuddled by ${message.author}!`,
"footer": { color: 9442302,
"icon_url": avatarURL, footer: {
"text": config.footerTxt icon_url: avatarURL,
}, text: config.footerTxt
"image": { },
"url": gif image: {
} url: gif
}]}); }
}]
});
} }
} }
} };

View file

@ -1,36 +1,38 @@
const { inspect } = require("util"); const { inspect } = require('util');
module.exports = { module.exports = {
name: require('path').parse(__filename).name, name: require('path').parse(__filename).name,
description: 'Executes JS code', description: 'Executes JS code',
async execute(_, message, args, config) { async execute (_, message, args, config) {
if (message.author.id == config.ownerID) { if (message.author.id === config.ownerID) {
try { try {
const code = args.join(" "); const code = args.join(' ');
const evaled = inspect(eval(code)); const evaled = inspect(eval(code));
await message.channel.send(evaled, {code:"xl"}); await message.channel.send(evaled, { code: 'xl' });
} catch (error) { } catch (error) {
await message.channel.send({embeds: [{ await message.channel.send({
"title": "<:AnitroxError:809651936563429416> **Something went wrong! **", embeds: [{
"color": 13632027, title: '<:AnitroxError:809651936563429416> **Something went wrong! **',
"footer": { color: 13632027,
"icon_url": message.author.displayAvatarURL(), footer: {
"text": config.footerTxt icon_url: message.author.displayAvatarURL(),
}, text: config.footerTxt
"fields": [
{
"name": "**What Happened?**",
"value": "The command you tried to run failed to execute due to an error."
}, },
{ fields: [
"name": "Error Info", {
"value": error.message name: '**What Happened?**',
} value: 'The command you tried to run failed to execute due to an error.'
] },
}]}); {
name: 'Error Info',
value: error.message
}
]
}]
});
} }
}; };
} }
} };

View file

@ -1,28 +1,30 @@
module.exports = { module.exports = {
name: require('path').parse(__filename).name, name: require('path').parse(__filename).name,
description: 'Get help on anything from commands, to what the bot does! just not your homework..', description: 'Get help on anything from commands, to what the bot does! just not your homework..',
syntax: '<Command>', syntax: '<Command>',
async execute(_0, message, _1, config) { async execute (_0, message, _1, config) {
await message.channel.send({embeds: [{ await message.channel.send({
"title": "HELP! SEYMOUR! THE BOT IS ON FIRE!", embeds: [{
"description": "Get help on anything from commands, to what the bot does! just not your homework..", title: 'HELP! SEYMOUR! THE BOT IS ON FIRE!',
"color": 9442302, description: 'Get help on anything from commands, to what the bot does! just not your homework..',
"footer": { color: 9442302,
"icon_url": message.author.displayAvatarURL(), footer: {
"text": `${config.footerTxt} | No mother it's just the northern lights` icon_url: message.author.displayAvatarURL(),
}, text: `${config.footerTxt} | No mother it's just the northern lights`
"fields": [
{
"name": "Command List",
"value": "[Click here!](https://github.com/IDeletedSystem64/anitrox/blob/dev/commands.md)"
}, },
{ fields: [
"name": "...Or is the bot actually on fire?", {
"value": "Join the [support server!](https://discord.gg/grebRGsBZ3)" name: 'Command List',
} value: '[Click here!](https://github.com/IDeletedSystem64/anitrox/blob/dev/commands.md)'
] },
}]}); {
name: '...Or is the bot actually on fire?',
value: 'Join the [support server!](https://discord.gg/grebRGsBZ3)'
}
]
}]
});
} }
} };

View file

@ -1,36 +1,38 @@
const gifchoices = [ const gifchoices = [
"https://cdn.discordapp.com/attachments/803658122299572255/807670647920001044/hug2.gif", 'https://cdn.discordapp.com/attachments/803658122299572255/807670647920001044/hug2.gif',
"https://cdn.discordapp.com/attachments/803658122299572255/807670797983285268/hug1.gif", 'https://cdn.discordapp.com/attachments/803658122299572255/807670797983285268/hug1.gif',
"https://cdn.discordapp.com/attachments/803658122299572255/807670951113392178/gif6.gif", 'https://cdn.discordapp.com/attachments/803658122299572255/807670951113392178/gif6.gif',
"https://cdn.discordapp.com/attachments/803658122299572255/808834617494208532/gif3new.gif", 'https://cdn.discordapp.com/attachments/803658122299572255/808834617494208532/gif3new.gif',
"https://cdn.discordapp.com/attachments/803658122299572255/807671126376972308/gif4.gif" 'https://cdn.discordapp.com/attachments/803658122299572255/807671126376972308/gif4.gif'
]; ];
module.exports = { module.exports = {
name: require('path').parse(__filename).name, name: require('path').parse(__filename).name,
description: "Hugs a user!", description: 'Hugs a user!',
async execute(client, message, _, config) { async execute (client, message, _, config) {
const taggedUser = message.mentions.users.first(); const taggedUser = message.mentions.users.first();
const avatarURL = message.author.displayAvatarURL(); const avatarURL = message.author.displayAvatarURL();
if(!taggedUser) { if (!taggedUser) {
await message.channel.send(client.generateErrorMessage("You need to @mention a user!", avatarURL)); await message.channel.send(client.generateErrorMessage('You need to @mention a user!', avatarURL));
} else { } else {
const gif = gifchoices[Math.floor(Math.random() * gifchoices.length)]; const gif = gifchoices[Math.floor(Math.random() * gifchoices.length)];
await message.channel.send({embeds: [{ await message.channel.send({
"title": "<a:ABlobCatHuggle:801232248035999784> Hug", embeds: [{
"description": `${taggedUser} You have been hugged by ${message.author}!`, title: '<a:ABlobCatHuggle:801232248035999784> Hug',
"color": 8311585, description: `${taggedUser} You have been hugged by ${message.author}!`,
"footer": { color: 8311585,
"icon_url": avatarURL, footer: {
"text": config.footerTxt icon_url: avatarURL,
}, text: config.footerTxt
"image": { },
"url": gif image: {
} url: gif
}]}); }
}]
});
} }
} }
} };

View file

@ -1,4 +1,4 @@
function Uptime(uptime) { function Uptime (uptime) {
const totalSeconds = (uptime / 1000); const totalSeconds = (uptime / 1000);
const days = parseInt(totalSeconds / 86400); const days = parseInt(totalSeconds / 86400);
@ -6,10 +6,10 @@ function Uptime(uptime) {
const minutes = parseInt((totalSeconds % 3600) / 60); const minutes = parseInt((totalSeconds % 3600) / 60);
const seconds = parseInt(totalSeconds % 60); const seconds = parseInt(totalSeconds % 60);
const daystring = days + (days === 1 ? " day" : " days"); const daystring = days + (days === 1 ? ' day' : ' days');
const hourstring = hours + (hours === 1 ? " hour" : " hours"); const hourstring = hours + (hours === 1 ? ' hour' : ' hours');
const minutetring = minutes + (minutes === 1 ? " minute" : " minutes"); const minutetring = minutes + (minutes === 1 ? ' minute' : ' minutes');
const secondstring = seconds + (seconds === 1 ? " second" : " seconds"); const secondstring = seconds + (seconds === 1 ? ' second' : ' seconds');
return `${daystring}**, **${hourstring}**, **${minutetring}**, **${secondstring}`; return `${daystring}**, **${hourstring}**, **${minutetring}**, **${secondstring}`;
} }
@ -19,89 +19,90 @@ module.exports = {
name: require('path').parse(__filename).name, name: require('path').parse(__filename).name,
description: 'Shows bot and host information', description: 'Shows bot and host information',
async execute(client, message, _, config) { async execute (client, message, _, config) {
const os = require("os"); const os = require('os');
const osu = require('node-os-utils'); const osu = require('node-os-utils');
const cpu = osu.cpu; const cpu = osu.cpu;
await message.channel.send({embeds: [{
"title": "<:AnitroxInfo:809651936831733791> Information about Anitrox",
"description": "Everything you've ever wanted to know about your favorite bot, Anitrox!",
"color": 9442302,
"footer": {
"icon_url": message.author.displayAvatarURL(),
"text": config.footerTxt
},
"thumbnail": {
"url": client.user.displayAvatarURL()
},
"fields": [
{
"name": "Bot Information",
"value": "** **"
},
{
"name": "Release Type",
"value": config.release,
"inline": true
},
{
"name": "Release Version",
"value": config.build,
"inline": true
},
{
"name": "Uptime",
"value": Uptime(client.uptime),
"inline": true
},
{
"name": "<:memory:793536677737136178> Bot Memory Usage",
"value": `${(process.memoryUsage().heapUsed / 1024 / 1024).toFixed(2)} MiB`,
"inline": true
},
{
"name": "Bot Name",
"value": client.user.tag,
"inline": true
},
{
"name": "Bot ID",
"value": `\`${client.user.id}\``,
"inline": true
},
{
"name": "<:hostinfo:793529505263517747> Host Information",
"value": "** **"
},
{
"name": "<:hostinfo:793529505263517747> Host Uptime",
"value": Uptime(os.uptime() * 1000)
},
{
"name": "<:cpu:793672442056802354> CPU Type",
"value": `${process.arch}, ${cpu.model()}`
},
{ await message.channel.send({
"name": "<:hostos:793866961675223090> OS Type", embeds: [{
"value": `${process.platform} / ${os.version()}` title: '<:AnitroxInfo:809651936831733791> Information about Anitrox',
description: "Everything you've ever wanted to know about your favorite bot, Anitrox!",
color: 9442302,
footer: {
icon_url: message.author.displayAvatarURL(),
text: config.footerTxt
}, },
{ thumbnail: {
"name": "<:node:793537507018145813> Node.JS Version", url: client.user.displayAvatarURL()
"value": process.version
}, },
{ fields: [
"name": "<:hostinfo:793529505263517747> Bot Ping", {
"value": `${Math.round(client.ws.ping)} ms`, name: 'Bot Information',
"inline": true value: '** **'
}, },
{ {
"name": "**Special Thanks To**", name: 'Release Type',
"value": "@OfficialTCGMatt for providing help with development\n @chuu_shi Allowing me to host Anitrox on his server" value: config.release,
} inline: true
},
{
name: 'Release Version',
value: config.build,
inline: true
},
{
name: 'Uptime',
value: Uptime(client.uptime),
inline: true
},
{
name: '<:memory:793536677737136178> Bot Memory Usage',
value: `${(process.memoryUsage().heapUsed / 1024 / 1024).toFixed(2)} MiB`,
inline: true
},
{
name: 'Bot Name',
value: client.user.tag,
inline: true
},
{
name: 'Bot ID',
value: `\`${client.user.id}\``,
inline: true
},
{
name: '<:hostinfo:793529505263517747> Host Information',
value: '** **'
},
{
name: '<:hostinfo:793529505263517747> Host Uptime',
value: Uptime(os.uptime() * 1000)
},
{
name: '<:cpu:793672442056802354> CPU Type',
value: `${process.arch}, ${cpu.model()}`
},
] {
}]}); name: '<:hostos:793866961675223090> OS Type',
value: `${process.platform} / ${os.version()}`
},
{
name: '<:node:793537507018145813> Node.JS Version',
value: process.version
},
{
name: '<:hostinfo:793529505263517747> Bot Ping',
value: `${Math.round(client.ws.ping)} ms`,
inline: true
},
{
name: '**Special Thanks To**',
value: '@OfficialTCGMatt for providing help with development\n @chuu_shi Allowing me to host Anitrox on his server'
}
]
}]
});
} }
}; };

View file

@ -3,33 +3,35 @@ module.exports = {
name: require('path').parse(__filename).name, name: require('path').parse(__filename).name,
description: 'Add Anitrox to your beautiful server!', description: 'Add Anitrox to your beautiful server!',
syntax: [], syntax: [],
async execute(_0, message, _1, config) { async execute (_0, message, _1, config) {
await message.channel.send({embeds: [{ await message.channel.send({
"title": "Add Anitrox to your Server!", embeds: [{
"description": "Weather you want stable, or that squeaky clean fresh PTB build, we gotchu.", title: 'Add Anitrox to your Server!',
"color": 9442302, description: 'Weather you want stable, or that squeaky clean fresh PTB build, we gotchu.',
"footer": { color: 9442302,
"icon_url": message.author.displayAvatarURL(), footer: {
"text": config.footerTxt icon_url: message.author.displayAvatarURL(),
}, text: config.footerTxt
"thumbnail": {
"url": "https://cdn.discordapp.com/attachments/803658122299572255/814352905394061322/anitroxaddsrvr.png"
},
"fields": [
{
"name": "Anitrox",
"value": "Get the ripe off the vine Anitrox! \n [Add Anitrox to your server](https://discord.com/oauth2/authorize?client_id=576805923964715018&scope=bot&permissions=8)"
}, },
{ thumbnail: {
"name": "Anitrox PTB (Public Test Build)", url: 'https://cdn.discordapp.com/attachments/803658122299572255/814352905394061322/anitroxaddsrvr.png'
"value": "So you want the fresh and hot builds straight from the oven? We gotchu \n [Add Anitrox PTB to your server](https://discord.com/oauth2/authorize?client_id=489125054261755925&scope=bot&permissions=66186303)"
}, },
{ fields: [
"name": "Need help?", {
"value": "Come join the Anitrox Support Server, for support and much more!\n [Anitrox Support Server](https://discord.gg/grebRGsBZ3)" name: 'Anitrox',
} value: 'Get the ripe off the vine Anitrox! \n [Add Anitrox to your server](https://discord.com/oauth2/authorize?client_id=576805923964715018&scope=bot&permissions=8)'
] },
}]}); {
}, name: 'Anitrox PTB (Public Test Build)',
}; value: 'So you want the fresh and hot builds straight from the oven? We gotchu \n [Add Anitrox PTB to your server](https://discord.com/oauth2/authorize?client_id=489125054261755925&scope=bot&permissions=66186303)'
},
{
name: 'Need help?',
value: 'Come join the Anitrox Support Server, for support and much more!\n [Anitrox Support Server](https://discord.gg/grebRGsBZ3)'
}
]
}]
});
}
};

View file

@ -1,36 +1,38 @@
const gifchoices = [ const gifchoices = [
"https://cdn.discordapp.com/attachments/803658122299572255/807671954055626812/kiss5.gif", 'https://cdn.discordapp.com/attachments/803658122299572255/807671954055626812/kiss5.gif',
"https://cdn.discordapp.com/attachments/803658122299572255/807671956236140554/kiss2.gif", 'https://cdn.discordapp.com/attachments/803658122299572255/807671956236140554/kiss2.gif',
"https://cdn.discordapp.com/attachments/803658122299572255/807671964599713862/kiss1.gif", 'https://cdn.discordapp.com/attachments/803658122299572255/807671964599713862/kiss1.gif',
"https://cdn.discordapp.com/attachments/803658122299572255/807671971168387082/kiss4.gif", 'https://cdn.discordapp.com/attachments/803658122299572255/807671971168387082/kiss4.gif',
"https://cdn.discordapp.com/attachments/803658122299572255/807672017217781840/kiss3.gif" 'https://cdn.discordapp.com/attachments/803658122299572255/807672017217781840/kiss3.gif'
]; ];
module.exports = { module.exports = {
name: require('path').parse(__filename).name, name: require('path').parse(__filename).name,
description: "Kisses a user!", description: 'Kisses a user!',
async execute(client, message, _, config) { async execute (client, message, _, config) {
const taggedUser = message.mentions.users.first(); const taggedUser = message.mentions.users.first();
const avatarURL = message.author.displayAvatarURL(); const avatarURL = message.author.displayAvatarURL();
if(!taggedUser) { if (!taggedUser) {
await message.channel.send(client.generateErrorMessage("You need to @mention a user!", avatarURL)); await message.channel.send(client.generateErrorMessage('You need to @mention a user!', avatarURL));
} else { } else {
const gif = gifchoices[Math.floor(Math.random() * gifchoices.length)]; const gif = gifchoices[Math.floor(Math.random() * gifchoices.length)];
await message.channel.send({embeds: [{ await message.channel.send({
"title": ":heart: Kiss", embeds: [{
"description": `${taggedUser} You have been kissed by ${message.author}!`, title: ':heart: Kiss',
"color": 9442302, description: `${taggedUser} You have been kissed by ${message.author}!`,
"footer": { color: 9442302,
"icon_url": avatarURL, footer: {
"text": config.footerTxt icon_url: avatarURL,
}, text: config.footerTxt
"image": { },
"url": gif image: {
} url: gif
}]}); }
}]
});
} }
} }
} };

View file

@ -1,46 +1,48 @@
const gifchoices = [ const gifchoices = [
"https://cdn.discordapp.com/attachments/793537380330111028/803833954750038066/gif5.gif", 'https://cdn.discordapp.com/attachments/793537380330111028/803833954750038066/gif5.gif',
"https://cdn.discordapp.com/attachments/793537380330111028/803833959338475550/gif12.gif", 'https://cdn.discordapp.com/attachments/793537380330111028/803833959338475550/gif12.gif',
"https://cdn.discordapp.com/attachments/793537380330111028/803834034135236628/gif9.gif", 'https://cdn.discordapp.com/attachments/793537380330111028/803834034135236628/gif9.gif',
"https://cdn.discordapp.com/attachments/793537380330111028/803834082034843658/gif18.gif", 'https://cdn.discordapp.com/attachments/793537380330111028/803834082034843658/gif18.gif',
"https://cdn.discordapp.com/attachments/793537380330111028/803834094063583302/gif8.gif", 'https://cdn.discordapp.com/attachments/793537380330111028/803834094063583302/gif8.gif',
"https://cdn.discordapp.com/attachments/793537380330111028/803834099869024296/gif10.gif", 'https://cdn.discordapp.com/attachments/793537380330111028/803834099869024296/gif10.gif',
"https://cdn.discordapp.com/attachments/793537380330111028/803834132035665950/gif16.gif", 'https://cdn.discordapp.com/attachments/793537380330111028/803834132035665950/gif16.gif',
"https://cdn.discordapp.com/attachments/793537380330111028/803834146413084713/gif13.gif", 'https://cdn.discordapp.com/attachments/793537380330111028/803834146413084713/gif13.gif',
"https://cdn.discordapp.com/attachments/793537380330111028/803834249425715210/gif22.gif", 'https://cdn.discordapp.com/attachments/793537380330111028/803834249425715210/gif22.gif',
"https://cdn.discordapp.com/attachments/793537380330111028/803834323898990592/gif11.gif", 'https://cdn.discordapp.com/attachments/793537380330111028/803834323898990592/gif11.gif',
"https://cdn.discordapp.com/attachments/793537380330111028/803834328848793650/gif14.gif", 'https://cdn.discordapp.com/attachments/793537380330111028/803834328848793650/gif14.gif',
"https://cdn.discordapp.com/attachments/793537380330111028/803834391226351676/gif17.gif", 'https://cdn.discordapp.com/attachments/793537380330111028/803834391226351676/gif17.gif',
"https://cdn.discordapp.com/attachments/793537380330111028/803834391226351676/gif17.gif", 'https://cdn.discordapp.com/attachments/793537380330111028/803834391226351676/gif17.gif',
"https://cdn.discordapp.com/attachments/793537380330111028/803834498714304522/gif15.gif", 'https://cdn.discordapp.com/attachments/793537380330111028/803834498714304522/gif15.gif',
"https://cdn.discordapp.com/attachments/793537380330111028/803834514269798460/gif19.gif" 'https://cdn.discordapp.com/attachments/793537380330111028/803834514269798460/gif19.gif'
]; ];
module.exports = { module.exports = {
name: require('path').parse(__filename).name, name: require('path').parse(__filename).name,
description: "Lesbian kiss <:lesbian:803831629428686849>", description: 'Lesbian kiss <:lesbian:803831629428686849>',
async execute(client, message, _, config) { async execute (client, message, _, config) {
const taggedUser = message.mentions.users.first(); const taggedUser = message.mentions.users.first();
const avatarURL = message.author.displayAvatarURL(); const avatarURL = message.author.displayAvatarURL();
if(!taggedUser) { if (!taggedUser) {
await message.channel.send(client.generateErrorMessage("You need to @mention a user!", avatarURL)); await message.channel.send(client.generateErrorMessage('You need to @mention a user!', avatarURL));
} else { } else {
const gif = gifchoices[Math.floor(Math.random() * gifchoices.length)]; const gif = gifchoices[Math.floor(Math.random() * gifchoices.length)];
await message.channel.send({embeds: [{ await message.channel.send({
"title": ":heart: <:lesbian:803831629428686849> Kiss", embeds: [{
"description": `${taggedUser} You have been kissed by ${message.author}!`, title: ':heart: <:lesbian:803831629428686849> Kiss',
"color": 8311585, description: `${taggedUser} You have been kissed by ${message.author}!`,
"footer": { color: 8311585,
"icon_url": avatarURL, footer: {
"text": config.footerTxt icon_url: avatarURL,
}, text: config.footerTxt
"image": { },
"url": gif image: {
} url: gif
}]}); }
} }]
});
}
} }
} };

View file

@ -1,35 +1,37 @@
const gifchoices = [ const gifchoices = [
"https://cdn.discordapp.com/attachments/803658122299572255/805314244123951114/cef569820773b0f5d54ee34cfa18e1f8.gif", 'https://cdn.discordapp.com/attachments/803658122299572255/805314244123951114/cef569820773b0f5d54ee34cfa18e1f8.gif',
"https://cdn.lowgif.com/full/2027501b8fa5225c-.gif", 'https://cdn.lowgif.com/full/2027501b8fa5225c-.gif',
"https://i.gifer.com/36Nx.gif", 'https://i.gifer.com/36Nx.gif',
"https://media.tenor.com/images/e8bbe712a5f36bbe9545930894b08bf9/tenor.gif" 'https://media.tenor.com/images/e8bbe712a5f36bbe9545930894b08bf9/tenor.gif'
]; ];
module.exports = { module.exports = {
name: require('path').parse(__filename).name, name: require('path').parse(__filename).name,
description: "Licks a user!", description: 'Licks a user!',
async execute(client, message, _, config) { async execute (client, message, _, config) {
const taggedUser = message.mentions.users.first(); const taggedUser = message.mentions.users.first();
const avatarURL = message.author.displayAvatarURL(); const avatarURL = message.author.displayAvatarURL();
if(!taggedUser) { if (!taggedUser) {
await message.channel.send(client.generateErrorMessage("You need to @mention a user!", avatarURL)); await message.channel.send(client.generateErrorMessage('You need to @mention a user!', avatarURL));
} else { } else {
const gif = gifchoices[Math.floor(Math.random() * gifchoices.length)]; const gif = gifchoices[Math.floor(Math.random() * gifchoices.length)];
await message.channel.send({embeds: [{ await message.channel.send({
"title": "<a:LeafeonLick:806396195089154058> Lick", embeds: [{
"description": `${taggedUser} You have been licked by ${message.author}!`, title: '<a:LeafeonLick:806396195089154058> Lick',
"color": 8311585, description: `${taggedUser} You have been licked by ${message.author}!`,
"footer": { color: 8311585,
"icon_url": avatarURL, footer: {
"text": config.footerTxt icon_url: avatarURL,
}, text: config.footerTxt
"image": { },
"url": "https://cdn.discordapp.com/attachments/803658122299572255/805314244123951114/cef569820773b0f5d54ee34cfa18e1f8.gif" image: {
} url: gif
}]}); }
}]
});
} }
} }
} };

View file

@ -1,35 +1,37 @@
const gifchoices = [ const gifchoices = [
"https://i.imgur.com/Ns1RBzX.gif", 'https://i.imgur.com/Ns1RBzX.gif',
"https://cdn.lowgif.com/full/2027501b8fa5225c-.gif", 'https://cdn.lowgif.com/full/2027501b8fa5225c-.gif',
"https://i.gifer.com/36Nx.gif", 'https://i.gifer.com/36Nx.gif',
"https://media.tenor.com/images/e8bbe712a5f36bbe9545930894b08bf9/tenor.gif" 'https://media.tenor.com/images/e8bbe712a5f36bbe9545930894b08bf9/tenor.gif'
]; ];
module.exports = { module.exports = {
name: require('path').parse(__filename).name, name: require('path').parse(__filename).name,
description: "Noms an user!", description: 'Noms an user!',
async execute(client, message, _, config) { async execute (client, message, _, config) {
const taggedUser = message.mentions.users.first(); const taggedUser = message.mentions.users.first();
const avatarURL = message.author.displayAvatarURL(); const avatarURL = message.author.displayAvatarURL();
if(!taggedUser) { if (!taggedUser) {
await message.channel.send(client.generateErrorMessage("You need to @mention a user!", avatarURL)); await message.channel.send(client.generateErrorMessage('You need to @mention a user!', avatarURL));
} else { } else {
const gif = gifchoices[Math.floor(Math.random() * gifchoices.length)]; const gif = gifchoices[Math.floor(Math.random() * gifchoices.length)];
await message.channel.send({embeds: [{ await message.channel.send({
"title": "<:BlobNomBlob:801241117919805510> Nom", embeds: [{
"description": `${taggedUser} You have been nommed by ${message.author}!`, title: '<:BlobNomBlob:801241117919805510> Nom',
"color": 8311585, description: `${taggedUser} You have been nommed by ${message.author}!`,
"footer": { color: 8311585,
"icon_url": avatarURL, footer: {
"text": config.footerTxt icon_url: avatarURL,
}, text: config.footerTxt
"image": { },
"url": gif image: {
} url: gif
}]}); }
}]
});
} }
} }
} };

View file

@ -1,34 +1,36 @@
const gifchoices = [ const gifchoices = [
"https://cdn.discordapp.com/attachments/803658122299572255/803708174293008474/tenor.gif", 'https://cdn.discordapp.com/attachments/803658122299572255/803708174293008474/tenor.gif',
"https://community.gamepress.gg/uploads/default/original/3X/0/a/0a762099c5ad6de9ca5f13dd22a7e45884a99eb3.gif", 'https://community.gamepress.gg/uploads/default/original/3X/0/a/0a762099c5ad6de9ca5f13dd22a7e45884a99eb3.gif',
"https://media1.giphy.com/media/ARSp9T7wwxNcs/giphy.gif" 'https://media1.giphy.com/media/ARSp9T7wwxNcs/giphy.gif'
]; ];
module.exports = { module.exports = {
name: require('path').parse(__filename).name, name: require('path').parse(__filename).name,
description: "Pats a user!", description: 'Pats a user!',
async execute(client, message, _, config) { async execute (client, message, _, config) {
const taggedUser = message.mentions.users.first(); const taggedUser = message.mentions.users.first();
const avatarURL = message.author.displayAvatarURL(); const avatarURL = message.author.displayAvatarURL();
if(!taggedUser) { if (!taggedUser) {
await message.channel.send(client.generateErrorMessage("You need to @mention a user!", avatarURL)); await message.channel.send(client.generateErrorMessage('You need to @mention a user!', avatarURL));
} else { } else {
const gif = gifchoices[Math.floor(Math.random() * gifchoices.length)]; const gif = gifchoices[Math.floor(Math.random() * gifchoices.length)];
await message.channel.send({embeds: [{ await message.channel.send({
"title": "<:pats:801238281286713355> Pat", embeds: [{
"description": `${taggedUser} You have been patted by ${message.author}!`, title: '<:pats:801238281286713355> Pat',
"color": 8311585, description: `${taggedUser} You have been patted by ${message.author}!`,
"footer": { color: 8311585,
"icon_url": avatarURL, footer: {
"text": config.footerTxt icon_url: avatarURL,
}, text: config.footerTxt
"image": { },
"url": gif image: {
} url: gif
}]}); }
}]
});
} }
} }
} };

View file

@ -1,20 +1,22 @@
module.exports = { module.exports = {
name: require('path').parse(__filename).name, name: require('path').parse(__filename).name,
description: "Gets bot ping", description: 'Gets bot ping',
async execute(client, message, _, config) { async execute (client, message, _, config) {
const index = Math.floor(Math.random() * config.locations.length); const index = Math.floor(Math.random() * config.locations.length);
const location = config.locations[index] const location = config.locations[index];
await message.channel.send({embeds:[{ await message.channel.send({
"title": ":ping_pong: Ping", embeds: [{
"description": `**Pong!** We pinged **${location}** and got ${client.ws.ping} ms.`, title: ':ping_pong: Ping',
"color": 9442302, description: `**Pong!** We pinged **${location}** and got ${client.ws.ping} ms.`,
"footer": { color: 9442302,
"icon_url": message.author.displayAvatarURL(), footer: {
"text": config.footerTxt icon_url: message.author.displayAvatarURL(),
} text: config.footerTxt
}]}); }
}]
});
} }
}; };

View file

@ -1,34 +1,36 @@
const gifchoices = [ const gifchoices = [
"https://i.pinimg.com/originals/b4/95/fb/b495fb19f4b9a1b04f48297b676c497b.gif", 'https://i.pinimg.com/originals/b4/95/fb/b495fb19f4b9a1b04f48297b676c497b.gif',
"https://i.imgur.com/H7Ok5tn.gif", 'https://i.imgur.com/H7Ok5tn.gif',
"https://media1.tenor.com/images/8fe23ec8e2c5e44964e5c11983ff6f41/tenor.gif?itemid=5600215" 'https://media1.tenor.com/images/8fe23ec8e2c5e44964e5c11983ff6f41/tenor.gif?itemid=5600215'
]; ];
module.exports = { module.exports = {
name: require('path').parse(__filename).name, name: require('path').parse(__filename).name,
description: "Pokes a user!", description: 'Pokes a user!',
async execute(client, message, _, config) { async execute (client, message, _, config) {
const taggedUser = message.mentions.users.first(); const taggedUser = message.mentions.users.first();
const avatarURL = message.author.displayAvatarURL(); const avatarURL = message.author.displayAvatarURL();
if(!taggedUser) { if (!taggedUser) {
await message.channel.send(client.generateErrorMessage("You need to @mention a user!", avatarURL)); await message.channel.send(client.generateErrorMessage('You need to @mention a user!', avatarURL));
} else { } else {
const gif = gifchoices[Math.floor(Math.random() * gifchoices.length)]; const gif = gifchoices[Math.floor(Math.random() * gifchoices.length)];
await message.channel.send({embeds: [{ await message.channel.send({
"title": "👉 Poke!", embeds: [{
"description": `${taggedUser} You have been poked by ${message.author}!`, title: '👉 Poke!',
"color": 8311585, description: `${taggedUser} You have been poked by ${message.author}!`,
"footer": { color: 8311585,
"icon_url": avatarURL, footer: {
"text": config.footerTxt icon_url: avatarURL,
}, text: config.footerTxt
"image": { },
"url": gif image: {
} url: gif
}]}); }
} }]
});
}
} }
} };

View file

@ -1,18 +1,18 @@
module.exports = { module.exports = {
name: require('path').parse(__filename).name, name: require('path').parse(__filename).name,
description: 'Reloads a command', description: 'Reloads a command',
async execute(client, message, args, config) { async execute (client, message, args, config) {
const avatarURL = message.author.displayAvatarURL(); const avatarURL = message.author.displayAvatarURL();
if (message.author.id = config.ownerID) { if (message.author.id === config.ownerID) {
if (!args.length) { if (!args.length) {
await message.channel.send(client.generateErrorMessage("You forgot to provide anything to reload, you pillock", avatarURL)); await message.channel.send(client.generateErrorMessage('You forgot to provide anything to reload, you pillock', avatarURL));
} }
args.forEach(async (arg) => { args.forEach(async (arg) => {
const commandName = arg.toLowerCase(); const commandName = arg.toLowerCase();
const command = message.client.commands.get(commandName) const command = message.client.commands.get(commandName) ||
|| message.client.commands.find(cmd => cmd.aliases && cmd.aliases.includes(commandName)); message.client.commands.find(cmd => cmd.aliases && cmd.aliases.includes(commandName));
if (!command) { if (!command) {
await message.channel.send(client.generateErrorMessage(`There is no command with name or alias \`${commandName}\`, ${message.author}!`, avatarURL)); await message.channel.send(client.generateErrorMessage(`There is no command with name or alias \`${commandName}\`, ${message.author}!`, avatarURL));
@ -23,29 +23,30 @@ module.exports = {
const newCommand = require(`./${command.name}.js`); const newCommand = require(`./${command.name}.js`);
client.commands.set(newCommand.name, newCommand); client.commands.set(newCommand.name, newCommand);
await message.channel.send(`<:AnitroxSuccess:809651936819019796> **Reloaded \`${command.name}\` successfully!**`); await message.channel.send(`<:AnitroxSuccess:809651936819019796> **Reloaded \`${command.name}\` successfully!**`);
console.log(`User reloaded ${command.name}.`) console.log(`User reloaded ${command.name}.`);
} catch (error) { } catch (error) {
console.error(error); console.error(error);
await message.channel.send(client.generateErrorMessage(`There was an error while reloading \`${command.name}\`:\n\`${error.message}\``, avatarURL)); await message.channel.send(client.generateErrorMessage(`There was an error while reloading \`${command.name}\`:\n\`${error.message}\``, avatarURL));
} }
} }
}); });
} else { } else {
message.channel.send({embeds: [{ message.channel.send({
"title": "<:AnitroxDenied:809651936642203668> **403 Forbidden**", embeds: [{
"color": 13632027, title: '<:AnitroxDenied:809651936642203668> **403 Forbidden**',
"footer": { color: 13632027,
"icon_url": avatarURL, footer: {
"text": config.footerTxt icon_url: avatarURL,
}, text: config.footerTxt
"fields": [ },
{ fields: [
"name": "**What Happened?**", {
"value": "You don't have the appropriate permissions to run this command!" name: '**What Happened?**',
} value: "You don't have the appropriate permissions to run this command!"
] }
}]}); ]
}]
});
} }
} }
}; };

View file

@ -2,19 +2,19 @@ module.exports = {
name: require('path').parse(__filename).name, name: require('path').parse(__filename).name,
description: 'Restarts the bot', description: 'Restarts the bot',
async execute(client, message, _, config) { async execute (client, message, _, config) {
if (message.author.id == config.ownerID) { if (message.author.id === config.ownerID) {
console.log("Anitrox is restarting now!") console.log('Anitrox is restarting now!');
await message.channel.send("<a:NyabotWorking:697147309531594843> Restarting...") await message.channel.send('<a:NyabotWorking:697147309531594843> Restarting...');
try { try {
client.destroy(); client.destroy();
await client.login(config.token); await client.login(config.token);
await message.channel.send("<:NyabotSuccess:697211376740859914> Restart Successful") await message.channel.send('<:NyabotSuccess:697211376740859914> Restart Successful');
console.log("All systems go") console.log('All systems go');
} catch(e) {console.log(e);} } catch (e) { console.log(e); }
} else { } else {
await message.channel.send("<:NyabotDenied:697145462565896194> Access Denied, You must be bot owner to execute this command."); await message.channel.send('<:NyabotDenied:697145462565896194> Access Denied, You must be bot owner to execute this command.');
} }
} }
} };

View file

@ -3,37 +3,39 @@ module.exports = {
name: require('path').parse(__filename).name, name: require('path').parse(__filename).name,
description: 'Sets your nickname', description: 'Sets your nickname',
async execute(client, message, args, config) { async execute (client, message, args, config) {
const avatarURL = message.author.displayAvatarURL(); const avatarURL = message.author.displayAvatarURL();
if (message.channel.permissionsFor(message.author).has("CHANGE_NICKNAME")) { if (message.channel.permissionsFor(message.author).has('CHANGE_NICKNAME')) {
const newnick = args.slice(0).join(" ") const newnick = args.slice(0).join(' ');
try { try {
await message.member.setNickname(newnick, "Nickname change requested by the server member. If you don't want users to be able to change their nickname disable 'CHANGE_NICKNAME' via Change Nickname in Roles.") await message.member.setNickname(newnick, "Nickname change requested by the server member. If you don't want users to be able to change their nickname disable 'CHANGE_NICKNAME' via Change Nickname in Roles.");
await message.channel.send({embeds: [{ await message.channel.send({
"title": "<:AnitroxSuccess:809651936819019796> Nickname Changed", embeds: [{
"color": 9442302, title: '<:AnitroxSuccess:809651936819019796> Nickname Changed',
"footer": { color: 9442302,
"icon_url": message.author.displayAvatarURL(), footer: {
"text": config.footerTxt icon_url: message.author.displayAvatarURL(),
}, text: config.footerTxt
"fields": [
{
"name": "Changed nickname successfully!",
"value": `New Nickname: ${newnick}`
}, },
{ fields: [
"name": "New Nickname", {
"value": newnick, name: 'Changed nickname successfully!',
"inline": true value: `New Nickname: ${newnick}`
} },
] {
}]}); name: 'New Nickname',
value: newnick,
inline: true
}
]
}]
});
} catch (error) { } catch (error) {
await message.channel.send(client.generateErrorMessage("Failed to set user nickname. Does the bot have the correct permissions?", avatarURL)); await message.channel.send(client.generateErrorMessage('Failed to set user nickname. Does the bot have the correct permissions?', avatarURL));
}; };
} else { } else {
await message.channel.send(client.generateErrorMessage("You need to have permission ``CHANGE_NICKNAME`` to change your nick!", avatarURL)); await message.channel.send(client.generateErrorMessage('You need to have permission ``CHANGE_NICKNAME`` to change your nick!', avatarURL));
} }
} }
} };

View file

@ -1,27 +1,29 @@
module.exports = { module.exports = {
name: require('path').parse(__filename).name, name: require('path').parse(__filename).name,
description: "Slaps an user!", description: 'Slaps an user!',
async execute(client, message, _, config) { async execute (client, message, _, config) {
const taggedUser = message.mentions.users.first(); const taggedUser = message.mentions.users.first();
const avatarURL = message.author.displayAvatarURL(); const avatarURL = message.author.displayAvatarURL();
if(!taggedUser) { if (!taggedUser) {
await message.channel.send(client.generateErrorMessage("You need to @mention a user!", avatarURL)); await message.channel.send(client.generateErrorMessage('You need to @mention a user!', avatarURL));
} else { } else {
await message.channel.send({embeds: [{ await message.channel.send({
"title": ":anger: Slap", embeds: [{
"description": `${taggedUser} You have been slapped by ${message.author}!`, title: ':anger: Slap',
"color": 9442302, description: `${taggedUser} You have been slapped by ${message.author}!`,
"footer": { color: 9442302,
"icon_url": avatarURL, footer: {
"text": config.footerTxt icon_url: avatarURL,
}, text: config.footerTxt
"image": { },
"url": "https://media1.tenor.com/images/b6d8a83eb652a30b95e87cf96a21e007/tenor.gif?itemid=10426943" image: {
} url: 'https://media1.tenor.com/images/b6d8a83eb652a30b95e87cf96a21e007/tenor.gif?itemid=10426943'
}]}); }
} }]
});
}
} }
} };

View file

@ -1,35 +1,36 @@
const gifchoices = [ const gifchoices = [
"https://media.discordapp.net/attachments/803658122299572255/806775382995894282/anime-couple-snuggle-gif-5.gif?width=450&height=238", 'https://media.discordapp.net/attachments/803658122299572255/806775382995894282/anime-couple-snuggle-gif-5.gif?width=450&height=238',
"https://media.discordapp.net/attachments/803658122299572255/806775411928989726/snuggl1.gif", 'https://media.discordapp.net/attachments/803658122299572255/806775411928989726/snuggl1.gif',
"https://cdn.discordapp.com/attachments/803658122299572255/806775422833786911/ImpureDeepAmbushbug-small.gif" 'https://cdn.discordapp.com/attachments/803658122299572255/806775422833786911/ImpureDeepAmbushbug-small.gif'
]; ];
module.exports = { module.exports = {
name: require('path').parse(__filename).name, name: require('path').parse(__filename).name,
description: "Snuggle an user!", description: 'Snuggle an user!',
async execute(client, message, _, config) { async execute (client, message, _, config) {
const taggedUser = message.mentions.users.first(); const taggedUser = message.mentions.users.first();
const avatarURL = message.author.displayAvatarURL(); const avatarURL = message.author.displayAvatarURL();
if(!taggedUser) { if (!taggedUser) {
await message.channel.send(client.generateErrorMessage("You need to @mention a user!", avatarURL)); await message.channel.send(client.generateErrorMessage('You need to @mention a user!', avatarURL));
} else { } else {
const gif = gifchoices[Math.floor(Math.random() * gifchoices.length)]; const gif = gifchoices[Math.floor(Math.random() * gifchoices.length)];
await message.channel.send({embeds: [{ await message.channel.send({
"title": "<:BlobSnuggleCat:806759753450782731> Snuggle", embeds: [{
"description": `${taggedUser} You have been snuggled by ${message.author}!`, title: '<:BlobSnuggleCat:806759753450782731> Snuggle',
"color": 9442302, description: `${taggedUser} You have been snuggled by ${message.author}!`,
"footer": { color: 9442302,
"icon_url": avatarURL, footer: {
"text": config.footerTxt icon_url: avatarURL,
}, text: config.footerTxt
"image": { },
"url": gif image: {
} url: gif
}]}); }
}]
});
} }
} }
} };

View file

@ -2,30 +2,34 @@ module.exports = {
name: require('path').parse(__filename).name, name: require('path').parse(__filename).name,
description: "IT'S TIME TO STOP!... the bot", description: "IT'S TIME TO STOP!... the bot",
async execute(_0, message, _1, config) { async execute (_0, message, _1, config) {
if (message.author.id == config.ownerID) { if (message.author.id === config.ownerID) {
await message.channel.send({embeds: [{ await message.channel.send({
"title": "<a:AnitroxWorking:697147309531594843> **Shutting Down...**", embeds: [{
"description": "See you next time!", title: '<a:AnitroxWorking:697147309531594843> **Shutting Down...**',
"color": 9442302, description: 'See you next time!',
"footer": { color: 9442302,
"icon_url": message.author.displayAvatarURL(), footer: {
"text": config.footerTxt icon_url: message.author.displayAvatarURL(),
}, text: config.footerTxt
}]}); }
console.log("The bot is shutting down! Bye bye!") }]
});
console.log('The bot is shutting down! Bye bye!');
process.exit(); process.exit();
} else { } else {
await message.channel.send({embeds: [{ await message.channel.send({
"title": "<:AnitroxDenied:809651936642203668> 403 Forbidden", embeds: [{
"description": "You need to be the bot owner to execute this command!", title: '<:AnitroxDenied:809651936642203668> 403 Forbidden',
"color": 13632027, description: 'You need to be the bot owner to execute this command!',
"footer": { color: 13632027,
"icon_url": message.author.displayAvatarURL(), footer: {
"text": config.footerTxt icon_url: message.author.displayAvatarURL(),
}, text: config.footerTxt
}]}); }
}]
});
} }
} }
} };

View file

@ -1,59 +1,61 @@
module.exports = { module.exports = {
name: require('path').parse(__filename).name, name: require('path').parse(__filename).name,
description: "Gets info about an user, such as ID, Discord Join date and more", description: 'Gets info about an user, such as ID, Discord Join date and more',
syntax: "<User>", syntax: '<User>',
async execute(_0, message, _1, config) { async execute (_0, message, _1, config) {
const user = message.mentions.users.first() || message.member; const user = message.mentions.users.first() || message.member;
await message.channel.send({embeds: [{ await message.channel.send({
"title": `Everything you've ever wanted to know about ${user.user}!`, embeds: [{
"color": 9442302, title: `Everything you've ever wanted to know about ${user.user}!`,
"footer": { color: 9442302,
"icon_url": message.author.displayAvatarURL(), footer: {
"text": config.footerTxt icon_url: message.author.displayAvatarURL(),
}, text: config.footerTxt
"thumbnail": {
"url": user.user.displayAvatarURL()
},
"fields": [
{
"name": "Username",
"value": user.user.username,
"inline": true
}, },
{ thumbnail: {
"name": "Discriminator", url: user.user.displayAvatarURL()
"value": user.user.discriminator,
"inline": true
}, },
{ fields: [
"name": "Full Username", {
"value": user.user.tag, name: 'Username',
"inline": true value: user.user.username,
}, inline: true
{ },
"name": "User Profile Picture", {
"value": user.user.displayAvatarURL() name: 'Discriminator',
}, value: user.user.discriminator,
{ inline: true
"name": "User Status", },
"value": user.presence?.status ?? "Error getting status, does the bot have the GUILD_PRESENCES intent?" {
//IMPORTANT NOTE: name: 'Full Username',
//There seems to be an issue where offline and invisible users return a null presense value: user.user.tag,
//I'll try to patch this soon if I can figure out why inline: true
}, },
{ {
"name": "User ID", name: 'User Profile Picture',
"value": `\`${user.user.id}\`` value: user.user.displayAvatarURL()
}, },
{ {
"name": "User Joined Discord", name: 'User Status',
"value": user.user.createdAt.toString(), value: user.presence?.status ?? 'Error getting status, does the bot have the GUILD_PRESENCES intent?'
"inline": true // IMPORTANT NOTE:
}, // There seems to be an issue where offline and invisible users return a null presense
] // I'll try to patch this soon if I can figure out why
}]}); },
{
name: 'User ID',
value: `\`${user.user.id}\``
},
{
name: 'User Joined Discord',
value: user.user.createdAt.toString(),
inline: true
}
]
}]
});
} }
} };

View file

@ -8,9 +8,13 @@
"node-os-utils": "^1.3.2", "node-os-utils": "^1.3.2",
"require-all": "^3.0.0" "require-all": "^3.0.0"
}, },
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "IDeletedSystem64", "author": "IDeletedSystem64",
"license": "ISC" "license": "ISC",
"devDependencies": {
"eslint": "^8.13.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.1.0",
"eslint-plugin-promise": "^6.0.0"
}
} }

View file

@ -3,77 +3,78 @@
const fs = require('fs'); const fs = require('fs');
const Discord = require('discord.js'); const Discord = require('discord.js');
const config = require('./config.json'); const config = require('./config.json');
console.log('Starting!') console.log('Starting!');
const client = new Discord.Client({ intents: config.intents.map(intent => eval(`Discord.Intents.FLAGS.${intent}`))}); const client = new Discord.Client({ intents: config.intents.map(intent => eval(`Discord.Intents.FLAGS.${intent}`)) });
client.commands = new Discord.Collection(); client.commands = new Discord.Collection();
const commandFiles = fs.readdirSync('./commands').filter(file => file.endsWith('.js')); const commandFiles = fs.readdirSync('./commands').filter(file => file.endsWith('.js'));
for (const file of commandFiles) { for (const file of commandFiles) {
const command = require(`./commands/${file}`); const command = require(`./commands/${file}`);
client.commands.set(command.name, command); client.commands.set(command.name, command);
} }
client.generateErrorMessage = (errorMsg, avatarURL) => ({embeds: [{ client.generateErrorMessage = (errorMsg, avatarURL) => ({
"title": "<:AnitroxError:809651936563429416> Error", embeds: [{
"color": 13632027, title: '<:AnitroxError:809651936563429416> Error',
"footer": { color: 13632027,
"icon_url": avatarURL, footer: {
"text": config.footerTxt icon_url: avatarURL,
}, text: config.footerTxt
"fields": [ },
{ fields: [
"name": "Something went wrong!", {
"value": errorMsg name: 'Something went wrong!',
} value: errorMsg
] }
}]}) ]
}]
});
client.on("error", (e) => console.log(`[ERROR] ${error(e)}`)); client.on('error', (e) => console.log(`[ERROR] ${e}`));
client.on("warn", (e) => (`[WARN] ${warn(e)}`)); client.on('warn', (e) => (`[WARN] ${e}`));
client.once('ready', () => { client.once('ready', () => {
console.clear() console.clear();
console.log(' ___ _ __ '); console.log(' ___ _ __ ');
console.log(' / | ____ (_) /__________ _ __'); console.log(' / | ____ (_) /__________ _ __');
console.log(' / /| | / __ \\/ / __/ ___/ __ \\| |/_/'); console.log(' / /| | / __ \\/ / __/ ___/ __ \\| |/_/');
console.log(' / ___ |/ / / / / /_/ / / /_/ /> < '); console.log(' / ___ |/ / / / / /_/ / / /_/ /> < ');
console.log('/_/ |_/_/ /_/_/\\__/_/ \\____/_/|_| '); console.log('/_/ |_/_/ /_/_/\\__/_/ \\____/_/|_| ');
console.log(`${config.release}, ${config.build}`); console.log(`${config.release}, ${config.build}`);
console.log("Bot online. | Anitrox by IDeletedSystem64 | ALL MY CODE KEEPS BLOWING UP!"); console.log('Bot online. | Anitrox by IDeletedSystem64 | ALL MY CODE KEEPS BLOWING UP!');
// Statuses // Statuses
setInterval(async () => { setInterval(async () => {
// Picks a status from the config file // Picks a status from the config file
const index = Math.floor(Math.random() * config.statuses.length); const index = Math.floor(Math.random() * config.statuses.length);
await client.user.setActivity(config.statuses[index]); await client.user.setActivity(config.statuses[index]);
}, 20000); }, 20000);
}); });
// Begin Command Handler // Begin Command Handler
client.on('messageCreate', async (message) => { client.on('messageCreate', async (message) => {
if (!message.content.startsWith(config.prefix) || message.author.bot) return; if (!message.content.startsWith(config.prefix) || message.author.bot) return;
const args = message.content.slice(config.prefix.length).split(/\s+/); const args = message.content.slice(config.prefix.length).split(/\s+/);
const command = args.shift().toLowerCase(); const command = args.shift().toLowerCase();
if (!client.commands.has(command)) return; if (!client.commands.has(command)) return;
try { try {
await client.commands.get(command).execute(client, message, args, config); await client.commands.get(command).execute(client, message, args, config);
} catch (error) { } catch (error) {
console.stack; console.stack();
message.channel.send({embeds: [{ message.channel.send({
"title": "<:AnitroxError:809651936563429416> **Something went wrong!**", embeds: [{
"description": error.stack, title: '<:AnitroxError:809651936563429416> **Something went wrong!**',
"color": 13632027, description: error.stack,
"footer": { color: 13632027,
"icon_url": message.author.displayAvatarURL(), footer: {
"text": config.footerTxt icon_url: message.author.displayAvatarURL(),
}, text: config.footerTxt
}]}); }
}]
});
} }
}); });
client.login(config.token); client.login(config.token);