This commit is contained in:
Jess 2024-02-21 00:22:50 +00:00 committed by GitHub
parent 4c598e7e64
commit ec9315fe83
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 67 additions and 81 deletions

View file

@ -1,7 +1,6 @@
/* (TEMPLATE )Bot config file; edit this to your liking */ /* (TEMPLATE )Bot config file; edit this to your liking */
/* Make sure to rename this to config.ts */ /* Make sure to rename this to config.ts */
export default export default {
{
prefix: "X", prefix: "X",
token: "X", token: "X",
owner: "X" owner: "X"

View file

@ -1,11 +1,9 @@
import { Message } from "concordia"; import { Message } from "concordia";
export default export default {
{
name: 'goodnight', name: 'goodnight',
description: 'i lost hours of sleep to ts', description: 'i lost hours of sleep to ts',
execute(msg: Message, args: string[]) execute(msg: Message, args: string[]) {
{
msg.reply('good night.'); msg.reply('good night.');
} }
} }

View file

@ -4,11 +4,9 @@ import cfg from "../config";
import { ActivityType, Client, Collection, Message } from "concordia"; import { ActivityType, Client, Collection, Message } from "concordia";
import fs from "node:fs" import fs from "node:fs"
class CommandClient extends Client class CommandClient extends Client {
{
commands: Collection<string, any>; commands: Collection<string, any>;
constructor() constructor() {
{
super(); super();
this.commands = new Collection<string, any>(); this.commands = new Collection<string, any>();
} }
@ -18,8 +16,7 @@ const client = new CommandClient();
/* Command Handling */ /* Command Handling */
const commandFiles = fs.readdirSync('./commands').filter(file => file.endsWith('.js')); const commandFiles = fs.readdirSync('./commands').filter(file => file.endsWith('.js'));
for (const file of commandFiles) for (const file of commandFiles) {
{
const command = require(`./commands/${file}`).default; const command = require(`./commands/${file}`).default;
// set new item in collection with key as command name & value as exported module // set new item in collection with key as command name & value as exported module
client.commands.set(command.name, command); client.commands.set(command.name, command);
@ -28,18 +25,15 @@ for (const file of commandFiles)
/* Bot start-up & continued behaviour */ /* Bot start-up & continued behaviour */
function onReady(): void function onReady(): void {
{ client.user!.setPresence({
client.user!.setPresence
({
activity: { name: 'with my balls.' }, activity: { name: 'with my balls.' },
status: 'idle' status: 'idle'
}); });
console.log("Logged in!"); console.log("Logged in!");
} }
function onMessage(msg: Message): void function onMessage(msg: Message): void {
{
if (msg.author.bot || !msg.content.startsWith(cfg.prefix)) if (msg.author.bot || !msg.content.startsWith(cfg.prefix))
return; return;
@ -48,12 +42,10 @@ function onMessage(msg: Message): void
if (!client.commands.has(command)) return; if (!client.commands.has(command)) return;
try try {
{
client.commands.get(command).execute(msg, args); client.commands.get(command).execute(msg, args);
} }
catch (error) catch (error) {
{
console.error(error); console.error(error);
msg.reply('There was an error...'); msg.reply('There was an error...');
} }

View file

@ -1,15 +1,12 @@
{ {
"compilerOptions": "compilerOptions": {
{
"target": "es2020", "target": "es2020",
"module": "commonjs", "module": "commonjs",
"outDir": "build/", "outDir": "build/",
"esModuleInterop": true, "esModuleInterop": true,
"strict": true "strict": true
}, },
"include": [
"include":
[
"src/**/*", "src/**/*",
"config.json" "config.json"
] ]