LiltenBot / plugins /other-alive.js
mrfrank-ofc's picture
Upload 63 files
8d8b0ad verified
raw
history blame
608 Bytes
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}`)
}
})