ShahriarAbidbd/SmartifyXBotPublic ยท Bot Template

Do Tasks Smartly with SmartifyX ๐Ÿ˜Ž

Utilitydownloaderyoutubeinstagramfacebookspoilercontent-protection
ProfileTelegram
25 commands2 envUpdated 1d agoCreated Jul 28, 2026
Back to folder

commands/_start.js

javascript ยท 53 lines

Raw
1/**#command2name: /start3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12if (user.just_created) {13  Api.sendMessage({14    chat_id: env.chatid_log_cnl, //Set your own log channel's ID15    text: `<b>๐Ÿ”” New Chat Found</b>\n\n<b>โ‡๏ธ Type:</b> ${chat.type} [${chat.id}]\n<b>๐Ÿ“‹ Name:</b> ${chat.title || user.first_name}\n<b>๐Ÿ†” UserID:</b> <code>${user.id}</code>\n<b>โญ• Username:</b> @${chat.username || "Not Found"}\n<b>โญ Premium:</b> ${user.is_premium ? "Yes" : "No"}\n<b>๐Ÿค– Bot:</b> @${bot.name}`,16    parse_mode: "html",17    reply_markup: {18      inline_keyboard: [19        [{20          text: "Chat Link ๐Ÿ”—",21          url: "tg://user?id=" + chat.id22        }]23      ]24    }25  })26}27 28Api.sendMessage({29  text: `Hello *${user.first_name} ${user.last_name || ""}* ๐Ÿ‘‹\nWelcome to *SmartifyX* โ€“ Your Buddy on Telegram\nโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\nNeed a downloader? Spoiler tool? Content Protector? and Many More?\n*SmartifyX* have all the commands you need.\n\nMake your life smart with *SmartifyX* โšก\nโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\nPowered by [Shahriar Abid](https://t.me/ShahriarAbidbd) ๐Ÿ”ฅ`,30  parse_mode: "markdown",31  disable_web_page_preview: true,32  reply_markup: {33    inline_keyboard: [34      [{35        text: "๐Ÿ› ๏ธ Main Menu",36        callback_data: "main_menu",37        style: "success"38      }],39      [{40          text: "โ“˜ About",41          callback_data: "menu_about",42          style: "primary"43        },44        {45          text: "โœ‰๏ธ Contact Us",46          callback_data: "menu_contact",47          style: "primary"48        }49      ]50 51    ]52  }53})