455 commands2 envUpdated 7h agoCreated Aug 26, 2026
commands/more.js
javascript · 56 lines
1/**#command2name: more3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12/**#command13name: more14answer: 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;31Api.sendMessage({32 text:33 "📂 فاز ۳ و ۴ زورنیکس\n" +34 "────────────────\n" +35 "ستاره را دست نزن.\n" +36 "پوشهها: /fold\n" +37 "کد تخفیف: /dsc کد\n" +38 "اتاق: /rm حرف: /rms متن\n" +39 "کوتاه: /sh آدرس بعد /go کد\n" +40 "گزارش: /rpt آیدی دلیل",41 reply_markup: {42 inline_keyboard: [43 [{ text: "📂 پوشهها فاز ۴", callback_data: "fold" }],44 [{ text: "🏆 دعوت واقعی", callback_data: "/top" }, { text: "💎 پولدارها", callback_data: "zctop" }],45 [{ text: "📊 نظرسنجی", callback_data: "pol" }, { text: "🏠 اتاق", callback_data: "rm" }],46 [{ text: "📣 اعلان", callback_data: "ntf" }, { text: "⏳ رویداد", callback_data: "ev" }],47 [{ text: "🪪 کارت من", callback_data: "prf" }, { text: "🏆 مدال", callback_data: "ach" }],48 [{ text: "🌍 ساعت", callback_data: "clock" }, { text: "📓 دفترچه", callback_data: "note" }],49 [{ text: "🔕 DND", callback_data: "dnd" }, { text: "🌐 زبان", callback_data: "lng" }],50 [{ text: "❓ راهنما", callback_data: "faq" }, { text: "🏠 منو", callback_data: "/start" }]51 ]52 }53});54} catch (e) {55 Bot.sendMessage("خطا more");56}