This file contains 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 {inrl, getBuffer} = require('../lib'); | |
/* | |
inrl({ | |
pattern: "mention", | |
type: "misc", | |
desc: external | |
}, async (message, match) => { | |
*/ |
This file contains 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, getJson} = require("../lib/"); | |
Function({pattern: 'couple ?(.*)', fromMe: isPublic, desc: 'get random couple photos', type: 'anime'}, async (m, text, client) => { | |
const { result } = await getJson ('https://gist.githubusercontent.com/Emiwayfire/fcd8791a4f8679be16fe3b67216718ee/raw') | |
const { male, female } = result[Math.floor(Math.random()*result.length)]; | |
await client.sendMessage(m.jid, { image: { url: male }, caption: "Male" }) | |
await client.sendMessage(m.jid, { image: { url: female }, caption: "Female" }); | |
}); |
This file contains 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 { inrl } = require('../lib/') | |
// MADE WITH ❤️ BY AYAAN-BOT-MD | |
const name = "𓆩ꪖꪗꪖꪖꪀ ꫀꪑ𝓲𝘳࿐🪐⃤𓆪"; | |
let number = "918576898666"; | |
const image = "https://i.imgur.com/v0KHsKb.jpeg"; | |
const title = "➵𓆩🧸❤️⚡𝐵𝒃𝒚 𝐼'𝒎 𝒖𝒓"𝒔🧸💜 𓆪"; | |
const body = "notyour_emir😃❤️"; | |
const sourceurl = "https://i.imgur.com/f4ONuBz.mp4"; |
This file contains 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 {inrl, getBuffer} = require('../lib'); | |
/* | |
inrl({ | |
pattern: "mention", | |
type: "misc", | |
desc: external | |
}, async (message, match) => { | |
*/ |