-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
94 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
/** | ||
//════════════════════════════════════════════════════════════════════════════════════════════// | ||
// // | ||
// WHATSAPP BOT-MD BETA // | ||
// // | ||
// V:2.5.0 // | ||
// // | ||
// // | ||
// ██████╗ ██╗███████╗████████╗███████╗██████╗ ███╗ ███╗██████╗ // | ||
// ██╔════╝ ██║██╔════╝╚══██╔══╝██╔════╝██╔══██╗ ████╗ ████║██╔══██╗ // | ||
// ██║ ███╗██║█████╗ ██║ █████╗ ██║ ██║ ██╔████╔██║██║ ██║ // | ||
// ██║ ██║██║██╔══╝ ██║ ██╔══╝ ██║ ██║ ██║╚██╔╝██║██║ ██║ // | ||
// ╚██████╔╝██║██║ ██║ ███████╗██████╔╝ ██║ ╚═╝ ██║██████╔╝ // | ||
// ╚═════╝ ╚═╝╚═╝ ╚═╝ ╚══════╝╚═════╝ ╚═╝ ╚═╝╚═════╝ // | ||
// // | ||
// // | ||
// // | ||
// // | ||
//════════════════════════════════════════════════════════════════════════════════════════════// | ||
* | ||
* @project_name : Venocyber-md | ||
* @author : Venocyber Tech. | ||
* @youtube : https://www.youtube.com/@JASTINMTEWA-vn9pl | ||
* @description : Venocyber-Md ,A Multi-functional whatsapp user bot. | ||
* @version 2.5.0 | ||
* | ||
* | ||
* Created By Venocyber Tech. | ||
* © 2024 Venocyber-Md. | ||
*/ | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
// Fork And Edit AS You Wish // | ||
|
||
const { smd, Config,smdBuffer, prefix } = require('../lib') | ||
|
||
|
||
var surl = 'https://github.com/Kingjux/Venocyber-md' // Source URL | ||
const number = '255625774543' | ||
var name = ' VENOCYBER 𝕋𝔼ℂℍ' | ||
var body = '𝑇𝛩𝑈𝐶𝛨 𝛨𝛯𝑅𝛯' | ||
var image = 'https://telegra.ph/file/12b0fb245e6b8ba4bf718.jpg' | ||
let text = `╭═══ ━ ━ ━ ━ • ━ ━ ━ ━ ═══♡᭄ | ||
│ 「 VENOCYBER 𝐓𝐄𝐂𝐇 𝐈𝐍𝐓𝐑𝐎 」 | ||
│ Name : VENOCYBER | ||
│ Place : NJOMBE, TANZANIA | ||
│ Gender : 𝐌𝐀𝐋𝐄 | ||
│ Age : 20 | ||
│ education : 𝐁𝐒c IT | ||
│ good vibes : 𝐒𝐓𝐀𝐘 𝐂𝐋𝐀𝐌 | ||
│ Phone : wa.me/255625774543 | ||
│ Youtube : youtube.com/@JASTINMTEWA-vn9pl | ||
│ GitHub : https://github.com/Kingjux | ||
╰═══ ━ ━ ━ ━ • ━ ━ ━ ━ ═══♡᭄` | ||
|
||
|
||
|
||
|
||
|
||
//--------------------------------------------------------------------------- | ||
smd({ | ||
pattern: "intro", | ||
alias: ["venocyber","veno"], | ||
desc: "Show intro of user", | ||
category: "fun", | ||
filename: __filename, | ||
use: '<group link.>', | ||
}, | ||
async(message) => { | ||
try{ | ||
let media ;try{ media = await smdBuffer(image) }catch{media = log0} | ||
const q =await message.bot.fakeMessage("contact",{},name) | ||
let contextInfo = {...(await message.bot.contextInfo(name,body,media,1,surl, 2) )} | ||
await message.send(text, {contextInfo : contextInfo },"suhail", q ) | ||
}catch(e){ await message.error(`${e}\n\ncommand: intro`,e,false)} | ||
|
||
|
||
}) |