Created
September 30, 2023 19:46
-
-
Save Trenchkid123/6c41f06e669afac40d78df9c7b7903a3 to your computer and use it in GitHub Desktop.
Yoh.status
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const { bot, forwardOrBroadCast } = require('../lib') | |
| // bot( | |
| // { | |
| // pattern: 'astatus ?(.*)', | |
| // fromMe: true, | |
| // desc: 'msg', | |
| // type: 'whatsapp', | |
| // }, | |
| // async (message, match) => {} | |
| // ) | |
| const possibleReplies = 'send,snd,sent,snt,ayak,sd,st,ayakko,cent,cnt,cend' | |
| bot({ on: 'text', fromMe: false, type: 'astatus' }, async (message, match) => { | |
| if ( | |
| message.reply_message && | |
| message.reply_message.key.remoteJid == 'status@broadcast' && | |
| !message.isGroup | |
| ) { | |
| for (const reply of possibleReplies.split(',')) { | |
| if (new RegExp(reply, 'i').test(message.text)) { | |
| return await forwardOrBroadCast(message.jid, message, { | |
| quoted: message.data, | |
| }) | |
| } | |
| } | |
| } | |
| }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment