millswelbeck148/SireimadeBotPublic · Bot Template

AISireImade appears to be a Telegram automation bot. Commands include /start, /about, /support, /id, /admin, /ban, /unban, /x. Observed in code: messaging, keyboards, games.

Utilityutility
ProfileTelegram
112 commands3 envUpdated 1h agoCreated Aug 27, 2026
Back to folder

commands/_about.js

javascript · 81 lines

Raw
1/**#command2name: /about3answer: 🤖 About Us4 5Welcome to our service! ❤️6 7📱 Foreign Numbers8🔐 App Verification9📈 Social Media Account Boosting10 11⚡ Fast & Affordable12💯 Reliable Service13📞 Support Available14 15Use /support if you need assistance.`16  );17});18keyboard: 19parse_mode: markdown20aliases: 21allow_only_group: false22need_reply: false23is_web: 024#command**/25 26// ==========================================================27// 🤖 GIFT AI — /ABOUT28// REAL • CLEAN • RESPONSIVE • ERROR-SAFE29// DIRECT REPLY30// ==========================================================31 32// ----------------------------------------------------------33// 🤖 ABOUT MESSAGE34// ----------------------------------------------------------35 36var aboutText =37  "🤖 <b>GIFT AI</b>\n\n" +38 39  "👋 Hey! I'm <b>Gift</b> — a Telegram bot built to make " +40  "your chats more fun, useful, and interactive.\n\n" +41 42  "✨ <b>What I Can Do</b>\n" +43  "• 💬 Chat & respond when I'm called\n" +44  "• 🎮 Games & entertainment\n" +45  "• 🎱 Fun commands like 8-Ball\n" +46  "• 👤 User information tools\n" +47  "• 🛡️ Helpful group features\n" +48  "• ⚡ Fast and simple commands\n\n" +49 50  "🧠 <b>Personality</b>\n" +51  "I'm confident, playful, sarcastic, and sometimes a little " +52  "dramatic — but I know when to be serious.\n\n" +53 54  "📌 <b>Useful Commands</b>\n" +55  "• /start — Start Gift\n" +56  "• /help — View available commands\n" +57  "• /id — Get a Telegram user ID\n" +58  "• /8ball — Ask the Magic 8-Ball\n" +59  "• /support — Get assistance\n\n" +60 61  "⚡ <b>Built for Telegram</b>\n" +62  "Gift is designed to keep things quick, interactive, and easy " +63  "to use without unnecessary complications.\n\n" +64 65  "💡 <b>Need Help?</b>\n" +66  "Use /support and we'll point you in the right direction.\n\n" +67 68  "❤️ <i>Thanks for using Gift AI.</i>";69 70// ----------------------------------------------------------71// 📤 SEND DIRECT REPLY72// ----------------------------------------------------------73 74Bot.sendMessage({75  text: aboutText,76  parse_mode: "HTML",77  reply_to_message_id:78    request && request.message_id79      ? request.message_id80      : undefined81});