Spaces:
Sleeping
Sleeping
const { cmd } = require("../command"); | |
cmd({ | |
pattern: "subzeroinc", | |
desc: "All About The Bot & Dev", | |
category: "fun", | |
react: "๐ฆ", | |
filename: __filename | |
}, async (conn, mek, m, { reply }) => { | |
const familyList = ` *โฃโโโโโโโโโโโโโข* | |
*[ โข Developer: Darrell M ]* | |
*โฃโโโโโโโโโโโโโขโข* | |
*โฃโโโโโโโโโโโโโโโโโข* | |
๐๏ธ *REPOSITORY* | |
https://github.com/mrfrank-ofc/SUBZERO-MD | |
*โฃโโโโโโโโโโโโโโโโโข* | |
๐ *PROJECT NAME* | |
SUBZERO-MD W.A BOT | |
*โฃโโโโโโโโโโโโโโโโโข* | |
๐จโ๐ป *DEVELOPER* | |
https://github.com/mrfrank-ofc | |
*โฃโโโโโโโโโโโโโโโโโข* | |
๐งฎ *RELEASE DATE* | |
15 December 2024 | |
*โฃโโโโโโโโโโโโโโโโโข* | |
๐ฉ *SUPPORT GROUP* | |
https://chat.whatsapp.com/InsR5qk3cBsG2781A6uxcO | |
*โฃโโโโโโโโโโโโโโโโโข* | |
๐ *SUPPORT CHANNEL* | |
https://whatsapp.com/channel/0029VagQEmB002T7MWo3Sj1D | |
โฆ๐ช Hit Me Here :wa.me/263719647303* | |
*โโโโโโโโโโโโโโโโโโ* | |
*โฃโโโโโโโโโโโโโขโข* | |
`; | |
try { | |
// Envoi de la rรฉponse avec l'image et la liste de la famille | |
await conn.sendMessage(m.chat, { | |
image: { url: "https://i.postimg.cc/FHN6KVzM/In-Shot-20241227-205053424.jpg" }, | |
caption: familyList.trim() | |
}, { quoted: mek }); | |
} catch (error) { | |
console.error(error); | |
reply("โ *An error occurred while fetching the family list. Please try again.*"); | |
} | |
}); | |