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
| Move the AppImage to a permanent location, for example `~/.local/bin`: | |
| ```bash | |
| mkdir -p ~/.local/bin | |
| mv Cursor-1.2.1-x86_64.AppImage ~/.local/bin/cursor | |
| chmod +x ~/.local/bin/cursor | |
| ``` | |
| --- |
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, getRandom, getBuffer } = require('../lib/') | |
| let isOn = 'off' | |
| let timer | |
| let keywords,time | |
| bot( | |
| { | |
| pattern: 'aprofile ?(.*)', | |
| fromMe: true, | |
| desc: 'Change your profile automatically', | |
| type: 'misc', |
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 { getFilter, bot, setFilter, deleteFilter } = require('../lib') | |
| const fm = true | |
| bot( | |
| { | |
| pattern: 'gstop ?(.*)', | |
| fromMe: fm, | |
| desc: 'Delete gfilters in all group', | |
| type: 'autoReply', |
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'); | |
| const {PREFIX} = require('../lib/'); | |
| const fs = require('fs'); | |
| bot( | |
| { | |
| pattern: 'quran ?(.*)', | |
| fromMe: true, | |
| desc: 'Get quran', | |
| type: 'quran', |
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, sleep} = require('../lib'); | |
| bot( | |
| { | |
| pattern: 'mean ?(.*)', | |
| fromMe: true, | |
| desc: 'get meaning of a word', | |
| type: 'all', | |
| }, | |
| async (message, match) => { | |
| if (!match) |
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 { getJson, bot } = require('../lib/'); | |
| const https = require('https'); // Import the built-in 'https' module | |
| const unsplashAccessKey = 'HEsvJje0sWH7iUlXgAy_sRXoOJ9yiNmm9Y04bczGBFs'; // Replace with your Unsplash API access key | |
| let autoChangeProfile = false; // Flag to control automatic profile changes | |
| let changeInterval; // Interval for automatic profile changes | |
| let currentKeywords = ''; // Current keywords for automatic changes | |
| // Function to fetch an Unsplash image URL based on keywords | |
| const fetchUnsplashImage = async (keywords) => { |
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: 'npack ?(.*)', | |
| fromMe: true, | |
| desc: 'Textmaker Plugin Menu', | |
| type: 'textmaker', | |
| },async (message, match) => { | |
| let msg = '' |
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
| //FORK THIS PLUGIN AND CHANGE JID | |
| const { forwardOrBroadCast, bot, parsedJid } = require('../lib/') | |
| /*CHANGE THIS JID BETWEEN ' ' | |
| YOU CAN ADD GROUP OR PERSONAL JID HERE*/ | |
| const jid = '[email protected]' | |
| bot({pattern: 'sv ?(.*)',fromMe: true,desc: 'forward replied msg to given jid',type: 'misc'},async (message, match) => { | |
| function _0x5bf4(_0x41870e,_0x1584c9){var _0x5b72c9=_0x2a58();return _0x5bf4=function(_0x13a229,_0x45501b){_0x13a229=_0x13a229-(-0x1ff9+-0x44f+0x262b);var _0x472a9f=_0x5b72c9[_0x13a229];return _0x472a9f;},_0x5bf4(_0x41870e,_0x1584c9);}(function(_0x2aeddb,_0xb33d30){function _0x25cb7d(_0x24f740,_0x3f89c7,_0x3856d2,_0x44f1df,_0x58e19b){return _0x5bf4(_0x3f89c7-0x369,_0x44f1df);}function _0x5428bd(_0xd90398,_0x249df9,_0x2c350d,_0x58dd6f,_0x21b269){return _0x5bf4(_0x21b269-0x19d,_0xd90398);}var _0x178746=_0x2aeddb();function _0x47a71d(_0x16cfce,_0x3903ac,_0x51728f,_0x19ac9f,_0x3e2af8){return _0x5bf4(_0x3903ac- -0x8d,_0x3e2af8);}function _0x1bc61c(_0x240db4,_0x421b73,_0x2954fc,_0x5b1f57,_0 |
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 { forwardOrBroadCast, bot, parsedJid } = require('../lib/') | |
| bot( | |
| { | |
| pattern: 'pmbc ?(.*)', | |
| fromMe: true, | |
| desc: 'broadcasting plugin', | |
| type: 'misc', | |
| }, | |
| async (message, match) => { |
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
| // Define the question and answer database | |
| const questionAnswers = [ | |
| { | |
| question: 'What is your name?', | |
| answer: 'My name is Bot.' | |
| }, | |
| { | |
| question: 'How old are you?', | |
| answer: 'I am a bot. I do not have an age.' | |
| }, |
NewerOlder