Skip to content

Instantly share code, notes, and snippets.

@achuz346
Forked from A-d-i-t-h-y-a-n/mforward.js
Last active November 4, 2022 06:23
Show Gist options
  • Save achuz346/f9edc2982b8c589cb9d5ac61e68d534d to your computer and use it in GitHub Desktop.
Save achuz346/f9edc2982b8c589cb9d5ac61e68d534d to your computer and use it in GitHub Desktop.
const {
Function,
parsedJid,
getBuffer
} = require("../lib/");
const url1 = 'https://i.imgur.com/Ogn1lG7.jpeg'
const url2 = 'https://i.imgur.com/kxwRM1c.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: '๐Ÿ•Š๏ธโƒž๐Ÿ’›๊ชถ๐‘อ•อขา“๊ช– ๐อขอ•๊ช–แด… ส™อ•อข๊ชฎ๐˜๐“โŽฏแทคโŽฏอฅโŽฏแทขแฎซโžคโƒ๐Ÿน',
body: '๐Œ๐š๐๐ž ๐›๐ฒ ๐š๐œ๐ก๐ฎ๐ณ๐Ÿ’œ๐ŸŒธ',
mediaType: 2,
thumbnail: image2,
mediaUrl: '', // insta link for video
sourceUrl: 'https://github.com/A-d-i-t-h-y-a-n',
showAdAttribution: true
}
options.filesize = 9999999999999;
options.quoted = {
key: {
fromMe: false,
participant: '0@s.whatsapp.net',
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