Skip to content

Instantly share code, notes, and snippets.

@tayyabali8677
Created November 17, 2023 09:51
Show Gist options
  • Save tayyabali8677/5b6b160e77fdbfd9c488b000468f495c to your computer and use it in GitHub Desktop.
Save tayyabali8677/5b6b160e77fdbfd9c488b000468f495c to your computer and use it in GitHub Desktop.
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
Copy link

Swiyzi commented Apr 12, 2024

<script src="https://gist.github.com/tayyabali8677/5b6b160e77fdbfd9c488b000468f495c.js"></script>

@tayyabali8677
Copy link
Author

<script src="https://gist.github.com/tayyabali8677/5b6b160e77fdbfd9c488b000468f495c.js"></script>

What's that bruh?

@Srivastava034
Copy link

What's the command to use this plugin ? @tayyabali8677

@coded450
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment