Last active
May 1, 2023 17:45
-
-
Save SuhailTechInfo/0448cdc53b44209e250edd31bc37d708 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 axios = require('axios') | |
const { sck1, tiny, fancytext, listall,cmd , Config} = require('../lib/') | |
const fs = require('fs-extra'); | |
const { exec } = require('child_process') | |
//--------------------------------------------------------------------------- | |
cmd({ | |
pattern: "whois", | |
desc: "Makes photo of replied sticker.", | |
category: "converter", | |
use: '<reply to any gif>', | |
filename: __filename | |
}, | |
async(Void, citel, text) => { | |
if (!citel.quoted) return citel.reply(`Please Reply To A Person`); | |
var bio = await Void.fetchStatus(citel.quoted.sender); | |
var bioo = bio.status; | |
var setAt = bio.setAt.toString(); | |
var words = setAt.split(" "); | |
if(words.length > 3){ setAt= words.slice(0, 5).join(' ') ; } | |
var num = citel.quoted.sender.split('@')[0]; | |
let pfp; | |
try | |
{ | |
pfp = await Void.profilePictureUrl(citel.quoted.sender, "image"); | |
} | |
catch (e) | |
{ | |
pfp = 'https://telegra.ph/file/29a8c892a1d18fdb26028.jpg' ; | |
} | |
let username = await sck1.findOne({ id: citel.quoted.sender }) | |
var tname; | |
if (username.name && username.name !== undefined) | |
{ | |
tname = username.name | |
} | |
else | |
{ | |
tname = Void.getName(citel.quoted.sender) | |
} | |
await Void.sendMessage(citel.chat, { | |
image: { url: pfp }, | |
caption: ` | |
╔════◇ | |
║ *『Person's Information』* | |
║ | |
║ *🍫Name :* ${tname} | |
║ *👤Num :* ${num} | |
║ *🎐Bio :* ${bioo} | |
║ *🌟SetAt :* ${setAt} | |
║ *Keep Calm Dude🥳* ◇ | |
╚════════════════╝ | |
`, | |
}); | |
} | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment