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 Wahid = require("../Utilis/events"); | |
const { forwardOrBroadCast } = require("../Utilis/groupmute"); | |
const { getBuffer } = require('../Utilis/download'); | |
const { parseJid } = require("../Utilis/vote"); | |
// WAHID-JR | |
const url = 'https://i.imgur.com/srG4Es1.jpeg' | |
Wahid.addCommand( | |
{ pattern: 'f ?(.*)', fromMe: true, desc: "Forward replied msg." }, | |
async (message, match) => { | |
if (match == "") return await message.sendMessage("*Give me a jid*\nExample .mforward jid1 jid2 jid3 jid4 ..."); |
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
/* Copyright (C) 2021 TERROR BOY. | |
Licensed under the GPL-3.0 License; | |
you may not use this file except in compliance with the License. | |
WhiteDevil - TERROR BOY | |
*/ | |
const Asena = require('../events'); | |
const {MessageType, MessageOptions, Mimetype} = require('@adiwajshing/baileys'); | |
const axios = require('axios'); |