mahdiyar30301/ZorenixAI_botPublic · Bot Template

Not Bot Is Hacking You 🤣🤩

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

commands/adm_giftcode.js

javascript · 19 lines

Raw
1/**#command2name: adm_giftcode3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12try {13  var uid = String((user && (user.telegramid || user.id)) || "");14  if (uid !== "5861439682" && (await db.global.get("rank_" + uid)) !== "admin") { Bot.sendMessage("🚫 فقط ادمین"); return; }15  Api.sendMessage({16    text: "🎁 کد هدیه\n\n/makecode CODE COUNT PLAN DAYS\nمثال:\n/makecode EID50 100 normal 7",17    reply_markup: { inline_keyboard: [[{ text: "⬅️ بازگشت پنل", callback_data: "panel" }]] }18  });19} catch (e) { Bot.sendMessage(String(e && e.message ? e.message : e)); }