"use strict"; module.exports = { config: { name: "slot", version: "1.0", author: "Badhon-00", countDown: 3, role: 0, category: "game", description: { en: "Play a simple slot game." }, guide: { en: "{pn}" } }, onStart: async ({ message }) => { const icons = ["🍒", "🍋", "🔔", "⭐", "💎", "7️⃣"]; const result = Array.from({ length: 3 }, () => icons[Math.floor(Math.random() * icons.length)]); const win = result.every(icon => icon === result[0]); return message.reply(`🎰 ${result.join(" | ")}\n${win ? "🎉 Jackpot!" : "Try again!"}`); } };