manafzz147/AlphaXShen_botPublic · Bot Template
AIAlphaXShen_bot appears to be a Telegram automation bot. Commands include /start, /.menu, /.test, /.tagall, /.p, /.admin. Observed in code: messaging, storage.
Utilityutility
6 commands0 envUpdated 16h agoCreated Sep 4, 2026
commands/bot.html/.menu.js
javascript · 53 lines
1/**#command2name: .menu3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12let owner = await db.bot.get("owner_name", "ShenSkyx");13Api.sendMessage({14 text: "━━━━━━ 🤖 *BOT GRUP* ━━━━━━\n\n" +15 "◉ 👑 Owner: " + owner + "\n" +16 "◉ 📦 Prefix: .\n" +17 "◉ 📃Command:91 \n"+18 "◉ ⚡versi: 9.0.0 \n\n"+19 "━━━━━『 *GROUP* 』━━━━━\n" +20 "◉ .kick @user / reply\n" +21 "◉ .ban @user / reply\n" +22 "◉ .unban @user\n" +23 "◉ .mute @user [menit]\n" +24 "◉ .unmute @user\n" +25 "◉ .promote @user\n" +26 "◉ .demote @user\n" +27 "◉ .tagall [pesan]\n" +28 "◉ .hidetag [pesan]\n" +29 "◉ .tagadmin\n" +30 "◉ .link\n" +31 "◉ .ginfo\n" +32 "◉ .welcome on/off/set <text>\n" +33 "◉ .goodbye on/off/set <text>\n" +34 "◉ .pin (reply) / .unpin\n" +35 "◉ .del (reply)\n" +36 "◉ .antilink on/off\n" +37 "◉ .setdesc <text>\n"+38 "◉ .setname <text>\n"+39 "━━━━━『 *GACHA* 』━━━━━\n" +40 "◉ .gacha\n" +41 "◉ .roll [min] [max]\n" +42 "◉ .stats\n" +43 "◉ .leaderboard\n\n" +44 "━━━━━『 *OWNER* 』━━━━━\n" +45 "◉ .adminpanel\n" +46 "◉ .broadcast <pesan>\n" +47 "◉ .totalusers\n" +48 "◉ .botstats\n" +49 "◉ .resetdb\n" +50 "◉ .setowner <nama>\n\n" +51 "> *© Powered by Shenskyx*",52 parse_mode: "Markdown"53});