one more status

This commit is contained in:
codepupper 2019-11-12 09:19:56 +01:00
parent 742c627348
commit 7022efebb8
1 changed files with 46 additions and 8 deletions

View File

@ -1,17 +1,55 @@
const { log } = require('../utils');
const {
log
} = require('../utils');
const config = require('../config');
const blapi = require('blapi');
//blapi.setLogging(true);
function randomStatus(client) {
const States = [
{ activity: { name: 'server fans whirr 💨', type: 'LISTENING' }, status: 'online' },
{ activity: { name: "my master's keyboard -w-", type: 'LISTENING' }, status: 'online' },
{ activity: { name: client.guilds.size + ' Servers -w-', type: 'WATCHING' }, status: 'online' },
const States = [{
activity: {
name: 'server fans whirr 💨',
type: 'LISTENING'
},
status: 'online'
},
{
activity: {
name: "my master's keyboard -w-",
type: 'LISTENING'
},
status: 'online'
},
{
activity: {
name: client.guilds.size + ' Servers -w-',
type: 'WATCHING'
},
status: 'online'
},
// { game: { name: `${client.users.get('318044130796109825').username} dance~`, type: 'WATCHING' }, status: 'dnd' },
// { game: { name: thal.users.size + ' Wolves', type: 'WATCHING' }, status: 'dnd' },
{ activity: { name: 'Δ & ♫', type: 'LISTENING' }, status: 'online' },
{ activity: { name: `'help | thaldr.in`, type: 'WATCHING' }, status: 'online' }
{
activity: {
name: 'Δ & ♫',
type: 'LISTENING'
},
status: 'online'
},
{
activity: {
name: 'True Damage - GIANTS',
type: 'LISTENING'
},
status: 'online'
},
{
activity: {
name: `'help | thaldr.in`,
type: 'WATCHING'
},
status: 'online'
}
// { game: { name: `over ${thal.users.get('318044130796109825').username}~`, type: 'WATCHING' }, status: 'dnd' }
];
let status = States[~~(Math.random() * States.length)];
@ -28,4 +66,4 @@ module.exports = {
randomStatus(client);
}, 60000);
}
};
};