You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Haha-Yes/commands/owner/username.js

31 lines
666 B
JavaScript

const { Command } = require('discord-akairo');
class usernameCommand extends Command {
constructor() {
super('username', {
aliases: ['username'],
split: 'none',
category: 'owner',
ownerOnly: 'true',
args: [
{
id: 'username',
prompt: 'Wich username should i have?',
type: 'string'
}
],
description: {
content: 'Change the username of the bot',
usage: '[username]',
examples: ['haha no']
}
});
}
async exec(message, args) {
this.client.user.setUsername(args.username);
message.channel.send(`The username have been changed sucessfully to ${args.username}`);
}
}
module.exports = usernameCommand;