| 1234567891011121314151617 |
- let handler = async (m, { conn, text, args, usedPrefix, command }) => {
- let response = args.join(' ').split('|')
- if (!text) throw `⚠️ Ingresa un texto junto al comando.`
- await m.react('🕓')
- try {
- let res = `https://api.lolhuman.xyz/api/textprome/blackpink?apikey=${lolkeysapi}&text=${text}`
- await conn.sendFile(m.chat, res, 'thumbnail.jpg', listo, m)
- await m.react('✅')
- } catch {
- await m.react('❌')
- }}
- handler.help = ['blackpink *<texto>*']
- handler.tags = ['logo']
- handler.command = /^(blackpink)$/i
- handler.limit = 3
- handler.register = true
- export default handler
|