mahdiyar30301/ZorenixAI_botPublic · Bot Template

Not Bot Is Hacking You 🤣🤩

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

commands/secret.js

javascript · 45 lines

Raw
1/**#command2name: secret3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12/**#command13name: secret14answer: 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;31var sl = "https://t.me/ZorenixAI_bot?start=secret_" + uid;32var sh = "https://t.me/share/url?url=" + sl.split("?").join("%3F");33Api.sendMessage({34  text:35    "💌 لینک ناشناس تو\n───────────────\n" +36    "این لینک را برای دوست/استوری بفرست.\n" +37    "هرکس بزند می‌تواند بدون اسم به تو پیام بدهد.\n\n" +38    "لینک:\n" + sl + "\n\n" +39    "با لینک خودت از همین اکانت پیام نده.",40  reply_markup: { inline_keyboard: [41    [{ text: "📤 اشتراک لینک", url: sh }],42    [{ text: "🏠 منو", callback_data: "/start" }]43  ] }44});45} catch (e) { Bot.sendMessage("خطا secret"); }