import { spacecraftSupabase } from "./../../function"; import { ActionRowBuilder, ButtonBuilder, ButtonStyle, Client, Collection, Colors, EmbedBuilder, Events, Message, TextChannel, } from "discord.js"; import { CustomClient, Event } from "../../base/classes"; import config, { QuestPicker } from "../../config"; import IAchievement from "../../types/achievement"; export default class Ready extends Event { constructor(client: CustomClient) { super(client, { name: Events.MessageCreate, description: "Message Create event.", once: false, }); } async execute(message: Message) { if (message.author.bot) return; const id = this.client.user.id; if (!message.content.startsWith(`<@${id}>`)) return; const args = message.content.trim().split(/ +/g); const commandName = args[0].replace(`<@${id}>`, "") === "" ? args[1]?.toLowerCase() : args[0].split(">")[1]?.toLowerCase(); if (!commandName) return message.reply({ embeds: [ new EmbedBuilder() .setDescription( `**Halo :wave:!** Gunakanlah command "<@${id}> play" untuk memulai lagu.` ) .setFooter({ text: `Untuk melihat command yang lain, gunakan "@${this.client.user.username} help" atau Slash Command!`, }) .setColor(Colors.Red), ], }); const command = this.client.prefixCommands.get(commandName) || this.client.prefixCommands.find((cmd) => cmd.aliases?.find((alias) => alias === commandName) ); if (!command) return message.reply({ embeds: [ new EmbedBuilder() .setDescription(`Saya tidak menemukan command \`${commandName}\`!`) .setFooter({ text: `Untuk melihat command yang lain, gunakan "@${this.client.user.username} help" atau Slash Command!`, }) .setColor(Colors.Red), ], }); const { cooldown } = this.client; if (!cooldown.has(command.command)) cooldown.set(command.command, new Collection()); const now = Date.now(); const timestamp = cooldown.get(command.command); const cooldownAmount = (command.cooldown || 5) * 1000; if ( timestamp.has(message.author.id) && now < (timestamp.get(message.author.id) || 0) + cooldownAmount ) return message.reply({ embeds: [ new EmbedBuilder() .setDescription( `⏳ Sabar napa, tunggu sampe \`${( ((timestamp.get(message.author.id) || 0) + cooldownAmount - now) / 1000 ).toFixed(1)} detik\` dan coba lagi.` ) .setColor(Colors.Red) .setFooter({ text: "✨ Dreasic" }), ], }); timestamp.set(message.author.id, now); setTimeout(() => timestamp.delete(message.author.id), cooldownAmount); console.log(message.member.voice.channel); command.execute(message, args); } }