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
4 commands0 envUpdated 1d agoCreated Sep 3, 2026
commands/_handle_callback_query.js
javascript · 142 lines
1/**#command2name: /handle_callback_query3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12// 1. Jawab callback biar spinner hilang13Api.answerCallbackQuery({14 callback_query_id: update.callback_query.id15});16 17// 2. Ambil data tombol yang dipencet18let data = update.callback_query.data;19let chatId = update.callback_query.message.chat.id;20let msgId = update.callback_query.message.message_id;21 22// 3. Edit pesan sesuai tombol23if (data === "wa") {24 Api.editMessageText({25 chat_id: chatId,26 message_id: msgId,27 text: "📱 *WHATSAPP*\n\nPilih country:",28 parse_mode: "Markdown",29 reply_markup: {30 inline_keyboard: [31 [32 { text: "🇱🇰 SRI LANKA", callback_data: "wa_lk" },33 { text: "🇰🇬 KYRGYZSTAN", callback_data: "wa_kg" }34 ],35 [36 { text: "🔙 Back", callback_data: "home" }37 ]38 ]39 }40 });41}42 43else if (data === "fb") {44 Api.editMessageText({45 chat_id: chatId,46 message_id: msgId,47 text: "📘 *FACEBOOK*\n\nPilih country:",48 parse_mode: "Markdown",49 reply_markup: {50 inline_keyboard: [51 [52 { text: "🇱🇰 SRI LANKA", callback_data: "fb_lk" },53 { text: "🇰🇬 KYRGYZSTAN", callback_data: "fb_kg" }54 ],55 [56 { text: "🔙 Back", callback_data: "home" }57 ]58 ]59 }60 });61}62 63else if (data === "home") {64 Api.editMessageText({65 chat_id: chatId,66 message_id: msgId,67 text: "🌍 *SECRET NUMBER BOT*\n\nPilih service:",68 parse_mode: "Markdown",69 reply_markup: {70 inline_keyboard: [71 [72 { text: "📱 WHATSAPP", callback_data: "wa" },73 { text: "📘 FACEBOOK", callback_data: "fb" }74 ]75 ]76 }77 });78}79 80else if (data === "wa_lk") {81 Api.editMessageText({82 chat_id: chatId,83 message_id: msgId,84 text: "🎰 *HASIL GACHA*\n\n🇱🇰 SRI LANKA — WHATSAPP\n📱 Nomor: `+94781173945`\n🔵 Rarity: Rare\n⭐ Skor: +45670",85 parse_mode: "Markdown",86 reply_markup: {87 inline_keyboard: [88 [{ text: "🎲 Gacha Lagi", callback_data: "wa_lk" }],89 [{ text: "🔙 Pilih Country", callback_data: "wa" }],90 [{ text: "🏠 Main Menu", callback_data: "home" }]91 ]92 }93 });94}95 96else if (data === "wa_kg") {97 Api.editMessageText({98 chat_id: chatId,99 message_id: msgId,100 text: "🎰 *HASIL GACHA*\n\n🇰🇬 KYRGYZSTAN — WHATSAPP\n📱 Nomor: `+996555123456`\n🟢 Rarity: Uncommon\n⭐ Skor: +12340",101 parse_mode: "Markdown",102 reply_markup: {103 inline_keyboard: [104 [{ text: "🎲 Gacha Lagi", callback_data: "wa_kg" }],105 [{ text: "🔙 Pilih Country", callback_data: "wa" }],106 [{ text: "🏠 Main Menu", callback_data: "home" }]107 ]108 }109 });110}111 112else if (data === "fb_lk") {113 Api.editMessageText({114 chat_id: chatId,115 message_id: msgId,116 text: "🎰 *HASIL GACHA*\n\n🇱🇰 SRI LANKA — FACEBOOK\n📱 Nomor: `+94782223344`\n🔴 Rarity: Mythic\n⭐ Skor: +999999",117 parse_mode: "Markdown",118 reply_markup: {119 inline_keyboard: [120 [{ text: "🎲 Gacha Lagi", callback_data: "fb_lk" }],121 [{ text: "🔙 Pilih Country", callback_data: "fb" }],122 [{ text: "🏠 Main Menu", callback_data: "home" }]123 ]124 }125 });126}127 128else if (data === "fb_kg") {129 Api.editMessageText({130 chat_id: chatId,131 message_id: msgId,132 text: "🎰 *HASIL GACHA*\n\n🇰🇬 KYRGYZSTAN — FACEBOOK\n📱 Nomor: `+996777888999`\n⚪ Rarity: Common\n⭐ Skor: +1000",133 parse_mode: "Markdown",134 reply_markup: {135 inline_keyboard: [136 [{ text: "🎲 Gacha Lagi", callback_data: "fb_kg" }],137 [{ text: "🔙 Pilih Country", callback_data: "fb" }],138 [{ text: "🏠 Main Menu", callback_data: "home" }]139 ]140 }141 });142 }