Spaces:
Paused
Paused
| const config = require('../config') | |
| const {cmd , commands} = require('../command') | |
| cmd({ | |
| pattern: "alive", | |
| react: "💗", | |
| desc: "Check bot online or no.", | |
| category: "main", | |
| filename: __filename | |
| }, | |
| async(conn, mek, m,{from, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply}) => { | |
| try{ | |
| return await conn.sendMessage(from,{image: {url: config.ALIVE_IMG},caption: config.LIVE_MSG},{quoted: mek}) | |
| }catch(e){ | |
| console.log(e) | |
| reply(`${e}`) | |
| } | |
| }) | |