Added yodish.
This commit is contained in:
		
							parent
							
								
									76d6230e97
								
							
						
					
					
						commit
						5d8a81523f
					
				
					 11 changed files with 136 additions and 32 deletions
				
			
		| 
						 | 
					@ -1,2 +1,10 @@
 | 
				
			||||||
 | 
					Added a yodish command (terry)
 | 
				
			||||||
Links to avatars now lead to the original file size
 | 
					Links to avatars now lead to the original file size
 | 
				
			||||||
Bots now get a bot badge in the userinfo command
 | 
					Bots now get a bot badge in the userinfo command
 | 
				
			||||||
 | 
					Added dogfact and catfact command (terry)
 | 
				
			||||||
 | 
					index.js now has better logging of when things fail to load/initialize (terry)
 | 
				
			||||||
 | 
					added `dice`, rolls a 6 sided die (terry)
 | 
				
			||||||
 | 
					Help command changed, the amount of commands in each category and overall is now displayed
 | 
				
			||||||
 | 
					added `inspire` as an alias for inspirobot
 | 
				
			||||||
 | 
					ship command
 | 
				
			||||||
 | 
					added find by mention to functions
 | 
				
			||||||
							
								
								
									
										26
									
								
								index.js
									
										
									
									
									
								
							
							
						
						
									
										26
									
								
								index.js
									
										
									
									
									
								
							| 
						 | 
					@ -9,35 +9,35 @@ const client = new Discord.Client();
 | 
				
			||||||
