Last active
September 30, 2022 02:11
-
-
Save mrlinux007/ccd3afd9e402f67a4df9d2ada321ad21 to your computer and use it in GitHub Desktop.
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 { | |
| Function, | |
| isPublic, | |
| getString, | |
| } = require("../lib/"); | |
| Function({ | |
| pattern: 'nm ?(.*)', | |
| fromMe: isPublic, | |
| desc: 'wapi generator', | |
| type: 'whatsapp' | |
| }, async (m, text, client) => { | |
| let sender = '*𝑵𝑼𝑴𝑩𝑬𝑹* : ' + (m.reply_message.sender || m.mention[0] || text).split('@')[0]; | |
| await m.reply(sender) | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Endi