projek1 / plugins /_autoresponlink.js
devstok's picture
Upload folder using huggingface_hub
d8a4b7b verified
let fs = require('fs')
let handler = m => m
handler.all = async function (m, { isBlocked }) {
if (isBlocked) return
if ((m.mtype === 'groupInviteMessage' || m.text.startsWith('Undangan untuk bergabung') || m.text.startsWith('Invitation to join') || m.text.startsWith('Buka tautan ini')) && !m.isBaileys && !m.isGroup) {
let teks = `Invite Group
• 30 Day / Rp 10k
Jika berminat hubungi: @${global.owner[0]} untuk order:)
`
this.reply(m.chat, teks, m)
const data = global.owner.filter(([id, isCreator]) => id && isCreator)
this.sendContact(m.chat, data.map(([id, name]) => [id, name]), m)
}
}
module.exports = handler