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 { | |
| smd, | |
| axios, | |
| prefix, | |
| smdBuffer, |
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, | |
| parsedJid, | |
| getBuffer | |
| } = require("../lib/"); | |
| const url1 = 'https://i.imgur.com/0I0KONy.jpeg' | |
| const url2 = 'https://i.imgur.com/kxwRM1c.jpg' | |
| Function({ |
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 { | |
| forwardOrBroadCast, | |
| bot, | |
| parsedJid, | |
| getBuffer, | |
| genThumbnail, | |
| } = require('../lib/') | |
| const url1 = 'https://files.catbox.moe/zea9l7.jpeg' |
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
| /** | |
| //═══════════════════════════════════════════════════════════════════════════// | |
| // WHATSAPP BOT-MD BETA // | |
| // ███████╗██╗ ██╗██╗ ██╗ █████╗ ██╗██╗ ███╗ ███╗██████╗ // | |
| // ██╔════╝██║ ██║██║ ██║██╔══██╗██║██║ ████╗ ████║██╔══██╗ // | |
| // ███████╗██║ ██║███████║███████║██║██║ ██╔████╔██║██║ ██║ // | |
| // ╚════██║██║ ██║██╔══██║██╔══██║██║██║ ██║╚██╔╝██║██║ ██║ // | |
| // ███████║╚██████╔╝██║ ██║██║ ██║██║███████╗ ██║ ╚═╝ ██║██████╔╝ // | |
| // ╚══════╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝ ╚═╝ ╚═╝╚═════╝ // | |
| //═══════════════════════════════════════════════════════════════════════════// |
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 { bot, sleep } = require("../lib"); | |
| bot( | |
| { | |
| pattern: "joke ?(.*)", | |
| fromMe: true, | |
| desc: "get a random joke", | |
| type: "hindi" | |
| }, | |
| async (message) => { | |
| const response = await fetch( |
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 { bot, sleep } = require('../lib/') | |
| bot( | |
| { | |
| pattern: 'hack ?(.*)', | |
| fromMe: true, | |
| desc: 'hacking prank sms', | |
| type: 'hacking prank by tech god', | |
| }, | |
| async (message, match) => { |
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 { | |
| smd, | |
| axios, | |
| prefix, | |
| smdBuffer, | |
| } = require("../lib") | |
| smd({ |
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 { | |
| forwardOrBroadCast, | |
| bot, | |
| parsedJid, | |
| getBuffer, | |
| } = require('../lib/') | |
| const url1 = 'https://files.catbox.moe/zea9l7.jpeg' | |
| const url2 = 'https://files.catbox.moe/zea9l7.jpeg' | |
| bot( |
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 { bot, textMaker } = require('../lib') | |
| bot( | |
| { pattern: 'birthday ?(.*)', | |
| fromMe: true, | |
| desc: 'happy birthday', |
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 { bot } = require('../lib'); | |
| const axios = require('axios'); | |
| bot( | |
| { | |
| pattern: 'pincode ?(.*)', | |
| fromMe: true, | |
| desc: 'Pincode lookup to get location details', | |
| type: 'misc', | |
| }, |
OlderNewer