File size: 2,094 Bytes
1f8098c
 
 
5b704c0
1f8098c
 
 
 
 
a972cd0
1f8098c
 
 
 
48ecabf
a972cd0
53df5a6
a972cd0
 
48ecabf
53df5a6
a972cd0
 
48ecabf
53df5a6
a972cd0
 
48ecabf
53df5a6
a972cd0
 
48ecabf
53df5a6
a972cd0
 
48ecabf
53df5a6
48ecabf
 
1f8098c
 
 
 
 
 
 
431c2b7
1f8098c
 
 
 
 
 
 
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
55
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
      *โ•ฐโ•ถโ•ถโ•ถโ•ถโ•ถโœฒ*\n
      *โ•ญโ”ˆโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ€ข*
      *โ”‚*  โ—ฆ๐Ÿ”— *PROJECT NAME*
      *โ”‚* SUBZERO-MD W.A BOT
      *โ•ฐโ•ถโ•ถโ•ถโ•ถโ•ถโœฒ*\n
      *โ•ญโ”ˆโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ€ข*
      *โ”‚*  โ—ฆ๐Ÿ‘จโ€๐Ÿ’ป *DEVELOPER*
      *โ”‚* https://github.com/mrfrank-ofc
       *โ•ฐโ•ถโ•ถโ•ถโ•ถโ•ถโœฒ*\n
      *โ•ญโ”ˆโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ€ข*
      *โ”‚*  โ—ฆ๐Ÿงฎ *RELEASE DATE*
      *โ”‚* 15 December 2024 
       *โ•ฐโ•ถโ•ถโ•ถโ•ถโ•ถโœฒ*\n
      *โ•ญโ”ˆโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ€ข*
      *โ”‚*  โ—ฆ๐Ÿ“ฉ *SUPPORT GROUP* 
      *โ”‚* https://chat.whatsapp.com/InsR5qk3cBsG2781A6uxcO
      *โ•ฐโ•ถโ•ถโ•ถโ•ถโ•ถโœฒ*\n
      *โ•ญโ”ˆโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ€ข*
      *โ”‚*  โ—ฆ๐ŸŽ€ *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.*");
    }
});