Skip to content

Instantly share code, notes, and snippets.

@arijit7899
Last active July 10, 2025 07:00
Show Gist options
  • Save arijit7899/a5144e2513d4ea891d68ef3c4df868cd to your computer and use it in GitHub Desktop.
Save arijit7899/a5144e2513d4ea891d68ef3c4df868cd to your computer and use it in GitHub Desktop.
pinngkenichi
const { bot } = require('../lib/')
bot(
{
pattern: 'pinng ?(.*)',
desc: 'To check ping',
type: 'misc',
},
async (message, match) => {
const start = new Date().getTime()
await message.send('```𝆺𝅥ᴑᴀΙͺα΄› -β€ΝŸΝžΝŸΝžκ―­βŽ―βƒβ₯Ν‘πŸ‡²π‘-πŸ‡΄β€Šπ‘πˆ πŸ₯΅πŸ’—βž€β©...𝆺𝅥!```')
const end = new Date().getTime()
return await message.send('*β€ΝŸΝžΝŸΝžκ―­βŽ―βƒβ₯Ν‘πŸ‡²π‘-πŸ‡΄β€Šπ‘πˆ πŸ₯΅πŸ’—βž€β©!*\n ```' + (end - start) + '``` *ᴍs*')
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment