Spaces:
Runtime error
Runtime error
File size: 1,884 Bytes
8d8b0ad |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
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.*");
}
});
|