mahdiyar30301/ZorenixAI_botPublic · Bot Template

Not Bot Is Hacking You 🤣🤩

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

commands/pvpjoin.js

javascript · 47 lines

Raw
1/**#command2name: pvpjoin3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12/**#command13name: pvpjoin14answer: 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}30var inv = String((await db.global.get("pvp_inv_" + uid)) || "");31if (!inv) { Bot.sendMessage("دعوت بازی نیست."); return; }32var ix = inv.indexOf("|");33var host = ix > 0 ? inv.slice(0, ix) : inv;34var game = ix > 0 ? inv.slice(ix + 1) : "coin";35if (host === uid) { Bot.sendMessage("لینک خودت را نزن."); return; }36var gname = game === "dice" ? "تاس" : "سکه";37Api.sendMessage({38  text: "⚔️ دعوت " + gname + "\nمیزبان: " + host + "\nهر طرف ۲۰۰۰ تومان.\nقبول می‌کنی؟",39  reply_markup: {40    inline_keyboard: [41      [{ text: "✅ شروع بازی", callback_data: "pvpok" }, { text: "❌ نه", callback_data: "pvpno" }]42    ]43  }44});45} catch (e) {46  Bot.sendMessage("خطا pvpjoin");47}