455 commands2 envUpdated 7h agoCreated Aug 26, 2026
commands/_box.js
javascript · 49 lines
1/**#command2name: /box3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12let uid = "" + user.telegramid;13let now = new Date();14let today = now.getFullYear() + "-" + (now.getMonth() + 1) + "-" + now.getDate();15let lastBox = await db.global.get("last_box_" + uid);16 17if (lastBox === today) {18 Bot.sendMessage("⚠️ شما صندوقچه امروز را باز کردهاید! فردا مجدداً میتوانید شانس خود را امتحان کنید 🎁");19 return;20}21 22await db.global.set("last_box_" + uid, today);23 24let boxes = [25 { text: "🎁 ۱۰ پیام اضافه طلایی", bonus: 10 },26 { text: "🎁 ۲۰ پیام اضافه الماس", bonus: 20 },27 { text: "🎁 ۳۵ پیام اضافه کریستال", bonus: 35 },28 { text: "🔥 جایزه بزرگ: ۵۰ پیام اضافه!", bonus: 50 },29 { text: "👑 جایزه سلطنتی: ۲ روز اشتراک SuperZorenix رایگان!", super: true }30];31 32let won = boxes[Math.floor(Math.random() * boxes.length)];33 34if (won.super) {35 let twoDays = 2 * 24 * 60 * 60 * 1000;36 await db.global.set("plan_" + uid, "super");37 await db.global.set("plan_exp_" + uid, Date.now() + twoDays);38} else {39 let curBonus = parseInt(await db.global.get("bonus_msg_" + uid) || 0);40 await db.global.set("bonus_msg_" + uid, curBonus + won.bonus);41}42 43Api.sendMessage({44 text: "🎁 **صندوقچه جادویی زورنیکس AI باز شد...** ✨\n\n" +45 "🎉 **تبریک! شما برنده شدید:**\n" +46 won.text + "\n\n" +47 "این جایزه آنی در حسابتان اعمال شد. فردا سر بزنید! ❤️",48 parse_mode: "Markdown"49});