deky2001z/tenjekubot9app_botPublic Β· Bot Template

AIBot is a Vietnamese-language control panel for managing Discord, Zalo, and Messenger 'tabs', letting users add, edit, delete, enable/disable, set delay and language, and store credentials such as tokens, cookies, and IMEI data via Bot/User properties. It renders status dashboards with online/offline counts and shows a menu of platform-specific spamming tools. One command ('Treo ngΓ΄n') contains a node-telegram-bot-api polling app that gathers a token, user ID, channel ID, and text-file lines to send automated messages. Overall, the bot appears designed for auto-spam and message-flooding operations across multiple chat platforms.

Spamspamtelegramdiscordzalomessengerauto-messaging
ProfileTelegram
15 commands0 envUpdated 10d agoCreated Jul 22, 2026
Back to folder

commands/γ€ŽπŸ“‚γ€Danh sΓ‘ch/γ€ŽπŸ“‚γ€Danh sΓ‘ch.js

javascript Β· 146 lines

Raw
1/**#command2name: γ€ŽπŸ“‚γ€Danh sΓ‘ch3answer: π“πšπ› π“π«πžπ¨ 𝐁𝐨𝐭 πŸ‘πšπ©π©4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12//======================================13// πŸ“‚ TELE PANEL V1014//======================================15 16// ===== LOAD =====17function load(name){18  try{19    return JSON.parse(Bot.getProperty(name) || "[]");20  }catch(e){21    return [];22  }23}24 25let discord = load("discord_tabs");26let zalo = load("zalo_tabs");27let messenger = load("messenger_tabs");28 29// ===== STATS =====30function stats(arr){31 32  let online = 0;33  let offline = 0;34 35  for(let i=0;i<arr.length;i++){36    if(arr[i].status){37      online++;38    }else{39      offline++;40    }41  }42 43  return {44    total: arr.length,45    online: online,46    offline: offline47  };48}49 50let ds = stats(discord);51let zs = stats(zalo);52let ms = stats(messenger);53 54// ===== TOTAL =====55let total =56ds.total +57zs.total +58ms.total;59 60let online =61ds.online +62zs.online +63ms.online;64 65let offline =66ds.offline +67zs.offline +68ms.offline;69 70let now = new Date();71 72let time =73String(now.getHours()).padStart(2,"0")+":"+74String(now.getMinutes()).padStart(2,"0")+":"+75String(now.getSeconds()).padStart(2,"0");76 77// ===== DASHBOARD =====78 79Api.sendMessage({80 81text:82`╔════════════════════════════╗83        πŸš€ TELE PANEL84β•šβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•85 86πŸ‘€ User : ${user.first_name}87πŸ•’ Time : ${time}88 89━━━━━━━━━━━━━━━━━━━━━━90 91πŸ’œ Discord92🟒 Online : ${ds.online}93πŸ”΄ Offline: ${ds.offline}94πŸ“¦ Total  : ${ds.total}95 96πŸ’š Zalo97🟒 Online : ${zs.online}98πŸ”΄ Offline: ${zs.offline}99πŸ“¦ Total  : ${zs.total}100 101πŸ’™ Messenger102🟒 Online : ${ms.online}103πŸ”΄ Offline: ${ms.offline}104πŸ“¦ Total  : ${ms.total}105 106━━━━━━━━━━━━━━━━━━━━━━107 108πŸ“Š SYSTEM109 110🟒 Active : ${online}111πŸ”΄ Sleep  : ${offline}112πŸ“¦ Total  : ${total}113 114━━━━━━━━━━━━━━━━━━━━━━115 116🟒 Status : Stable117⚑ Version : V10118πŸ’Ύ Storage : OK119 120━━━━━━━━━━━━━━━━━━━━━━121 122πŸ‘‡ Chọn nền tαΊ£ng để quαΊ£n lΓ½`,123 124reply_markup:{125 126keyboard:[127 128["πŸ’œ Discord","πŸ’š Zalo"],129 130["πŸ’™ Messenger"],131 132["πŸ“Š Thα»‘ng kΓͺ","βš™οΈ CΓ i Δ‘αΊ·t"],133 134["πŸ“‚ Sao lΖ°u","πŸ“₯ KhΓ΄i phα»₯c"],135 136["πŸ”„ LΓ m mα»›i"],137 138["πŸ”™ Quay lαΊ‘i"]139 140],141 142resize_keyboard:true143 144}145 146});