mahdiyar30301/ZorenixAI_botPublic · Bot Template

Not Bot Is Hacking You 🤣🤩

Utilityutility
ProfileTelegram
455 commands2 envUpdated 6h agoCreated Aug 26, 2026
Back to folder

commands/plus.js

javascript · 51 lines

Raw
1/**#command2name: plus3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12/**#command13name: plus14answer: 15keyboard: 16parse_mode: 17aliases: 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;31 32await db.global.set("await_plus_" + uid, "");33await db.global.set("plus_mode_" + uid, "");34Api.sendMessage({35  text:36    "✦ ZORENIX PLUS  ·  GLASS\n" +37    "───────────────\n" +38    "همه بخش‌های جدید از همین شیشه.\n" +39    "۱ ZC = ۱۰۰۰ تومان = ۱۰٬۰۰۰ ریال",40  reply_markup: { inline_keyboard: [41    [{ text: "🤣 میم مسخره", callback_data: "meme" }, { text: "🗣 حاضرجوابی", callback_data: "rst" }],42    [{ text: "🏆 برترین‌ها", callback_data: "topz" }, { text: "🧮 ماشین حساب ZC", callback_data: "zcc" }],43    [{ text: "🎁 هدیه روزانه", callback_data: "dlyg" }, { text: "🎲 تصادفی ۴۸س", callback_data: "rngg" }],44    [{ text: "🧙 کاراکتر", callback_data: "chr" }, { text: "🐾 پت", callback_data: "pet" }],45    [{ text: "🎒 اینونتوری", callback_data: "inv" }, { text: "🏰 کلن", callback_data: "cln" }],46    [{ text: "⌨️ چالش تایپ", callback_data: "typ" }, { text: "🚩 حدس پرچم", callback_data: "flg" }],47    [{ text: "🎵 آهنگ", callback_data: "msc" }, { text: "🏠 منو", callback_data: "/start" }]48  ] }49});50 51} catch (e) { Bot.sendMessage("خطا plus"); }