-
-
Save mask-sir/7154c7a708f0db857e3685d227e8cb86 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,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: 'Hermit-md', | |
| 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