Last active
July 10, 2025 07:00
-
-
Save arijit7899/a5144e2513d4ea891d68ef3c4df868cd to your computer and use it in GitHub Desktop.
pinngkenichi
This file contains hidden or 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 { 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