Skip to content

Commit

Permalink
𝙇𝙤𝙡𝙞𝘽𝙤𝙩-𝙈𝘿
Browse files Browse the repository at this point in the history
  • Loading branch information
elrebelde21 authored Sep 20, 2023
1 parent a9e5231 commit 4e3ac76
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion plugins/_antiprivado.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const comandos = /piedra|papel|tijera|estado|verificar|creadora|bottemporal|grupos|instalarbot|términos|bots|deletebot|eliminarsesion|serbot|verify|register|registrar|reg|reg1|nombre|name|nombre2|name2|edad|age|edad2|age2|genero|género|gender|identidad|pasatiempo|hobby|identify|finalizar|pas2|pas3|pas4|pas5|registroc|deletesesion|registror|jadibot/i
const comandos = /piedra|papel|tijera|estado|verificar|creadora|bottemporal|grupos|instalarbot|términos|bots|deletebot|eliminarsesion|serbot|verify|registrar|deletesesion|jadibot/i
export async function before(m, {conn, isAdmin, isBotAdmin, isOwner, isROwner, usedPrefix, command }) {
if (m.isBaileys && m.fromMe) return !0
if (m.isGroup) return !1
Expand Down
10 changes: 5 additions & 5 deletions plugins/_antispam.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ let user = global.db.data.users[m.sender]
const sender = m.sender
const currentTime = new Date().getTime()
const timeWindow = 5000 // tiempo límite
const messageLimit = 6 // cantidad de mensajes en dicho tiempo
const messageLimit = 8 // cantidad de mensajes en dicho tiempo

let time, time2, time3, mensaje
time = 60000 // 1 min
Expand All @@ -33,17 +33,17 @@ const timeDifference = currentTime - userData.lastMessageTime
if (userData.antiBan === 1) {
if (userData.message < 1) {
userData.message++
mensaje = `*@${m.sender.split`@`[0]} NO PUEDE USAR COMANDOS DURANTE 1 MINUTOS*\n\n*MOTIVO: SPAM DE MENSAJES LEVE*`
mensaje = `*HEY @${m.sender.split`@`[0]} DEJA SPAM 🤨*\n*NO PUEDE USAR COMANDOS DURANTE 1 MINUTOS*\n\n*MOTIVO: SPAM DE MENSAJES LEVE*\n\n⚠️ \`\`\`ADVERTENCIA 1/3\`\`\` ⚠️`
await conn.reply(m.chat, mensaje, m, { mentions: [m.sender] })
}} else if (userData.antiBan === 2) {
if (userData.message2 < 1) {
userData.message2++
mensaje = `*@${m.sender.split`@`[0]} NO PUEDE USAR COMMANDOS DURANTE 2 MINUTOS*\n\n*MOTIVO: SPAM DE MENSAJES MODERADO*`
mensaje = `*HEY @${m.sender.split`@`[0]} OTRA VEZ 🤨DEJA EL PUTO SPAM*\n*NO PUEDE USAR COMANDOS DURANTE 2 MINUTOS*\n*MOTIVO: SPAM*\n\n*SI VUELVE A HACES SPAM SERA ELIMINADO DEL GRUPO*\n\n⚠️ \`\`\`ADVERTENCIA 2/3\`\`\` ⚠️`
await conn.reply(m.chat, mensaje, m, { mentions: [m.sender] })
}} else if (userData.antiBan === 3) {
if (userData.message3 < 1) {
userData.message3++
mensaje = `*@${m.sender.split`@`[0]} NO PUEDE USAR COMMANDOS DURANTE 5 MINUTOS*\n\n*MOTIVO: SPAM DE MENSAJE ALARMANTE*`
mensaje = `*Ufff @${m.sender.split`@`[0]} 🤨 NO ENTENDER? QUE REPERTI 3 VECES NO HAGAS SPAM*\nAHORA SERA ELIMINADO DEL GRUPO....`
await conn.reply(m.chat, mensaje, m, { mentions: [m.sender] })
await conn.groupParticipantsUpdate(m.chat, [sender], 'remove')
}}
Expand All @@ -53,7 +53,7 @@ userData.messageCount += 1

if (userData.messageCount >= messageLimit) {
const mention = `@${sender.split("@")[0]}`
const warningMessage = `*${mention} ESTA PROHIBIDO HACER SPAM DE MENSAJES!!*`
const warningMessage = `*${mention} 🤨 ESTA PROHIBIDO HACER SPAM DE MENSAJES!!*`
if (userData.antiBan > 2) return
await conn.reply(m.chat, warningMessage, m, { mentions: [m.sender] })
user.banned = true
Expand Down

0 comments on commit 4e3ac76

Please sign in to comment.