abirahmad1208/Dev_Helper_X_BotPublic · Bot Template

An essential utility Telegram bot for developers to quickly encode/decode Base64, generate MD5/SHA-256 hashes, format JSON, convert text, and create instant QR codes!

Utilitydeveloper-toolsbase64encoderdecoderjson-formatterpassword-generator
ProfileTelegram
17 commands0 envUpdated 29d agoCreated Jul 20, 2026
Back to folder

commands/_start.js

javascript · 33 lines

Raw
1/**#command2name: /start3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12let welcomeText = `👋 *স্বাগতম DevKitProBot-এ!*13 14আমি আপনার অল-ইন-ওয়ান ডেভেলপার অ্যাসিস্ট্যান্ট। নিচের মেনু থেকে যেকোনো ফিচার ব্যবহার করুন:`;15 16Api.sendMessage({17  text: welcomeText,18  parse_mode: "Markdown",19  reply_markup: {20    keyboard: [21      [{ text: "🔐 Text Encoder" }, { text: "🔓 Base64 Decoder" }],22      [{ text: "📱 QR Code Gen" }, { text: "🧮 Math Evaluator" }],23      [{ text: "🎨 Color Converter" }, { text: "🧹 Code Minifier" }],24      [{ text: "🌐 Domain Info" }, { text: "🌐 Webhook Tester" }],25      [{ text: "💻 HTML Previewer" }, { text: "🧱 JSON Formatter" }],26      [{ text: "🔑 Password Generator" }, { text: "🔗 URL Encoder" }],27      [{ text: "⏰ Unix Timestamp" }, { text: "🔤 Text Case Changer" }],28      [{ text: "📝 String Counter" }, { text: "🌐 IP Info Finder" }],29      [{ text: "👤 My User Info" }, { text: "ℹ️ Help Guide" }]30    ],31    resize_keyboard: true32  }33});