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,
description: 'Ask Anitrox a question, any question! and they will answer it!',
syntax: ["[Question]"],
async execute(client, message, args, config) {
syntax: ['[Question]'],
async execute (client, message, args, config) {
const index = Math.floor(Math.random() * config.answers.length);
const answer = config.answers[index]
const question = args.slice(0).join(" ")
const avatarURL = message.author.displayAvatarURL()
const answer = config.answers[index];
const question = args.slice(0).join(' ');
const avatarURL = message.author.displayAvatarURL();
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 {
await message.channel.send({embeds: [{
"title": ":8ball: 8Ball",
"description": `Your amazing question: **${question}**`,
"color": 9442302,
"footer": {
"icon_url": avatarURL,
"text": config.footerTxt
},
"fields": [
{
"name": "Answer",
"value": `${answer}`
}
]
}]});
await message.channel.send({
embeds: [{
title: ':8ball: 8Ball',
description: `Your amazing question: **${question}**`,
color: 9442302,
footer: {
icon_url: avatarURL,
text: config.footerTxt
},
fields: [
{
name: 'Answer',
value: `${answer}`
}
]
}]
});
}
}
}
};

View file

@ -3,19 +3,21 @@ module.exports = {
name: require('path').parse(__filename).name,
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;
await message.channel.send({embeds: [{
"title": `:frame_photo: ${user.username}'s Beautiful Avatar!`,
"color": 9442302,
"footer": {
"icon_url": message.author.displayAvatarURL(),
"text": config.footerTxt
},
"image": {
"url": user.displayAvatarURL()
}
}]});
await message.channel.send({
embeds: [{
title: `:frame_photo: ${user.username}'s Beautiful Avatar!`,
color: 9442302,
footer: {
icon_url: message.author.displayAvatarURL(),
text: config.footerTxt
},
image: {
url: user.displayAvatarURL()
}
}]
});
}
}
};

View file

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

View file

@ -1,26 +1,28 @@
module.exports = {
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();
if(!taggedUser) {
await message.channel.send("*slams cheese on desk*\n**Cheese.** https://www.youtube.com/watch?v=Or4IE8fkpn4");
if (!taggedUser) {
await message.channel.send('*slams cheese on desk*\n**Cheese.** https://www.youtube.com/watch?v=Or4IE8fkpn4');
} else {
await message.channel.send({embeds: [{
"title": ":cheese: Cheesed",
"description": `${taggedUser} You have been cheesed by ${message.author}!`,
"color": 16312092,
"footer": {
"icon_url": message.author.displayAvatarURL(),
"text": config.footerTxt
},
"image": {
"url": "https://cdn.discordapp.com/attachments/803658122299572255/812867714368536636/R06325af354168febcafd96b8328b7590.png"
}
}]});
await message.channel.send({
embeds: [{
title: ':cheese: Cheesed',
description: `${taggedUser} You have been cheesed by ${message.author}!`,
color: 16312092,
footer: {
icon_url: message.author.displayAvatarURL(),
text: config.footerTxt
},
image: {
url: 'https://cdn.discordapp.com/attachments/803658122299572255/812867714368536636/R06325af354168febcafd96b8328b7590.png'
}
}]
});
}
}
}
};

View file

@ -1,27 +1,29 @@
module.exports = {
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();
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);
if (head) options.push(head);
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 {
const answer = options[Math.floor(Math.random() * options.length)];
await message.channel.send({embeds: [{
"title": "I have made my decision:",
"description": answer,
"color": 8311585,
"footer": {
"icon_url": avatarURL,
"text": config.footerTxt
},
}]});
await message.channel.send({
embeds: [{
title: 'I have made my decision:',
description: answer,
color: 8311585,
footer: {
icon_url: avatarURL,
text: config.footerTxt
}
}]
});
}
}
}
};

View file

