let handler = async (m, { conn, text, usedPrefix, command }) => { let teks = text ? text : m.quoted && m.quoted.text ? m.quoted.text : '' if (command == 'txt' || command == 'escribir') { if (!teks) throw `⚠️ π™Œπ™π™€ π™€π™Žπ˜Ύπ™π™„π˜½π™„π™Š? π™π™Žπ˜Όπ™ π™€π™Žπ™π™€ π˜Ύπ™Šπ™ˆπ˜Όπ™‰π˜Ώπ™Š π˜Ώπ™€ π™‡π˜Ό π™Žπ™„π™‚π™π™„π™€π™‰π™π™€ π™π™Šπ™π™ˆπ˜Ό\n\nπ™€π™…π™€π™ˆπ™‹π™‡π™Š: *${usedPrefix + command}* Hola LoliBot`; let img = `${global.APIs.fgmods.url}/maker/txt?text=${encodeURIComponent(teks)}&apikey=${global.APIs.fgmods.key}`; conn.sendFile(m.chat, img, 'img.png', `✍🏻 π™€π™Žπ™π˜Ό π™‡π™„π™Žπ™π™Š!!\n${wm}`, m, null, fake); } if (command == 'brat') { if (!teks) throw `⚠️ Ingresar en texto\nEj: *${usedPrefix + command}* case "hola":\nm.reply("que onda")\nbreak` let res = `${global.APIs.fgmods.url}/maker/carbon?text=${teks}&apikey=${global.APIs.fgmods.key}` } } handler.help = ['txt', 'brat'] handler.tags = ['game'] handler.command = ['txt', 'escribir', 'brat'] handler.limit = 1 handler.register = true export default handler