455 commands2 envUpdated 6h agoCreated Aug 26, 2026
commands/fold.js
javascript · 48 lines
1/**#command2name: fold3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12/**#command13name: fold14answer: 15keyboard: 16parse_mode: markdown17aliases: 18allow_only_group: false19need_reply: false20is_web: 021#command**/22 23try {24try { Api.answerCallbackQuery({}); } catch (e0) {}25var uid = "";26if (typeof user !== "undefined" && user) {27 if (user.telegramid) uid = String(user.telegramid);28 else if (user.id) uid = String(user.id);29}30if (!uid) return;31var en = String((await db.global.get("lang_" + uid)) || "") === "en";32var t = en33 ? "✦ folders ✦\nShop / Games / Social / Tools / Extra"34 : "✦ پوشههای زورنیکس ✦\n────────────────\nستاره را دست نزن.\nفاز ۵: /xtra";35Api.sendMessage({36 text: t,37 reply_markup: {38 inline_keyboard: [39 [{ text: "🛒 فروشگاه", callback_data: "fols" }, { text: "🎮 بازی", callback_data: "folg" }],40 [{ text: "👥 اجتماعی", callback_data: "folc" }, { text: "🛠 ابزار", callback_data: "folt" }],41 [{ text: "✨ فاز ۵", callback_data: "xtra" }],42 [{ text: "📂 فاز ۳", callback_data: "more" }, { text: "🏠 منو", callback_data: "/start" }]43 ]44 }45});46} catch (e) {47 Bot.sendMessage("خطا fold");48}