1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// TODO: bot status module.exports = { name: 'botstatus', aliases: ['status', 'bs'], description: '', async execute(msg, args, bot) { if (msg.member.hasPermission('KICK_MEMBERS')) { m = args.join(' '); bot.user.setActivity(m); } else { msg.reply('insufficent perms bruh'); } } };