Bot status changes everyday to a different status on the list, for example: Bigfoot doesn't belive in you either
const lib = require('lib')({token: process.env.STDLIB_SECRET_TOKEN});
let statusOptions = [
`I'm not immature; I just know how to have fun`,
`It’s so simple to be wise. Just think of something stupid to say and then don’t say it`,
`Never make the same mistake twice; there are so many new ones to make`,
`Parachute for sale, used once, never opened!`,
`Some people just need a High-Five on the face`,
`I don’t care what others say or think about me, at least I am attractive to mosquitoes`,
`I like playing with my cat when I’m high. Because I don’t have one when I’m sober`,
`When your Dr. says, “I’ll need to Google that, “… you know it’s time to change the doctor`,
`Before Coronavirus, I’d cough to cover a fart. Now I fart to cover a cough`,
`Bigfoot saw me yesterday, but no one believes him`,
`Bigfoot doesn't belive in you either`,
`I’m having a quarantine party this weekend. None of you are invited!`,
`I am nobody. Nobody is perfect. Therefore, I am perfect!`,
`I’m right 90% of the time, so why worry about the other 3%?`,
`Back in 5 minutes. If not, read this status again`,
];
let selectedStatus = Math.floor(Math.random() * statusOptions.length);
let status = statusOptions[selectedStatus];
let result = await lib.discord.users['@0.1.6'].me.status.update({
activity_name: `${status}`,
activity_type: 'GAME',
status: 'ONLINE',
});