0.1.0 initial commit

This commit is contained in:
Yusur 2025-01-17 10:28:24 +01:00
commit 6b88aff1e7
14 changed files with 1559 additions and 0 deletions

37
src/register.ts Normal file
View file

@ -0,0 +1,37 @@
import { config as configDotenv } from 'dotenv';
configDotenv();
import commandList from "./commandList";
import { REST, Routes } from 'discord.js';
function registerGlobal(rest: REST, clientId: string, commands: any){
rest.put(Routes.applicationCommands(clientId), { body: commands })
.then(() => { console.log(`Successfully registered ${commands.length} / commands globally. Please wait until 2 hours before they are updated`); })
.catch(console.error);
}
function registerLocal(rest: REST, clientId: string, commands: any, guilds: string[]){
for (const guildId of guilds) {
rest.put(Routes.applicationGuildCommands(clientId, guildId), { body: commands })
.then(() => { console.log(`Successfully registered ${commands.length} / commands in guild ${guildId}`); })
.catch(console.error);
}
}
const clientId = process.env.CLIENT_ID;
const commands = [];
for (let command of commandList) {
commands.push(command.data.toJSON());
}
const guilds = process.env.GUILD_IDS.trim().split(/[\s,;]+/);
const rest = new REST({ version: '10' }).setToken(process.env.TOKEN);
if (guilds.length === 0){
registerGlobal(rest, clientId, commands);
} else {
registerLocal(rest, clientId, commands, guilds);
}