From 13953464e9fe5dc7c91bee3b08163edb5a1d4750 Mon Sep 17 00:00:00 2001 From: 8cy <50817549+8cy@users.noreply.github.com> Date: Tue, 7 Jul 2020 06:22:25 -0700 Subject: add owner cmd --- src/commands/bot/owner.ts | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/commands/bot/owner.ts (limited to 'src/commands/bot/owner.ts') diff --git a/src/commands/bot/owner.ts b/src/commands/bot/owner.ts new file mode 100644 index 0000000..ac3ba93 --- /dev/null +++ b/src/commands/bot/owner.ts @@ -0,0 +1,26 @@ +import { Command, CommandoMessage } from 'discord.js-commando'; +import emoji from 'emoji-random'; +import { MessageEmbed } from 'discord.js'; + +module.exports = class OwnerBot extends Command { + constructor(client) { + super(client, { + name: 'owner', + group: 'bot', + memberName: 'owner', + description: 'Self explanatory.', + examples: ['uwu!owner'], + userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'], + clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'], + throttling: { + usages: 5, + duration: 30 + }, + }); + } + run(msg: CommandoMessage) { + let emb = new MessageEmbed() + .setDescription(`<@217348698294714370> is the owner/ maintainer of this bot. ${emoji.random()}`) + msg.say(emb) + } +}; \ No newline at end of file -- cgit v1.2.3