Created
October 25, 2023 10:36
-
-
Save Saad2425/2d97564e18503db703a24eb3dc92f257 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 { | |
| inrl | |
| } = require('../lib'); | |
| inrl({ | |
| pattern: 'responds?(.*)', | |
| on: "text", | |
| type: 'info' | |
| }, async (message, match) => { | |
| if(message.client.isCreator) return; | |
| ["hy","hi","hai"].map(async(s)=>{ | |
| if(message.client.body.startsWith(s)){ | |
| return await message.send("User Details Not Found"); | |
| } | |
| }); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment