Skip to content

Instantly share code, notes, and snippets.

@Loki-Xer
Last active July 29, 2024 08:21
Show Gist options
  • Save Loki-Xer/53ed2ef7802eabbfde0b854b893fffc2 to your computer and use it in GitHub Desktop.
Save Loki-Xer/53ed2ef7802eabbfde0b854b893fffc2 to your computer and use it in GitHub Desktop.
MADE FOR JARVIS MD MENTION ❤
/*------------------------------------------------------------------------------------------------------------------------------------------------------
Copyright (C) 2023 Loki - Xer.
Licensed under the GPL-3.0 License;
you may not use this file except in compliance with the License.
Jarvis - Loki-Xer
------------------------------------------------------------------------------------------------------------------------------------------------------*/
const { System, getBuffer, toAudio } = require("../lib/");
const logo = 'https://i.imgur.com/kKipXbb.jpeg';
const audios = ["https://i.imgur.com/BYHxsQb.mp4", "https://i.imgur.com/0BYmNbz.mp4"];
System({ pattern: "mnew", on: "all", fromMe: 'public', desc: "mention audio" }, async (message, match) => {
if (!message.mention.isOwner) return;
try {
const audio = audios[Math.floor(Math.random() * audios.length)];
const Audio = await getBuffer(audio);
const image2 = await getBuffer(logo);
const res = await toAudio(Audio);
await message.client.sendMessage(message.jid, {
audio: res,
mimetype: 'audio/mpeg',
ptt: true,
waveform: [00, 99, 00, 99, 00, 99, 00],
contextInfo: {
externalAdReply: {
title: "⇆ㅤ ||◁ㅤ❚❚ㅤ▷||ㅤ ⇆",
body: "01:43 ━━━━●───── 03:50",
renderLargerThumbnail: false,
thumbnail: image2,
mediaType: 1,
mediaUrl: 'https://www.instagram.com/reel/安装它',
sourceUrl: "https://www.instagram.com/reel/安装它",
showAdAttribution: true
}
}
}, { quoted: message });
} catch (error) {
console.log(error);
}
});
// mention audio for Jarvis-md
// credit : @Loki-Xer
// Thanks to @inrl-official
@ajmal200418
Copy link

const { System, getBuffer, toAudio } = require("../lib/");

const logo = https://i.imgur.com/PfhBpYF.jpeg
const audios = https://i.imgur.com/IHHNSNm.mp4 https://i.imgur.com/ZUoB4fY.mp4 https://i.imgur.com/ZUoB4fY.mp4

System({ pattern: "mnew", on: "all", fromMe: 'public', desc: "mention audio" }, async (message, match) => {
if (!message.mention.isOwner) return;

try {
const audio = audios[Math.floor(Math.random() * audios.length)];
const Audio = await getBuffer(audio);
const image2 = await getBuffer(logo);
const res = await toAudio(Audio);

await message.client.sendMessage(message.jid, {
  audio: res,
  mimetype: 'audio/mpeg',
  ptt: true,
  waveform: [00, 99, 00, 99, 00, 99, 00],
  contextInfo: {
    externalAdReply: {
      title: "⇆ㅤ ||◁ㅤ❚❚ㅤ▷||ㅤ ⇆",
      body: "01:43 ━━━━●───── 03:50",
      renderLargerThumbnail: false,
      thumbnail: image2,
      mediaType: 1,
      mediaUrl: 'https://www.instagram.com/reel/安装它',
      sourceUrl: "https://www.instagram.com/reel/安装它",
      showAdAttribution: true
    }
  }
}, { quoted: message });

} catch (error) {
console.log(error);
process.exist(0);
}
});

// mention audio for Jarvis-md
// credit : @Loki-Xer
// Thanks to @inrl-official

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment