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 } = require('../lib/'); | |
| // Simple AI Auto Reply Switch | |
| let aiReply = false; | |
| // ON Command | |
| bot( | |
| { | |
| pattern: 'aion', | |
| desc: 'Enable AI auto reply', |
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, getBuffer } = require('../lib/'); | |
| const video = 'https://files.catbox.moe/j3s2aw.mp4'; | |
| const thumb = 'https://files.catbox.moe/9hf51x.jpg'; | |
| // Switch | |
| let mee = false; | |
| // Enable | |
| bot( |
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, getBuffer } = require('../lib/'); | |
| const video = 'https://files.catbox.moe/j3s2aw.mp4'; | |
| const thumb = 'https://files.catbox.moe/9hf51x.jpg'; | |
| // ON/OFF variable | |
| let mentionReply = false; | |
| // Command to enable | |
| bot( |