try {
 | 
					try {
 | 
				
			||||||
client.config = require('./config');
 | 
					client.config = require('./config');
 | 
				
			||||||
} catch (err) {
 | 
					} catch (err) {
 | 
				
			||||||
	console.log('Could not load config.js. \n', err);
 | 
						console.log('Could not load config.js: \n', err);
 | 
				
			||||||
	process.exit();
 | 
						process.exit();
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
try{
 | 
					try{
 | 
				
			||||||
client.version = require('./version.json');
 | 
					client.version = require('./version.json');
 | 
				
			||||||
} catch (err) {
 | 
					} catch (err) {
 | 
				
			||||||
	console.log('Could not load version.json. \n', err);
 | 
						console.log('Could not load version.json: \n', err);
 | 
				
			||||||
	process.exit();
 | 
						process.exit();
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
try{
 | 
					try{
 | 
				
			||||||
client.logger = require('./src/modules/Logger');
 | 
					client.logger = require('./src/modules/Logger');
 | 
				
			||||||
} catch (err) {
 | 
					} catch (err) {
 | 
				
			||||||
	console.log('Could not load Logger.js. \n', err);
 | 
						console.log('Could not load Logger.js: \n', err);
 | 
				
			||||||
	process.exit();
 | 
						process.exit();
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
try{
 | 
					try{
 | 
				
			||||||
require("./src/modules/functions")(client);
 | 
					require("./src/modules/functions")(client);
 | 
				
			||||||
} catch (err) {
 | 
					} catch (err) {
 | 
				
			||||||
	console.log('Could not load functions.js. \n', err);
 | 
						console.log('Could not load functions.js: \n', err);
 | 
				
			||||||
	process.exit();
 | 
						process.exit();
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
try{
 | 
					try{
 | 
				
			||||||
client.logger.setClient(client);
 | 
					client.logger.setClient(client);
 | 
				
			||||||
} catch (err) {
 | 
					} catch (err) {
 | 
				
			||||||
	console.log('Logger failed to initialize. \n', err);
 | 
						console.log('Logger failed to initialize: \n', err);
 | 
				
			||||||
	process.exit(1);
 | 
						process.exit(1);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -45,34 +45,36 @@ if(process.env['USER'] != 'container') {
 | 
				
			||||||
  client.devmode = true;
 | 
					  client.devmode = true;
 | 
				
			||||||
} else {
 | 
					} else {
 | 
				
			||||||
  client.devmode = false;
 | 
					  client.devmode = false;
 | 
				
			||||||
 | 
					  if(client.config.dblkey.length == 0) {
 | 
				
			||||||
    const dblapi = new DBL(client.config.dblkey, client);
 | 
					    const dblapi = new DBL(client.config.dblkey, client);
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
try{
 | 
					try{
 | 
				
			||||||
client.commands = new Enmap();
 | 
					client.commands = new Enmap();
 | 
				
			||||||
} catch (err) {
 | 
					} catch (err) {
 | 
				
			||||||
	console.log('Failed to create the commands map. \n', err);
 | 
						console.log('Failed to create the commands database: \n', err);
 | 
				
			||||||
	process.exit();
 | 
						process.exit();
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
try{
 | 
					try{
 | 
				
			||||||
client.aliases = new Enmap();
 | 
					client.aliases = new Enmap();
 | 
				
			||||||
} catch (err) {
 | 
					} catch (err) {
 | 
				
			||||||
	console.log('Failed to create the aliases map. \n', err);
 | 
						console.log('Failed to create the aliases database: \n', err);
 | 
				
			||||||
	process.exit();
 | 
						process.exit();
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
try{
 | 
					try{
 | 
				
			||||||
client.settings = new Enmap({name: 'settings'});
 | 
					client.settings = new Enmap({name: 'settings'});
 | 
				
			||||||
} catch (err) {
 | 
					} catch (err) {
 | 
				
			||||||
	console.log('Failed to initialize the settings database. \n', err);
 | 
						console.log('Failed to initialize the settings database: \n', err);
 | 
				
			||||||
	process.exit();
 | 
						process.exit();
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
try{
 | 
					try{
 | 
				
			||||||
client.blacklist = new Enmap({name: 'blacklist'});
 | 
					client.blacklist = new Enmap({name: 'blacklist'});
 | 
				
			||||||
} catch (err) {
 | 
					} catch (err) {
 | 
				
			||||||
	console.log('Failed to initialize the blacklist database. \n', err);
 | 
						console.log('Failed to initialize the blacklist database: \n', err);
 | 
				
			||||||
	process.exit(1);
 | 
						process.exit(1);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -108,7 +110,7 @@ const init = async () => {
 | 
				
			||||||
    client.levelCache[thisLevel.name] = thisLevel.level;
 | 
					    client.levelCache[thisLevel.name] = thisLevel.level;
 | 
				
			||||||
  };
 | 
					  };
 | 
				
			||||||
} catch (err) {
 | 
					} catch (err) {
 | 
				
			||||||
	console.log('Level cache failed to initialize. \n', err);
 | 
						console.log('Level cache failed to initialize: \n', err);
 | 
				
			||||||
	process.exit();
 | 
						process.exit();
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -119,12 +121,12 @@ const init = async () => {
 | 
				
			||||||
    client.login(client.config.token);
 | 
					    client.login(client.config.token);
 | 
				
			||||||
  };
 | 
					  };
 | 
				
			||||||
} catch (err) {
 | 
					} catch (err) {
 | 
				
			||||||
	console.log('Unable to login to Discord. \n', err);
 | 
						console.log('Could not login to Discord: \n', err);
 | 
				
			||||||
	process.exit(1);
 | 
						process.exit(1);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
init();
 | 
					init();
 | 
				
			||||||
} catch (err) {
 | 
					} catch (err) {
 | 
				
			||||||
	console.log('Initialization failed. \n', err);
 | 
						console.log('Initialization failed: \n', err);
 | 
				
			||||||
	process.exit(1);
 | 
						process.exit(1);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,10 +1,16 @@
 | 
				
			||||||
const request = require("request");
 | 
					const request = require("request");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
exports.run = async (bot, message, args) => {
 | 
					exports.run = async (bot, message, args) => {
 | 
				
			||||||
 | 
					  message.channel.startTyping();
 | 
				
			||||||
 | 
					  try{
 | 
				
			||||||
  request({ uri: "https://catfact.ninja/facts", json: true }, (error, response, body) => {
 | 
					  request({ uri: "https://catfact.ninja/facts", json: true }, (error, response, body) => {
 | 
				
			||||||
    if (error) throw new Error(error);
 | 
					 | 
				
			||||||
    message.channel.send(`**Did you know?**\n ${body.data[0].fact}`);
 | 
					    message.channel.send(`**Did you know?**\n ${body.data[0].fact}`);
 | 
				
			||||||
 | 
					    message.channel.startTyping();
 | 
				
			||||||
  });
 | 
					  });
 | 
				
			||||||
 | 
					} catch(err) {
 | 
				
			||||||
 | 
					  message.channel.send(`<:error:466995152976871434> API error: ${err}`);
 | 
				
			||||||
 | 
					  message.channel.stopTyping();
 | 
				
			||||||
 | 
					};
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
exports.conf = {
 | 
					exports.conf = {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,10 +1,16 @@
 | 
				
			||||||
const request = require("request");
 | 
					const request = require("request");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
exports.run = async (bot, message, args) => {
 | 
					exports.run = async (bot, message, args) => {
 | 
				
			||||||
 | 
					  message.channel.startTyping();
 | 
				
			||||||
 | 
					  try{
 | 
				
			||||||
  request({ uri: "https://dog-api.kinduff.com/api/facts", json: true }, (error, response, body) => {
 | 
					  request({ uri: "https://dog-api.kinduff.com/api/facts", json: true }, (error, response, body) => {
 | 
				
			||||||
    if (error) throw new Error(error);
 | 
					    message.channel.stopTyping();
 | 
				
			||||||
    message.channel.send(`**Did you know?**\n ${body.facts[0]}`);
 | 
					    message.channel.send(`**Did you know?**\n ${body.facts[0]}`);
 | 
				
			||||||
  });
 | 
					  });
 | 
				
			||||||
 | 
					} catch(err) {
 | 
				
			||||||
 | 
					  message.channel.send(`<:error:466995152976871434> API error: ${err}`);
 | 
				
			||||||
 | 
					  message.channel.stopTyping();
 | 
				
			||||||
 | 
					};
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
exports.conf = {
 | 
					exports.conf = {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -4,6 +4,7 @@ exports.run = (client, message, args, level) => {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  var ran = false;
 | 
					  var ran = false;
 | 
				
			||||||
  var output = "";
 | 
					  var output = "";
 | 
				
			||||||
 | 
					  var commands = 0;
 | 
				
			||||||
  var prefix;
 | 
					  var prefix;
 | 
				
			||||||
  var currentCategory;
 | 
					  var currentCategory;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -14,7 +15,7 @@ exports.run = (client, message, args, level) => {
 | 
				
			||||||
  };
 | 
					  };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  if(!args[0]) {
 | 
					  if(!args[0]) {
 | 
				
			||||||
    embed.setTitle("Command list");
 | 
					    embed.setTitle(`Commands [${client.commands.size}]`);
 | 
				
			||||||
    embed.setDescription(`For more information on a specific command use \`${prefix}help <command>\`\nFor the full command list use \`${prefix}help all\`\n`);
 | 
					    embed.setDescription(`For more information on a specific command use \`${prefix}help <command>\`\nFor the full command list use \`${prefix}help all\`\n`);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    const myCommands = message.guild ? client.commands.filter(
 | 
					    const myCommands = message.guild ? client.commands.filter(
 | 
				
			||||||
| 
						 | 
					@ -37,16 +38,18 @@ exports.run = (client, message, args, level) => {
 | 
				
			||||||
      const cat = c.help.category.toProperCase();
 | 
					      const cat = c.help.category.toProperCase();
 | 
				
			||||||
      if (currentCategory !== cat) {
 | 
					      if (currentCategory !== cat) {
 | 
				
			||||||
        if(ran == true) {
 | 
					        if(ran == true) {
 | 
				
			||||||
          embed.addField(currentCategory + ":", output.slice(0, -6))
 | 
					          embed.addField(currentCategory + ` [${commands}]`, output.slice(0, -2))
 | 
				
			||||||
          output = "";
 | 
					          output = "";
 | 
				
			||||||
 | 
					          commands = 0;
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        currentCategory = cat;
 | 
					        currentCategory = cat;
 | 
				
			||||||
        ran = true
 | 
					        ran = true
 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
    output += `\`${prefix}${c.help.name}\`**,** `;
 | 
					    output += `\`${prefix}${c.help.name}\`, `;
 | 
				
			||||||
 | 
					    commands = commands + 1;
 | 
				
			||||||
    });
 | 
					    });
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    embed.addField(currentCategory + ":", output.slice(0, -6));
 | 
					    embed.addField(currentCategory + ` [${commands}]`, output.slice(0, -2));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    embed.addField(
 | 
					    embed.addField(
 | 
				
			||||||
      "Invite me",
 | 
					      "Invite me",
 | 
				
			||||||
| 
						 | 
					@ -65,7 +68,7 @@ exports.run = (client, message, args, level) => {
 | 
				
			||||||
  };
 | 
					  };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  if(args[0].toLowerCase() == "all") {
 | 
					  if(args[0].toLowerCase() == "all") {
 | 
				
			||||||
    embed.setTitle("Command list");
 | 
					    embed.setTitle(`Commands [${client.commands.size}]`);
 | 
				
			||||||
    embed.setDescription(`For more information on a specific command use \`${prefix}help <command>\`\nFor the full command list use \`${prefix}help all\`\n`);
 | 
					    embed.setDescription(`For more information on a specific command use \`${prefix}help <command>\`\nFor the full command list use \`${prefix}help all\`\n`);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    const myCommands = client.commands
 | 
					    const myCommands = client.commands
 | 
				
			||||||
| 
						 | 
					@ -84,16 +87,18 @@ exports.run = (client, message, args, level) => {
 | 
				
			||||||
      const cat = c.help.category.toProperCase();
 | 
					      const cat = c.help.category.toProperCase();
 | 
				
			||||||
      if (currentCategory !== cat) {
 | 
					      if (currentCategory !== cat) {
 | 
				
			||||||
        if(ran == true) {
 | 
					        if(ran == true) {
 | 
				
			||||||
          embed.addField(currentCategory + ":", output.slice(0, -6))
 | 
					          embed.addField(currentCategory + ` [${commands}]`, output.slice(0, -2))
 | 
				
			||||||
          output = "";
 | 
					          output = "";
 | 
				
			||||||
 | 
					          commands = 0;
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        currentCategory = cat;
 | 
					        currentCategory = cat;
 | 
				
			||||||
        ran = true
 | 
					        ran = true
 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
    output += `\`${prefix}${c.help.name}\`**,** `;
 | 
					    output += `\`${prefix}${c.help.name}\`, `;
 | 
				
			||||||
 | 
					    commands = commands + 1;
 | 
				
			||||||
    });
 | 
					    });
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    embed.addField(currentCategory + ":", output.slice(0, -6));
 | 
					    embed.addField(currentCategory + ` [${commands}]`, output.slice(0, -2));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    embed.addField(
 | 
					    embed.addField(
 | 
				
			||||||
      "Invite me",
 | 
					      "Invite me",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -20,7 +20,7 @@ exports.run = async (client, message) => {
 | 
				
			||||||
exports.conf = {
 | 
					exports.conf = {
 | 
				
			||||||
  enabled: true,
 | 
					  enabled: true,
 | 
				
			||||||
  guildOnly: false,
 | 
					  guildOnly: false,
 | 
				
			||||||
  aliases: [],
 | 
					  aliases: ["inspire"],
 | 
				
			||||||
  permLevel: "User",
 | 
					  permLevel: "User",
 | 
				
			||||||
  requiredPerms: []
 | 
					  requiredPerms: []
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										37
									
								
								src/commands/ship.js
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										37
									
								
								src/commands/ship.js
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1,37 @@
 | 
				
			||||||
 | 
					const request = require('request')
 | 
				
			||||||
 | 
					exports.run = async (client, message, args) => {
 | 
				
			||||||
 | 
					  message.channel.startTyping();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  var user = client.getUserFromMention(args[0])
 | 
				
			||||||
 | 
					  var user2 = client.getUserFromMention(args[1])
 | 
				
			||||||
 | 
					  
 | 
				
			||||||
 | 
					  var secondLength = Math.floor(user2.username.length / 2);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  var first = user.username.substr(0, user.username.length / 2)
 | 
				
			||||||
 | 
					  var second = user2.username.substr(secondLength, user2.username.length / 2)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  try {
 | 
				
			||||||
 | 
					    var attachment = new Discord.MessageAttachment(`https://api.alexflipnote.dev/ship?user=${user.avatarURL({format: "png"})}&user2=${user2.avatarURL({format: "png"})}`)
 | 
				
			||||||
 | 
					    message.channel.send(`Your ship name is **${first+second}!**`, attachment)
 | 
				
			||||||
 | 
					    message.channel.stopTyping();
 | 
				
			||||||
 | 
					  } catch(err) {
 | 
				
			||||||
 | 
					    message.channel.send(`<:error:466995152976871434> API error: ${err}`);
 | 
				
			||||||
 | 
					    message.channel.stopTyping();
 | 
				
			||||||
 | 
					  };
 | 
				
			||||||
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					exports.conf = {
 | 
				
			||||||
 | 
					  enabled: true,
 | 
				
			||||||
 | 
					  guildOnly: false,
 | 
				
			||||||
 | 
					  aliases: [],
 | 
				
			||||||
 | 
					  permLevel: "User",
 | 
				
			||||||
 | 
					  requiredPerms: []
 | 
				
			||||||
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					exports.help = {
 | 
				
			||||||
 | 
					  name: "ship",
 | 
				
			||||||
 | 
					  category: "Fun",
 | 
				
			||||||
 | 
					  description: "Ship two people together <3",
 | 
				
			||||||
 | 
					  usage: "ship name name2"
 | 
				
			||||||
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -51,13 +51,6 @@ exports.run = (client, message, args) => {
 | 
				
			||||||
      badges += "\n"
 | 
					      badges += "\n"
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    createdTimestamp = user.user.createdTimestamp;
 | 
					 | 
				
			||||||
    var date = new Date(createdTimestamp * 1000);
 | 
					 | 
				
			||||||
    var hours = date.getHours();
 | 
					 | 
				
			||||||
    var minutes = "0" + date.getMinutes();
 | 
					 | 
				
			||||||
    var seconds = "o" + date.getSeconds();
 | 
					 | 
				
			||||||
    console.log(date)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    user.roles.cache.forEach((role) => {
 | 
					    user.roles.cache.forEach((role) => {
 | 
				
			||||||
      roles = roles + role.name + "`, `"
 | 
					      roles = roles + role.name + "`, `"
 | 
				
			||||||
    });
 | 
					    });
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										31
									
								
								src/commands/yoda.js
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										31
									
								
								src/commands/yoda.js
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1,31 @@
 | 
				
			||||||
 | 
					const request = require('request')
 | 
				
			||||||
 | 
					exports.run = async (client, message, args) => {
 | 
				
			||||||
 | 
					    const speech = args.join(' ');
 | 
				
			||||||
 | 
					    if (!args[0]) {
 | 
				
			||||||
 | 
					        return message.channel.send(`<:error:466995152976871434> Please include text for me to convert to yodish. Yes.`)
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    try {
 | 
				
			||||||
 | 
					    const { text } = request({ uri: `http://yoda-api.appspot.com/api/v1/yodish?text=${encodeURIComponent(speech.toLowerCase())}`, json: true }, (error, response, body) => {
 | 
				
			||||||
 | 
					    message.channel.send(JSON.parse(text).yodish)
 | 
				
			||||||
 | 
					    });
 | 
				
			||||||
 | 
					 } catch(err) {
 | 
				
			||||||
 | 
					        message.channel.send(`<:error:466995152976871434> API error: ${err}`);
 | 
				
			||||||
 | 
					        message.channel.stopTyping();
 | 
				
			||||||
 | 
					 }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					exports.conf = {
 | 
				
			||||||
 | 
					    enabled: true,
 | 
				
			||||||
 | 
					    guildOnly: false,
 | 
				
			||||||
 | 
					    aliases: ["yoda","yodasay"],
 | 
				
			||||||
 | 
					    permLevel: "User",
 | 
				
			||||||
 | 
					    requiredPerms: []
 | 
				
			||||||
 | 
					  };
 | 
				
			||||||
 | 
					  
 | 
				
			||||||
 | 
					  exports.help = {
 | 
				
			||||||
 | 
					    name: "yodish",
 | 
				
			||||||
 | 
					    category: "Fun",
 | 
				
			||||||
 | 
					    description: "Turns any text you input into yodish. Yes.",
 | 
				
			||||||
 | 
					    usage: "yodish <text>"
 | 
				
			||||||
 | 
					  };
 | 
				
			||||||
| 
						 | 
					@ -133,6 +133,22 @@ module.exports = client => {
 | 
				
			||||||
    return a;
 | 
					    return a;
 | 
				
			||||||
  };
 | 
					  };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  // USER OBJECT FROM MENTION
 | 
				
			||||||
 | 
					  client.getUserFromMention = mention => {
 | 
				
			||||||
 | 
					    if (!mention) return;
 | 
				
			||||||
 | 
					  
 | 
				
			||||||
 | 
					    if (mention.startsWith('<@') && mention.endsWith('>')) {
 | 
				
			||||||
 | 
					      mention = mention.slice(2, -1);
 | 
				
			||||||
 | 
					  
 | 
				
			||||||
 | 
					      if (mention.startsWith('!')) {
 | 
				
			||||||
 | 
					        mention = mention.slice(1);
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					  
 | 
				
			||||||
 | 
					      return client.users.cache.get(mention);
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					  
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // MUSIC
 | 
					  // MUSIC
 | 
				
			||||||
  client.music = {guilds: {}};
 | 
					  client.music = {guilds: {}};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,4 +1,4 @@
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    "number": "1.1.0",
 | 
					    "number": "1.2.0",
 | 
				
			||||||
    "changelog": "**1.1.0 CHANGELOG:**\n> • Added `~softban`, bans and unbans a user to clear messages\n> • Added `~emoji`, enlarges custom emojis\n> • Added `~inspirobot`, generates an inspirational quote\n> • `~serverinfo` has been changed to be more consistent, and also now displays boosts and if the server is partnered and stuff\n> • `~userinfo` has been changed to be more consistent, also added some stuff\n> • `~about` has been changed, added a thumbnail and removed the description\n> • `~colour` has been changed, it can now generate colours from text\n> • `~hackban` no longer has its own embed\n> • `~eval` now logs to hastebin if output is too large\n> • role names are no longer case sensitive\n> • `~echo` renamed `~say`\n> • Users with the ADMINISTRATOR permission now automatically recieve woomy admin\n> • Fixed `~flip`, `~purge`, `~bohemian_rhapsody` and `~creeper`\n> • Guild join/leave messages no longer include the guild name\n> • Some emojis have been changed\n> • Woomy now supports discord.js v12\n> • Files have been restructured\n> • Logger now logs error stack\n> • Restart now exits with code 0"
 | 
					    "changelog": "**1.1.0 CHANGELOG:**\n> • Added `~softban`, bans and unbans a user to clear messages\n> • Added `~emoji`, enlarges custom emojis\n> • Added `~inspirobot`, generates an inspirational quote\n> • `~serverinfo` has been changed to be more consistent, and also now displays boosts and if the server is partnered and stuff\n> • `~userinfo` has been changed to be more consistent, also added some stuff\n> • `~about` has been changed, added a thumbnail and removed the description\n> • `~colour` has been changed, it can now generate colours from text\n> • `~hackban` no longer has its own embed\n> • `~eval` now logs to hastebin if output is too large\n> • role names are no longer case sensitive\n> • `~echo` renamed `~say`\n> • Users with the ADMINISTRATOR permission now automatically recieve woomy admin\n> • Fixed `~flip`, `~purge`, `~bohemian_rhapsody` and `~creeper`\n> • Guild join/leave messages no longer include the guild name\n> • Some emojis have been changed\n> • Woomy now supports discord.js v12\n> • Files have been restructured\n> • Logger now logs error stack\n> • Restart now exits with code 0"
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue