ShahriarAbidbd/SmartifyXBotPublic ยท Bot Template
Do Tasks Smartly with SmartifyX ๐
Utilitydownloaderyoutubeinstagramfacebookspoilercontent-protection
25 commands2 envUpdated 1d agoCreated Jul 28, 2026
commands/_start.js
javascript ยท 53 lines
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})