// 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'); } } };