Created
November 17, 2023 09:51
-
-
Save tayyabali8677/5b6b160e77fdbfd9c488b000468f495c to your computer and use it in GitHub Desktop.
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, textMaker } = require('../lib') | |
bot( | |
{ pattern: 'birthday ?(.*)', | |
fromMe: true, | |
desc: 'happy birthday', | |
type: 'textmaker', | |
}, | |
async (message, match) => { | |
if (!match) return await message.sendMessage('Give me text') | |
const effect_url = | |
'https://en.ephoto360.com/write-name-on-red-rose-birthday-cake-images-462.html' | |
const { status, url } = await textMaker(effect_url, match) | |
if (url) return await message.sendFromUrl(url) | |
} | |
) |
Swiyzi
commented
Apr 12, 2024
<script src="https://gist.github.com/tayyabali8677/5b6b160e77fdbfd9c488b000468f495c.js"></script>
<script src="https://gist.github.com/tayyabali8677/5b6b160e77fdbfd9c488b000468f495c.js"></script>
What's that bruh?
What's the command to use this plugin ? @tayyabali8677
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment