possumbot/commands/info.js

17 lines
464 B
JavaScript
Raw Normal View History

2024-08-21 17:00:40 +02:00
function execute(client, event, args) {
2024-08-24 15:55:33 +02:00
var info = `Source code: https://git.lgbt/root/possumbot\n`;
2024-08-21 17:00:40 +02:00
info += `Commands: ${client.commands.length}\n`;
2024-08-24 15:55:33 +02:00
info += `Modules: ${client.modules.length}\n`;
2024-08-21 17:00:40 +02:00
info += `Prefix: ${process.env.PREFIX} (you can also mention the bot!)\n`;
info += `Owner: ${process.env.OWNER_ID}`;
client.reply(event, info);
}
export default {
command: "info",
name: "info",
desc: "show general info about the bot",
execute
}