Skip to content

Instantly share code, notes, and snippets.

@ishkumarr
Created October 20, 2022 18:15
Show Gist options
  • Save ishkumarr/635972d022b26efcc57da75d22cec125 to your computer and use it in GitHub Desktop.
Save ishkumarr/635972d022b26efcc57da75d22cec125 to your computer and use it in GitHub Desktop.
const {Function,isPublic, getJson, getBuffer,prefix} = require("../lib/");
Function({pattern: 'sanime ?(.*)', fromMe: isPublic, desc: 'random anime status videos', type: 'anime'}, async (m, text, client) => {
let { result} = await getJson ('https://raw.githubusercontent.com/mask-sir/api.mask-ser/main/AnimeVideos.json')
let mask = result[Math.floor(Math.random()*result.length)]
const buttons = [
{buttonId: prefix + 'sanime', buttonText: {displayText: 'next'}, type: 1}]
const buttonMessage = {
video: {url: mask},
caption: "*Random anime videos*",
footer: 'Arin',
buttons: buttons,
headerType: 4
}
client.sendMessage(m.jid, buttonMessage)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment