ShahriarAbidbd/SmartifyXBotPublic · Bot Template
Do Tasks Smartly with SmartifyX 😎
Utilitydownloaderyoutubeinstagramfacebookspoilercontent-protection
25 commands2 envUpdated 1d agoCreated Jul 28, 2026
commands/_img.js
javascript · 51 lines
1/**#command2name: /img3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12if (!request.reply_to_message || !request.reply_to_message.photo || !request.reply_to_message.photo[0]) {13 14 Api.sendPhoto({15 photo: "https://i.ibb.co/tTtLyJG9/file-6.jpg",16 caption: "⚠️ Reply to a Photo Only!"17 })18 19 return;20}21 22var photo = request.reply_to_message.photo;23 24if (photo[3]) {25 Api.getFile({26 file_id: photo[3].file_id,27 on_result: "img2"28 });29 return;30}31if (photo[2]) {32 Api.getFile({33 file_id: photo[2].file_id,34 on_result: "img2"35 });36 return;37}38if (photo[1]) {39 Api.getFile({40 file_id: photo[1].file_id,41 on_result: "img2"42 });43 return;44}45if (photo[0]) {46 Api.getFile({47 file_id: photo[0].file_id,48 on_result: "img2"49 });50 return;51}