manafzz147/shenskyxfreegacha_botPublic · Bot Template

AIBot presents a numbered service menu for WhatsApp and Facebook with country selection through inline keyboards. It handles callback queries to edit the menu message, includes a /testreply debug command that reports whether the current message is a reply, and provides an /add command that parses service and country arguments and accepts phone numbers from a replied message or extra arguments. The flow is command-based and uses TeleBotHost built-ins like Api and Bot.

Utilitywhatsappfacebookinline-keyboardcallback-queryadd-numbersri-lanka
ProfileTelegram
4 commands0 envUpdated 1d agoCreated Sep 3, 2026
Back to folder

commands/_start.js

javascript · 23 lines

Raw
1/**#command2name: /start3answer: .4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12Api.sendMessage({13  text: "🌍 *NUMBER BOT*\n\nPilih service:",14  parse_mode: "Markdown",15  reply_markup: {16    inline_keyboard: [17      [18        { text: "📱 WHATSAPP", callback_data: "wa" },19        { text: "📘 FACEBOOK", callback_data: "fb" }20      ]21    ]22  }23});