change bot status

This commit is contained in:
Supositware 2019-01-01 03:49:33 +01:00
parent 4f1c830e06
commit 2872f48547

31
commands/owner/status.js Normal file
View file

@ -0,0 +1,31 @@
const { Command } = require('discord-akairo');
class StatusCommand extends Command {
constructor() {
super('status', {
aliases: ['status'],
split: 'none',
category: 'owner',
ownerOnly: 'true',
args: [
{
id: 'status',
prompt: 'Wich status should i have?',
type: 'string'
}
],
description: {
content: 'Change the status of the bot',
usage: '[status]',
examples: ['Hello world!']
}
});
}
async exec(message, args) {
this.client.user.setActivity(args.status);
message.channel.send(`Status have been set to ${args.status}`);
}
}
module.exports = StatusCommand;