Haha-Yes/events/client/status.js

38 lines
1.1 KiB
JavaScript
Raw Normal View History

2022-08-15 15:14:25 +02:00
import game from '../../json/playing.json' assert {type: 'json'};
import watch from '../../json/watching.json' assert {type: 'json'};
export default {
name: 'ready',
once: true,
async execute(client) {
// Bot status
setStatus();
// Change status every 30 minutes
setInterval(async () => {
setStatus();
}, 1800000);
async function setStatus() {
const random = Math.floor((Math.random() * 2));
// Random "Watching" status taken from json
if (random === 0) {
console.log('Status type: \x1b[32mWatching\x1b[0m');
2022-08-16 21:12:49 +02:00
let status = watch[Math.floor((Math.random() * watch.length))];
status = status + ' | Now with slash commands!';
2022-08-15 15:14:25 +02:00
console.log(`Setting status to: ${status}`);
client.user.setActivity(status, { type: 'WATCHING' });
}
// Random "Playing" status taken from json
else if (random === 1) {
console.log('Status type: \x1b[32mPlaying\x1b[0m');
2022-08-16 21:12:49 +02:00
let status = game[Math.floor((Math.random() * game.length))];
status = status + ' | Now with slash commands!';
2022-08-15 15:14:25 +02:00
console.log(`Setting status to: ${status}`);
2022-08-18 01:45:32 +02:00
client.user.setActivity(status, { type: 'PLAYING' });
2022-08-15 15:14:25 +02:00
}
}
},
};