all of this is useless ill fix it later

This commit is contained in:
Emily 2022-12-10 14:58:21 +11:00
parent 9e47046c7b
commit a8660cfb96
27 changed files with 0 additions and 1542 deletions

View file

@ -1,46 +0,0 @@
module.exports = class {
constructor (name, category) {
this.name = name,
this.category = category,
this.enabled = true,
this.devOnly = false,
this.aliases = ['color'],
this.userPerms = [],
this.botPerms = [],
this.cooldown = 2000,
this.help = {
description: 'Shows you colours that can be random, a hex code or generated from the words you type into the command.',
arguments: '[hexcode/text]',
details: '',
examples: '`colour` - generates a random colour\n`colour #ee79ff` - Displays the colour of this hexcode\n`colour alpaca` - Generates a colour from the word alpaca'
};
}
run (client, message, args, data) { //eslint-disable-line no-unused-vars
let colour;
if (!args[0]) {
colour = client.functions.randomColour();
} else if (args[0].match(/#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$/)) {
colour = args[0];
} else {
let hash = 0;
const string = args.join(' ');
for (let i = 0; i < string.length; i++) {
hash = string.charCodeAt(i) + ((hash << 5) - hash);
}
colour = '#';
for (let i = 0; i < 3; i++) {
const value = (hash >> (i * 8)) & 0xFF;
colour += ('00' + value.toString(16)).substr(-2);
}
}
const embed = new client.MessageEmbed()
.setTitle(colour)
.setColor(colour)
.setImage(`https://fakeimg.pl/256x256/${colour.replace('#', '')}/?text=%20`);
message.channel.send({ embeds: [embed] });
}
};

View file

@ -1,39 +0,0 @@
const fetch = require('node-fetch');
module.exports = class {
constructor (name, category) {
this.name = name,
this.category = category,
this.enabled = true,
this.devOnly = false,
this.aliases = [],
this.userPerms = [],
this.botPerms = [],
this.cooldown = 2000,
this.help = {
description: 'Sends you a strip from the best comic ever',
arguments: '[daily]',
details: '',
examples: '`garfield` - sends a random garfield comic strip\n`garfield daily` - sends the daily strip'
};
}
async run (client, message, args, data) { //eslint-disable-line no-unused-vars
let date = 'xxxx';
if (args[0] && args[0].toLowerCase() === 'daily') date = new Date();
const editMessage = await message.channel.send(`${client.config.emojis.loading} Please wait...`);
fetch('`https://garfield-comics.glitch.me/`~SRoMG/?date=' + date, { headers: { 'User-Agent': client.config.userAgent }})
.then(res => res.json())
.then(json => {
const embed = new client.MessageEmbed()
.setTitle(`${json.data.name} (No. ${json.data.number})`)
.setColor(client.functions.embedColor(message.guild))
.setURL('https://www.mezzacotta.net/garfield/?comic=' + json.data.number)
.setImage(json.data.image.src);
editMessage.edit({ embeds: [embed] });
})
.catch(err => {
editMessage.edit(`${client.config.emojis.botError} An error has occurred: ${err}`);
});
}
};

View file

@ -1,31 +0,0 @@
const fetch = require('node-fetch');
module.exports = class {
constructor (name, category) {
this.name = name,
this.category = category,
this.enabled = true,
this.devOnly = false,
this.aliases = [],
this.userPerms = [],
this.botPerms = [],
this.cooldown = 2000,
this.help = {
description: 'Generates a random (and likely terrible) inspirational quote.',
arguments: '',
details: '',
examples: null
};
}
async run (client, message, args, data) { //eslint-disable-line no-unused-vars
const editMessage = await message.channel.send(`${client.config.emojis.loading} Please wait...`);
try {
fetch('http://inspirobot.me/api?generate=true', { headers: { 'User-Agent': client.config.userAgent }})
.then(res => res.text())
.then(body => editMessage.edit(body));
} catch (err) {
editMessage.edit(`${client.config.emojis.botError} An error has occurred: ${err}`);
}
}
};