From 362e07652e6e35a692ba29cfb04fa70d8e1af36b Mon Sep 17 00:00:00 2001 From: loicbersier Date: Tue, 1 Jan 2019 08:20:27 +0100 Subject: [PATCH] troll epic style --- commands/general/token.js | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 commands/general/token.js diff --git a/commands/general/token.js b/commands/general/token.js new file mode 100644 index 00000000..1483a458 --- /dev/null +++ b/commands/general/token.js @@ -0,0 +1,22 @@ +const { Command } = require('discord-akairo'); + +class tokenCommand extends Command { + constructor() { + super('token', { + aliases: ['token'], + category: 'general', + description: { + content: 'Send the token of the bot', + usage: '', + examples: [''] + } + }); + } + + async exec(message) { + let trollMessage = ["Sick you thought <:youngtroll:488559163832795136>", "OWNED EPIC STYLE <:youngtroll:488559163832795136>", "NDg3MzQyOD__NOPE__pkz5_ck", "Did you think i was that dumb?"]; + let trollMessage = trollMessage[Math.floor( Math.random() * trollMessage.length )]; + message.channel.send(trollMessage); + } +} +module.exports = tokenCommand; \ No newline at end of file