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,8 +1,7 @@
/* (TEMPLATE )Bot config file; edit this to your liking */
/* Make sure to rename this to config.ts */
export default
{
prefix: "X",
token: "X",
owner: "X"
export default {
prefix: "X",
token: "X",
owner: "X"
}

View file

@ -1,20 +1,20 @@
{
"name": "vanilje",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.11.19",
"@types/ws": "^8.5.10",
"typescript": "^5.3.3"
},
"dependencies": {
"concordia": "^12.5.5"
}
"name": "vanilje",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.11.19",
"@types/ws": "^8.5.10",
"typescript": "^5.3.3"
},
"dependencies": {
"concordia": "^12.5.5"
}
}

View file

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

View file

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

View file

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