kkapil9112/Aestheticmodes9_botPublic · Bot Template

AIA Telegram-based digital goods store bot with a full admin panel for managing products, plans, stock, keys, categories, resellers, balances, and coupons. It uses TeleBotHost APIs like Bot, Api, User, Libs.ResourcesLib, and HTTP to run a shop interface, handle admin-only commands, track users, and send inventory/balance summaries. The implementation appears focused on selling game-related accounts and keys such as FreeFire items, with customer-facing store, balance, coupon, and back-to-menu flows.

Commerceshopadmin-panelbalanceresellercouponsstock-management
ProfileTelegram
102 commands1 envUpdated 29d agoCreated Aug 9, 2026
Back to folder

commands/_dismiss_msg.js

javascript · 24 lines

Raw
1/**#command2name: /dismiss_msg3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12try {13  var callbackId = request ? request.id : (request.callback_query && request.callback_query.id);14 15  if (request && request.message) {16    try { Api.deleteMessage({ chat_id: chat.chatid, message_id: request.message.message_id }); } catch (e) {}17  }18 19  if (callbackId) {20    Api.answerCallbackQuery({ callback_query_id: String(callbackId) });21  }22} catch (err) {23  Bot.sendMessage("⚠️ System Error: " + err.message);24}