Skip to content

Commit

Permalink
Create intro.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Kingjux authored May 6, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 1dba7f7 commit 530c2e0
Showing 1 changed file with 94 additions and 0 deletions.
94 changes: 94 additions & 0 deletions plugins/intro.js
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)}


})

0 comments on commit 530c2e0

Please sign in to comment.