@ -2,33 +2,35 @@ module.exports = {
name: require('path').parse(__filename).name,
description: 'Attributions to open source components used by Anitrox',
async execute(_0, message, _1, config){
await message.channel.send({embeds: [{
"title": "Contributors",
"description": "Links to check out our contributors!",
"color": 52508,
"footer": {
"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)"
async execute (_0, message, _1, config) {
await message.channel.send({
embeds: [{
title: 'Contributors',
description: 'Links to check out our contributors!',
color: 52508,
footer: {
icon_url: message.author.displayAvatarURL(),
text: config.footerTxt
},
{
"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)"
thumbnail: {
url: 'https://cdn.discordapp.com/emojis/809651812323164192.webp?size=128&quality=lossless'
},
{
"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)"
}
]
}]});
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)'
},
{
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 = [
"https://i.pinimg.com/originals/4d/89/d7/4d89d7f963b41a416ec8a55230dab31b.gif",
"https://media1.tenor.com/images/6d73b0a9cadef5310be4b6160d2f959a/tenor.gif?itemid=12099823",
"https://media.tenor.com/images/2636cf3c8152631b4630bf71757a4afa/tenor.gif",
"https://i.imgur.com/JiFpT5E.gif"
'https://i.pinimg.com/originals/4d/89/d7/4d89d7f963b41a416ec8a55230dab31b.gif',
'https://media1.tenor.com/images/6d73b0a9cadef5310be4b6160d2f959a/tenor.gif?itemid=12099823',
'https://media.tenor.com/images/2636cf3c8152631b4630bf71757a4afa/tenor.gif',
'https://i.imgur.com/JiFpT5E.gif'
];
module.exports = {
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 index = Math.floor(Math.random() * gifchoices.length);
const gif = (gifchoices[index]);
const avatarURL = message.author.displayAvatarURL();
if(!taggedUser) {
await message.channel.send(client.generateErrorMessage("You need to @mention a user!", avatarURL));
if (!taggedUser) {
await message.channel.send(client.generateErrorMessage('You need to @mention a user!', avatarURL));
} else {
await message.channel.send({embeds: [{
"title": ":heart: Cuddle",
"description": `${taggedUser} You have been cuddled by ${message.author}!`,
"color": 9442302,
"footer": {
"icon_url": avatarURL,
"text": config.footerTxt
},
"image": {
"url": gif
}
}]});
await message.channel.send({
embeds: [{
title: ':heart: Cuddle',
description: `${taggedUser} You have been cuddled by ${message.author}!`,
color: 9442302,
footer: {
icon_url: avatarURL,
text: config.footerTxt
},
image: {
url: gif
}
}]
});
}
}
}
};

View file

@ -1,36 +1,38 @@
const { inspect } = require("util");
const { inspect } = require('util');
module.exports = {
name: require('path').parse(__filename).name,
description: 'Executes JS code',
name: require('path').parse(__filename).name,
description: 'Executes JS code',
async execute(_, message, args, config) {
if (message.author.id == config.ownerID) {
async execute (_, message, args, config) {
if (message.author.id === config.ownerID) {
try {
const code = args.join(" ");
const code = args.join(' ');
const evaled = inspect(eval(code));
await message.channel.send(evaled, {code:"xl"});
await message.channel.send(evaled, { code: 'xl' });
} catch (error) {
await message.channel.send({embeds: [{
"title": "<:AnitroxError:809651936563429416> **Something went wrong! **",
"color": 13632027,
"footer": {
"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."
await message.channel.send({
embeds: [{
title: '<:AnitroxError:809651936563429416> **Something went wrong! **',
color: 13632027,
footer: {
icon_url: message.author.displayAvatarURL(),
text: config.footerTxt
},
{
"name": "Error Info",
"value": error.message
}
]
}]});
fields: [
{
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 = {
name: require('path').parse(__filename).name,
description: 'Get help on anything from commands, to what the bot does! just not your homework..',
syntax: '<Command>',
async execute(_0, message, _1, config) {
await message.channel.send({embeds: [{
"title": "HELP! SEYMOUR! THE BOT IS ON FIRE!",
"description": "Get help on anything from commands, to what the bot does! just not your homework..",
"color": 9442302,
"footer": {
"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)"
async execute (_0, message, _1, config) {
await message.channel.send({
embeds: [{
title: 'HELP! SEYMOUR! THE BOT IS ON FIRE!',
description: 'Get help on anything from commands, to what the bot does! just not your homework..',
color: 9442302,
footer: {
icon_url: message.author.displayAvatarURL(),
text: `${config.footerTxt} | No mother it's just the northern lights`
},
{
"name": "...Or is the bot actually on fire?",
"value": "Join the [support server!](https://discord.gg/grebRGsBZ3)"
}
]
}]});
fields: [
{
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 = [
"https://cdn.discordapp.com/attachments/803658122299572255/807670647920001044/hug2.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/808834617494208532/gif3new.gif",
"https://cdn.discordapp.com/attachments/803658122299572255/807671126376972308/gif4.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/807670951113392178/gif6.gif',
'https://cdn.discordapp.com/attachments/803658122299572255/808834617494208532/gif3new.gif',
'https://cdn.discordapp.com/attachments/803658122299572255/807671126376972308/gif4.gif'
];
module.exports = {
name: require('path').parse(__filename).name,
description: "Hugs a user!",
async execute(client, message, _, config) {
description: 'Hugs a user!',
async execute (client, message, _, config) {
const taggedUser = message.mentions.users.first();
const avatarURL = message.author.displayAvatarURL();
if(!taggedUser) {
await message.channel.send(client.generateErrorMessage("You need to @mention a user!", avatarURL));
if (!taggedUser) {
await message.channel.send(client.generateErrorMessage('You need to @mention a user!', avatarURL));
} else {
const gif = gifchoices[Math.floor(Math.random() * gifchoices.length)];
await message.channel.send({embeds: [{
"title": "<a:ABlobCatHuggle:801232248035999784> Hug",
"description": `${taggedUser} You have been hugged by ${message.author}!`,
"color": 8311585,
"footer": {
"icon_url": avatarURL,
"text": config.footerTxt
},
"image": {
"url": gif
}
}]});
await message.channel.send({
embeds: [{
title: '<a:ABlobCatHuggle:801232248035999784> Hug',
description: `${taggedUser} You have been hugged by ${message.author}!`,
color: 8311585,
footer: {
icon_url: avatarURL,
text: config.footerTxt
},
image: {
url: gif
}
}]
});
}
}
}
};

View file

@ -1,4 +1,4 @@
function Uptime(uptime) {
function Uptime (uptime) {
const totalSeconds = (uptime / 1000);
const days = parseInt(totalSeconds / 86400);
@ -6,10 +6,10 @@ function Uptime(uptime) {
const minutes = parseInt((totalSeconds % 3600) / 60);
const seconds = parseInt(totalSeconds % 60);
const daystring = days + (days === 1 ? " day" : " days");
const hourstring = hours + (hours === 1 ? " hour" : " hours");
const minutetring = minutes + (minutes === 1 ? " minute" : " minutes");
const secondstring = seconds + (seconds === 1 ? " second" : " seconds");
const daystring = days + (days === 1 ? ' day' : ' days');
const hourstring = hours + (hours === 1 ? ' hour' : ' hours');
const minutetring = minutes + (minutes === 1 ? ' minute' : ' minutes');
const secondstring = seconds + (seconds === 1 ? ' second' : ' seconds');
return `${daystring}**, **${hourstring}**, **${minutetring}**, **${secondstring}`;
}
@ -19,89 +19,90 @@ module.exports = {
name: require('path').parse(__filename).name,
description: 'Shows bot and host information',
async execute(client, message, _, config) {
const os = require("os");
async execute (client, message, _, config) {
const os = require('os');
const osu = require('node-os-utils');
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()}`
},
{
"name": "<:hostos:793866961675223090> OS Type",
"value": `${process.platform} / ${os.version()}`
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
},
{
"name": "<:node:793537507018145813> Node.JS Version",
"value": process.version
thumbnail: {
url: client.user.displayAvatarURL()
},
{
"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"
}
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()}`
},
]
}]});
{
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,
description: 'Add Anitrox to your beautiful server!',
syntax: [],
async execute(_0, message, _1, config) {
await message.channel.send({embeds: [{
"title": "Add Anitrox to your Server!",
"description": "Weather you want stable, or that squeaky clean fresh PTB build, we gotchu.",
"color": 9442302,
"footer": {
"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)"
async execute (_0, message, _1, config) {
await message.channel.send({
embeds: [{
title: 'Add Anitrox to your Server!',
description: 'Weather you want stable, or that squeaky clean fresh PTB build, we gotchu.',
color: 9442302,
footer: {
icon_url: message.author.displayAvatarURL(),
text: config.footerTxt
},
{
"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)"
thumbnail: {
url: 'https://cdn.discordapp.com/attachments/803658122299572255/814352905394061322/anitroxaddsrvr.png'
},
{
"name": "Need help?",
"value": "Come join the Anitrox Support Server, for support and much more!\n [Anitrox Support Server](https://discord.gg/grebRGsBZ3)"
}
]
}]});
},
};
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)'
},
{
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 = [
"https://cdn.discordapp.com/attachments/803658122299572255/807671954055626812/kiss5.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/807671971168387082/kiss4.gif",
"https://cdn.discordapp.com/attachments/803658122299572255/807672017217781840/kiss3.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/807671964599713862/kiss1.gif',
'https://cdn.discordapp.com/attachments/803658122299572255/807671971168387082/kiss4.gif',
'https://cdn.discordapp.com/attachments/803658122299572255/807672017217781840/kiss3.gif'
];
module.exports = {
name: require('path').parse(__filename).name,
description: "Kisses a user!",
async execute(client, message, _, config) {
description: 'Kisses a user!',
async execute (client, message, _, config) {
const taggedUser = message.mentions.users.first();
const avatarURL = message.author.displayAvatarURL();
if(!taggedUser) {
await message.channel.send(client.generateErrorMessage("You need to @mention a user!", avatarURL));
if (!taggedUser) {
await message.channel.send(client.generateErrorMessage('You need to @mention a user!', avatarURL));
} else {
const gif = gifchoices[Math.floor(Math.random() * gifchoices.length)];
await message.channel.send({embeds: [{
"title": ":heart: Kiss",
"description": `${taggedUser} You have been kissed by ${message.author}!`,
"color": 9442302,
"footer": {
"icon_url": avatarURL,
"text": config.footerTxt
},
"image": {
"url": gif
}
}]});
await message.channel.send({
embeds: [{
title: ':heart: Kiss',
description: `${taggedUser} You have been kissed by ${message.author}!`,
color: 9442302,
footer: {
icon_url: avatarURL,
text: config.footerTxt
},
image: {
url: gif
}
}]
});
}
}
}
};

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,18 +1,18 @@
module.exports = {
name: require('path').parse(__filename).name,
description: 'Reloads a command',
name: require('path').parse(__filename).name,
description: 'Reloads a command',
async execute(client, message, args, config) {
async execute (client, message, args, config) {
const avatarURL = message.author.displayAvatarURL();
if (message.author.id = config.ownerID) {
if (message.author.id === config.ownerID) {
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) => {
const commandName = arg.toLowerCase();
const command = message.client.commands.get(commandName)
|| message.client.commands.find(cmd => cmd.aliases && cmd.aliases.includes(commandName));
const command = message.client.commands.get(commandName) ||
message.client.commands.find(cmd => cmd.aliases && cmd.aliases.includes(commandName));
if (!command) {
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`);
client.commands.set(newCommand.name, newCommand);
await message.channel.send(`<:AnitroxSuccess:809651936819019796> **Reloaded \`${command.name}\` successfully!**`);
console.log(`User reloaded ${command.name}.`)
console.log(`User reloaded ${command.name}.`);
} catch (error) {
console.error(error);
await message.channel.send(client.generateErrorMessage(`There was an error while reloading \`${command.name}\`:\n\`${error.message}\``, avatarURL));
}
}
});
} else {
message.channel.send({embeds: [{
"title": "<:AnitroxDenied:809651936642203668> **403 Forbidden**",
"color": 13632027,
"footer": {
"icon_url": avatarURL,
"text": config.footerTxt
},
"fields": [
{
"name": "**What Happened?**",
"value": "You don't have the appropriate permissions to run this command!"
}
]
}]});
message.channel.send({
embeds: [{
title: '<:AnitroxDenied:809651936642203668> **403 Forbidden**',
color: 13632027,
footer: {
icon_url: avatarURL,
text: config.footerTxt
},
fields: [
{
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,
description: 'Restarts the bot',
async execute(client, message, _, config) {
if (message.author.id == config.ownerID) {
console.log("Anitrox is restarting now!")
await message.channel.send("<a:NyabotWorking:697147309531594843> Restarting...")
async execute (client, message, _, config) {
if (message.author.id === config.ownerID) {
console.log('Anitrox is restarting now!');
await message.channel.send('<a:NyabotWorking:697147309531594843> Restarting...');
try {
client.destroy();
await client.login(config.token);
await message.channel.send("<:NyabotSuccess:697211376740859914> Restart Successful")
console.log("All systems go")
} catch(e) {console.log(e);}
await message.channel.send('<:NyabotSuccess:697211376740859914> Restart Successful');
console.log('All systems go');
} catch (e) { console.log(e); }
} 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,
description: 'Sets your nickname',
async execute(client, message, args, config) {
async execute (client, message, args, config) {
const avatarURL = message.author.displayAvatarURL();
if (message.channel.permissionsFor(message.author).has("CHANGE_NICKNAME")) {
const newnick = args.slice(0).join(" ")
if (message.channel.permissionsFor(message.author).has('CHANGE_NICKNAME')) {
const newnick = args.slice(0).join(' ');
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.channel.send({embeds: [{
"title": "<:AnitroxSuccess:809651936819019796> Nickname Changed",
"color": 9442302,
"footer": {
"icon_url": message.author.displayAvatarURL(),
"text": config.footerTxt
},
"fields": [
{
"name": "Changed nickname successfully!",
"value": `New Nickname: ${newnick}`
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: [{
title: '<:AnitroxSuccess:809651936819019796> Nickname Changed',
color: 9442302,
footer: {
icon_url: message.author.displayAvatarURL(),
text: config.footerTxt
},
{
"name": "New Nickname",
"value": newnick,
"inline": true
}
]
}]});
fields: [
{
name: 'Changed nickname successfully!',
value: `New Nickname: ${newnick}`
},
{
name: 'New Nickname',
value: newnick,
inline: true
}
]
}]
});
} 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 {
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 = {
name: require('path').parse(__filename).name,
description: "Slaps an user!",
async execute(client, message, _, config) {
description: 'Slaps an user!',
async execute (client, message, _, config) {
const taggedUser = message.mentions.users.first();
const avatarURL = message.author.displayAvatarURL();
if(!taggedUser) {
await message.channel.send(client.generateErrorMessage("You need to @mention a user!", avatarURL));
if (!taggedUser) {
await message.channel.send(client.generateErrorMessage('You need to @mention a user!', avatarURL));
} else {
await message.channel.send({embeds: [{
"title": ":anger: Slap",
"description": `${taggedUser} You have been slapped by ${message.author}!`,
"color": 9442302,
"footer": {
"icon_url": avatarURL,
"text": config.footerTxt
},
"image": {
"url": "https://media1.tenor.com/images/b6d8a83eb652a30b95e87cf96a21e007/tenor.gif?itemid=10426943"
}
}]});
}
await message.channel.send({
embeds: [{
title: ':anger: Slap',
description: `${taggedUser} You have been slapped by ${message.author}!`,
color: 9442302,
footer: {
icon_url: avatarURL,
text: config.footerTxt
},
image: {
url: 'https://media1.tenor.com/images/b6d8a83eb652a30b95e87cf96a21e007/tenor.gif?itemid=10426943'
}
}]
});
}
}
}
};

View file

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

View file

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

View file

@ -1,59 +1,61 @@
module.exports = {
name: require('path').parse(__filename).name,
description: "Gets info about an user, such as ID, Discord Join date and more",
syntax: "<User>",
description: 'Gets info about an user, such as ID, Discord Join date and more',
syntax: '<User>',
async execute(_0, message, _1, config) {
async execute (_0, message, _1, config) {
const user = message.mentions.users.first() || message.member;
await message.channel.send({embeds: [{
"title": `Everything you've ever wanted to know about ${user.user}!`,
"color": 9442302,
"footer": {
"icon_url": message.author.displayAvatarURL(),
"text": config.footerTxt
},
"thumbnail": {
"url": user.user.displayAvatarURL()
},
"fields": [
{
"name": "Username",
"value": user.user.username,
"inline": true
await message.channel.send({
embeds: [{
title: `Everything you've ever wanted to know about ${user.user}!`,
color: 9442302,
footer: {
icon_url: message.author.displayAvatarURL(),
text: config.footerTxt
},
{
"name": "Discriminator",
"value": user.user.discriminator,
"inline": true
thumbnail: {
url: user.user.displayAvatarURL()
},
{
"name": "Full Username",
"value": user.user.tag,
"inline": true
},
{
"name": "User Profile Picture",
"value": user.user.displayAvatarURL()
},
{
"name": "User Status",
"value": user.presence?.status ?? "Error getting status, does the bot have the GUILD_PRESENCES intent?"
//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
},
]
}]});
fields: [
{
name: 'Username',
value: user.user.username,
inline: true
},
{
name: 'Discriminator',
value: user.user.discriminator,
inline: true
},
{
name: 'Full Username',
value: user.user.tag,
inline: true
},
{
name: 'User Profile Picture',
value: user.user.displayAvatarURL()
},
{
name: 'User Status',
value: user.presence?.status ?? 'Error getting status, does the bot have the GUILD_PRESENCES intent?'
// 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",
"require-all": "^3.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"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 Discord = require('discord.js');
const config = require('./config.json');
console.log('Starting!')
const client = new Discord.Client({ intents: config.intents.map(intent => eval(`Discord.Intents.FLAGS.${intent}`))});
console.log('Starting!');
const client = new Discord.Client({ intents: config.intents.map(intent => eval(`Discord.Intents.FLAGS.${intent}`)) });
client.commands = new Discord.Collection();
const commandFiles = fs.readdirSync('./commands').filter(file => file.endsWith('.js'));
for (const file of commandFiles) {
const command = require(`./commands/${file}`);
client.commands.set(command.name, command);
const command = require(`./commands/${file}`);
client.commands.set(command.name, command);
}
client.generateErrorMessage = (errorMsg, avatarURL) => ({embeds: [{
"title": "<:AnitroxError:809651936563429416> Error",
"color": 13632027,
"footer": {
"icon_url": avatarURL,
"text": config.footerTxt
},
"fields": [
{
"name": "Something went wrong!",
"value": errorMsg
}
]
}]})
client.generateErrorMessage = (errorMsg, avatarURL) => ({
embeds: [{
title: '<:AnitroxError:809651936563429416> Error',
color: 13632027,
footer: {
icon_url: avatarURL,
text: config.footerTxt
},
fields: [
{
name: 'Something went wrong!',
value: errorMsg
}
]
}]
});
client.on("error", (e) => console.log(`[ERROR] ${error(e)}`));
client.on("warn", (e) => (`[WARN] ${warn(e)}`));
client.on('error', (e) => console.log(`[ERROR] ${e}`));
client.on('warn', (e) => (`[WARN] ${e}`));
client.once('ready', () => {
console.clear()
console.clear();
console.log(' ___ _ __ ');
console.log(' / | ____ (_) /__________ _ __');
console.log(' / /| | / __ \\/ / __/ ___/ __ \\| |/_/');
console.log(' / ___ |/ / / / / /_/ / / /_/ /> < ');
console.log('/_/ |_/_/ /_/_/\\__/_/ \\____/_/|_| ');
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
setInterval(async () => {
// Picks a status from the config file
const index = Math.floor(Math.random() * config.statuses.length);
await client.user.setActivity(config.statuses[index]);
}, 20000);
});
// Begin Command Handler
client.on('messageCreate', async (message) => {
if (!message.content.startsWith(config.prefix) || message.author.bot) return;
const args = message.content.slice(config.prefix.length).split(/\s+/);
const command = args.shift().toLowerCase();
if (!client.commands.has(command)) return;
try {
await client.commands.get(command).execute(client, message, args, config);
} catch (error) {
console.stack;
message.channel.send({embeds: [{
"title": "<:AnitroxError:809651936563429416> **Something went wrong!**",
"description": error.stack,
"color": 13632027,
"footer": {
"icon_url": message.author.displayAvatarURL(),
"text": config.footerTxt
},
}]});
console.stack();
message.channel.send({
embeds: [{
title: '<:AnitroxError:809651936563429416> **Something went wrong!**',
description: error.stack,
color: 13632027,
footer: {
icon_url: message.author.displayAvatarURL(),
text: config.footerTxt
}
}]
});
}
});
client.login(config.token);
client.login(config.token);