ashoksarande3/ASHOK_HACK_STORE_BOTPublic · Bot Template

AIThis bot operates as a commercial storefront for selling Free Fire game hacks and cheats via UPI QR code payments. It features a dynamic pricing system with separate normal and reseller prices, product plans with flexible durations (days, hours, minutes), and a reseller program requiring a one-time upgrade fee. The bot handles payment verification through QR code generation and expiry tracking, user verification via Telegram contact sharing, and admin tools for stock management, plan creation, and ownership transfer. It includes a balance system, maintenance mode, and Telegram Stars payment fallback. The codebase uses TeleBotHost's TBL JavaScript APIs (Bot, Api, HTTP, db properties, Libs) for all logic.

Commercefreefiregame-hacksupi-paymentsqr-codesreseller-systemdynamic-pricing
ProfileTelegram
102 commands0 envUpdated 16d agoCreated Aug 22, 2026
Back to folder

commands/_addreseller_info.js

javascript · 31 lines

Raw
1/**#command2name: /addreseller_info3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12// =========================================================13// 👑 Admin panel button — shows usage instructions for /addreseller14// (a real Telegram command needs to be typed since it takes a User ID param)15// =========================================================16 17try {18  var ownerId = Bot.getProperty("owner_id") || "8660373585";19  var isCoAdmin = Bot.getProperty("co_admin_" + String(chat.chatid));20  if (String(chat.chatid) !== ownerId && !isCoAdmin) { return; }21 22  Bot.sendMessage(23    "<blockquote>👑 <b>DIRECT RESELLER (No Payment)</b></blockquote>\n\n" +24    "<b>Usage:</b> <code>/addreseller USERID</code>\n" +25    "<i>Example:</i> <code>/addreseller 123456789</code>\n\n" +26    "<i>User turant permanent Reseller ban jaayega, koi payment nahi lagegi. Unhe ek premium notification bhi mil jaayega.</i>",27    { parse_mode: "HTML" }28  );29} catch (err) {30  Bot.sendMessage("⚠️ Error: " + err.message);31}