change status to what ever you want just by using a command on discord do !status example
const lib = require('lib')({token: process.env.STDLIB_SECRET_TOKEN});
if (context.params.event.content.startsWith('!status')) {
let reason = context.params.event.content.split(' ').slice(1).join(' ');
let message = context.params.event.content;
await lib.discord.users['@0.1.0'].me.status.update({
activity_name: `${reason}`,
activity_type: 'LISTENING',
url: '',
status: 'ONLINE', //, IDLE, ONLINE, INVISIBLE.
});
}
//sorry there is no permission you can add permission if you want//