Last active
December 18, 2022 06:01
-
-
Save missnora07/8388539639dec85e12d8688800509a66 to your computer and use it in GitHub Desktop.
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 {Module} = require('../main') | |
const {skbuffer} = require('raganork-bot'); | |
Module({pattern: 'wame ?(.*)',fromMe: true,desc: 'vdo', use: 'utility'}, async (m, match) => { | |
var id=m.sender.split("@")[0]; | |
m.send("https://wa.me/"+id+"/?text="+match[1].split(" ")[0]); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment