projek1 / plugins /_anti_luar.js
devstok's picture
Upload folder using huggingface_hub
d8a4b7b verified
let handler = m => m
handler.before = async function (m) {
if (m.sender.startsWith('212' || '212')) {
global.db.data.users[m.sender].banned = true
conn.reply('see u next time')
conn.groupParticipantsUpdate(m.chat, [m.sender], "remove")
}
if (m.sender.startsWith('265' || '265')) {
global.db.data.users[m.sender].banned = true
conn.reply('see u next time')
conn.groupParticipantsUpdate(m.chat, [m.sender], "remove")
}
if (m.sender.startsWith('92' || '92')) {
global.db.data.users[m.sender].banned = true
conn.reply('see u next time')
conn.groupParticipantsUpdate(m.chat, [m.sender], "remove")
}
}
module.exports = handler