Moved all handlers into one file

This commit is contained in:
2023-11-21 13:21:40 +01:00
parent 926d1f01e8
commit 5962609e39
15 changed files with 52 additions and 133 deletions

View File

@@ -0,0 +1,11 @@
module.exports = {
name: 'conolelog',
description: "console log",
type: 'event',
event: 'ready',
/** @param { import('discord.js').Client } client */
execute(client) {
console.log("Logged in as " + client.user.tag + "!");
}
}

View File

@@ -0,0 +1,27 @@
const { onlineLogChannel, color } = require('../../../config/options.json');
module.exports = {
name: 'sendonlinemessage',
description: "send an online message",
type: 'event',
event: 'ready',
execute(client) {
if (process.env.NODE_ENV !== 'dev') {
const channel = client.channels.cache.get(onlineLogChannel);
const embedColor = Number(color.replace('#', '0x'))
if (!channel) {
console.log(`[ERROR] Could not find channel used for online message.`);
return;
}
channel.send({
embeds: [{
description: `Bot is online!`,
color: embedColor
}]
});
}
}
}

View File

@@ -0,0 +1,34 @@
const statuses = require('../../../config/statuses.json')
module.exports = {
name: 'status',
description: 'Sets the status of the bot',
type: 'event',
event: 'ready',
/** @param { import('discord.js').Client } client */
execute(client) {
// Playing 0
// Streaming 1
// Listening 2
// Watching 3
// Custom 4
// Competing 5
client.user.setActivity(
{ name: statuses[0].name, type: 3}
);
let i = 0;
setInterval(() =>
client.user.setActivity(
statuses[i = 1, i++ % statuses.length]
),
1000 * 60 * 10
)
client.user.setStatus('dnd');
}
}