-
-
Save ADK-RICHU/c7cec7d7b3c2a0c32cced15f58695c5c 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, | |
| parsedJid, | |
| getBuffer | |
| } = require("../lib/"); | |
| const url1 = 'https://telegra.ph/file/492557f2589925dc372c1.jpg' | |
| const url2 = 'https://telegra.ph/file/1b45da095489ebf2fd765.jpg' | |
| Function({ | |
| pattern: 'mforward ?(.*)', | |
| fromMe: true, | |
| type: 'misc' | |
| }, async (m, text, client) => { | |
| if (!m.reply_message) return await m.reply('*Reply to a message*') | |
| if (!text) return await m.reply('_Give me a jid_\n*Example .mforward jid1 jid2 jid3 jid4 ...*') | |
| const image1 = await getBuffer(url1) | |
| const image2 = await getBuffer(url2) | |
| const options = {} | |
| options.contextInfo = { | |
| forwardingScore: 5, // change it to 999 for many times forwarded | |
| isForwarded: false, | |
| } | |
| options.linkPreview = { | |
| title: 'ADK ๋ฆฌ์ธ', | |
| body: '๐๐๐๐ ๐๐ฒ ๐๐๐ค ๐๐ข๐๐ก๐ฎ ๐๐ข๐ญ๐ก ๐', | |
| mediaType: 2, | |
| thumbnail: image2, | |
| mediaUrl: 'https://www.instagram.com/reel/C6zP1QWowdP/?igsh=MXJva2M4b3FwYzZpMw==', // insta link for video | |
| sourceUrl: 'https://youtube.com/@adkrichu', | |
| showAdAttribution: true | |
| } | |
| options.filesize = 9999999999999; | |
| options.quoted = { | |
| key: { | |
| fromMe: false, | |
| participant: '[email protected]', | |
| remoteJid: 'status@broadcast', | |
| }, | |
| message: { | |
| imageMessage: { | |
| jpegThumbnail: image2, | |
| caption: '๐๐๐๐ ๐๐ฒ ๐๐ข๐๐ก๐ฎ ๐ฐ๐ข๐ญ๐ก ๐', | |
| }, | |
| }, | |
| } | |
| if (/audio/.test(m.mine)) { | |
| options.duration = 2000001355 | |
| options.ptt = true // delete this if not need audio as voice always | |
| } | |
| for (let jid of parsedJid(text)) { | |
| await client.forwardMessage(jid, m.quoted_message, options) | |
| } | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment