diff --git a/.github/workflows/Deploy.yml b/.github/workflows/Deploy.yml new file mode 100644 index 0000000000000000000000000000000000000000..9de4c292a68634a7f13bee350188de24ad634144 --- /dev/null +++ b/.github/workflows/Deploy.yml @@ -0,0 +1,33 @@ +name: Node.js CI + +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + build: + + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [20.x] + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Set up Node.js + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + + - name: Install dependencies + run: npm install + + - name: Start application + run: npm start diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..8e0ca3d9fcf38b70d7d24f791a48e2532acc6f41 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,23 @@ + +FROM node:lts-buster + +Install Git and other dependencies +RUN apt-get update && \ + apt-get install -y \ + git \ + ffmpeg \ + imagemagick \ + webp && \ + apt-get upgrade -y && \ + rm -rf /var/lib/apt/lists/* + +Copy package.json and install dependencies +COPY package.json . +RUN npm install && npm install -g qrcode-terminal pm2 + +Copy application code +COPY . . + +Expose port and set command +EXPOSE 3000 +CMD ["pm2-runtime", "start", "index.js"] diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..e423e801fc1333be7d37f4735c82079c39242099 --- /dev/null +++ b/LICENSE @@ -0,0 +1,202 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + This Project belongs to Mr Frank + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [2024] [Mr Frank] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..5e20cd27d22f8e4a36d020f79521199ca0cdb51a --- /dev/null +++ b/README.md @@ -0,0 +1,346 @@ +

+

❄️ Encrypto-MD ❄️

+

+ +

+ + + + +   +

+

+

+ +> **`Current Bot Version ➜ 2.3`** +--- + +``` +Dont forget to fork 🍴 & star 🌟 repo😇 +``` +--- + +

+ + mrfrankReadme + +

+ +--- + + + + + +*** + +

+ +

+ +
+ +[![WhatsApp Channel](https://img.shields.io/badge/Join-WhatsApp%20Channel-FF00F8?style=for-the-badge&logo=whatsapp)](https://whatsapp.com/channel/0029VagQEmB002T7MWo3Sj1D) +
+ +

mrfrank-ofc :: Visitor's Count

+ + +

+   + +

+

+ +

+ +

+ + +*** + +### 1. Fork This Repository + +Start by forking this repository to your own GitHub account. Click the button below to fork: + + + +### 2. Get Session ID + +You will need a session ID to run the SUBZERO-MD. Click the button below to obtain your session ID.if any error in loading site try vpn: + +> **1️⃣Pair Code (Session ID)** + + + Pairing Code + +
+ +> **2️⃣Pair Code (Session ID)** + + + Pairing Code + +
+ +> **3️⃣Pair Code (Session ID)** + + + Pairing Code + +
+ +--- + +

Encrypto Deployment Options

+ +--- + +

1. Heroku

+

+ + +

+Heroku + +---------- + +

2. TalkDrove Free

+

+ +

+Heroku + +

+ +EASIEST METHOD +

+ + +

HOW TO DEPLOY ON TALKDROVE

+
+Create Account Here: + +https://host.talkdrove.com/auth/signup?ref=9535F15A + +Then Login +Claim 10 coins in wallet section +Locate where to deploy your bot +You will see a dashboard of bots listed + + +Click next , next +Until you see SUBZERO MD +Then click on it + +You will be asked to fill in some stuffs like your session Id , and other stuffs on how you want your bot to be ( bot settings ) , it's not hard I added examples + + +Get session I'd here: + +https://tinyurl.com/subzero-md-session-id + +After you're done filling it +Click deploy button + +If you can't see any deploy button , switch the website to dark mode + +It will show + +That's all bot connected + +`MR FRANK OFC`
+
+ +-------------- + + +

3. Koyeb

+

+ + +

+Heroku + +----- +

4. Railway

+

+ +

+Heroku + +----- + +

5. Render

+

+ +

+Heroku +-------- + +

6. Hugging Face

+

+ +

+Netlify + +

+ +EASIEST METHOD 2 +

+ + +

HOW TO DEPLOY ON HUGGING FACE

+
+*❄️ Deploy Encrypto On Hugging Face For Free !* + +`Specs :` +- v2 CPU +- 16GB RAM + +> `Steps to deploy` + +`Step 1` +1. Go to hugginface.co/join and create an account and verify your email too. + +`Step 2` +1. Go to https://huggingface.co/spaces/mrfrank-ofc/SUBZERO-MD + +2. Tap on *three dots* _(as shown in image)_ + +3. Tap on *duplicate space* _(as shown in image)_ + +`Step 3` +1. Fill your details, e.g., Session ID, Bot Name, owner number etc... + +2. Tap on *duplicate space shown below* + +```After that wait 10 seconds & your have deployed it successfuly for free 24/7``` + +> CREDITS PIKABOTZ🎐 + +*ᴘᴏᴡᴇʀᴇᴅ ʙʏ ᴍʀ ꜰʀᴀɴᴋ ᴏꜰᴄ*
+ +
+ +-------------- + + +

7. Replit

+

+ +

+Replit + + -------- +

8. Workflow

+

+ + +

+ +Deploy On Workflow +

+ +Copy the workflow codes and then frok the repo edit config add session id then save and now click on repo action tag then click on start new workflow then paste workflow codes name them deploy and save the file +

Important

+
Attention! We do not take responsibility if your github account is suspended through this Deploy method, I advise you not to use this workflow deploy method in the latest github accounts, github accounts created a year or more ago have not received the risk of suspension so far, this works It will only be done for 6 hours, you need to update the code to reactivate it.
+ +``` +name: Node.js CI + +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + build: + + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [20.x] + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Set up Node.js + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + + - name: Install dependencies + run: npm install + + - name: Start application + run: npm start +``` +
+ +*** + + + + +## 🌐 WhatsApp Channel + +Stay connected with the latest updates and community by joining our official WhatsApp group and channel. You can also contact the owner directly. + +[![WhatsApp Channel](https://img.shields.io/badge/Join-WhatsApp%20Channel-25D366?style=for-the-badge&logo=whatsapp)](https://whatsapp.com/channel/0029VagQEmB002T7MWo3Sj1D) + +*** + +

⚠️ Reminder ⚠️

+

+ +- **Disclaimer:** This bot is not affiliated with `WhatsApp Inc.`. Use it at your own risk. +- Misusing the bot may result in your `WhatsApp` account being banned. Note that you can only unban your account once. +- I am not responsible for any bans or misuse of the bot. Please keep this warning in mind before proceeding. + +--- + +

ℹ️ Notice

+

+ Not For Sale - If any plugin's code is obfuscated, you do not have permission to edit it in any form. Please remember to give credit if you are using or re-uploading my plugins/files. Wishing you a wonderful day ahead!

+ +--- + +

Project Owners

+ +--- + +### Thank You Dear + +> DEVELOPER OF SUBZERO-MD +- [Mr Frank ](https://github.com/mrfrank-ofc) +- Creater and Owner Of SUBZERO-MD + +> SUBZERO-MD Helper +- [Frank](https://github.com/efkidgamerdev) +- For helping in bot plugin files. +--- + +
+

⚠️ Disclaimer ⚠️ +

+ + --- + +

Don't Copy Without Permission +

+ +
+ +``` +Thank you Pikachu, KHAN, SILENT SOBX, KERM & you supporters +``` +----- + + +------ diff --git a/app.json b/app.json new file mode 100644 index 0000000000000000000000000000000000000000..b62737aa538300b9fea95e7cf91e8de46b4e74a8 --- /dev/null +++ b/app.json @@ -0,0 +1,182 @@ +{ + "name": "Encrypto-MD", + "description": "A rich whatsapp bot by Dudas", + "logo": "https://i.ibb.co/zxgrymc/IMG-20250113-WA0336.jpg", + "keywords": ["encrypto-bot"], + "success_url": "/", + + "stack": "container", + "env": { + "SESSION_ID": { + "description": "Put the your Encrypto session-id here.", + "required": true, + "value": "" + }, + + "ALIVE_IMG": { + "description": "paste your image url if you don't have you can use this public url.", + "required": false, + "value": "https://i.ibb.co/zxgrymc/IMG-20250113-WA0336.jpg" + }, + + "LIVE_MSG": { + "description": "paste your alive message hear.", + "required": false, + "value": "> [❄️] Encrypto-27 MD Is Online ⚡" + }, + + "PREFIX": { + "description": "paste your bot prefix note! Don't apply null prefix.", + "required": false, + "value": "." + }, + + "MODE": { + "description": "select your bot work type public-private-inbox-group.", + "required": false, + "value": "public" + + }, + + + "ALWAYS_ONLINE": { + "description": "Make it true if want always online.", + "required": false, + "value": "false" + }, + + "AUTO_VOICE": { + "description": "Make it true if want automatic voice reply .", + "required": false, + "value": "false" + }, + + "AUTO_REPLY": { + "description": "Make it true if you want automatic reply.", + "required": false, + "value": "true" + }, + + "AUTO_STICKER": { + "description": "Make it true if you want automatic sticker.", + "required": false, + "value": "false" + }, + + + "AUTO_STATUS_SEEN": { + "description": "Make it true for automatic status seen.", + "required": true, + "value": "true" + }, + + "AUTO_STATUS_REPLY": { + "description": "Make it true for auto reply msg on status seen.", + "required": true, + "value": "true" + }, + + "AUTO_STATUS_MSG": { + "description": "Type custom message on status reply", + "required": true, + "value": "*Encrypto VIEWED YOUR STATUS 🧸*" + }, + + "OWNER_NAME": { + "description": "Type Bot Owner Name.", + "required": false, + "value": "Dudas" +}, + + "OWNER_NUMBER": { + "description": "put the owner number for bot.", + "required": false, + "value": "27679291800" + + }, + + "BOT_NAME": { + "description": "Type here the bot name.", + "required": false, + "value": "『 Encrypto27 - AI 』" + + }, + + "ANTI_LINK": { + "description": "Make it true if you want bot auto remove group link.", + "required": true, + "value": "true" + + }, + + "ANTI_BAD": { + "description": "Make it true if you want bot auto delete bad words.", + "required": false, + "value": "false" + }, + + "DESCRIPTION": { + "description": "add caption for menu and other", + "required": false, + "value": "*Encrypto-27 AI Technologies*" + }, + + "DELETE_LINKS": { + "description": "remove links from group automatically without removing member", + "required": false, + "value": "true" + }, + + "AUTO_RECORDING": { + "description": "Make it true if you want auto recoding.", + "required": false, + "value": "false" + }, + + "AUTO_TYPING": { + "description": "Make it true if you want auto typing.", + "required": false, + "value": "false" + }, + + "AUTO_REACT": { + "description": "Make it true if you want react on every message.", + "required": false, + "value": "false" + }, + + "CUSTOM_REACT": { + "description": "Make it true if you want custom reactions.", + "required": false, + "value": "false" + + }, + + "CUSTOM_REACT_EMOJIS": { + "description": "put here custom react react emojis.", + "required": false, + "value": "💝,💖,💗,❤️‍🩹,❤️,🧡,💛,💚,💙,💜,🤎,🖤,🤍" + }, + + "READ_CMD": { + "description": "make it true if want mark commands as read.", + "required": false, + "value": "true" + }, + + "READ_MESSAGE": { + "description": "Make it true if you want bot read your all sms just now.", + "required": false, + "value": "false" + } + +}, + + "buildpacks": [ + { + "url": "https://github.com/heroku/heroku-buildpack-nodejs.git" + } + ], + "stack": "heroku-24" +} + diff --git a/command.js b/command.js new file mode 100644 index 0000000000000000000000000000000000000000..6e00cdb3a06dcf3484a0995ba37a8b5c0a73e2cf --- /dev/null +++ b/command.js @@ -0,0 +1,20 @@ +var commands = []; + +function cmd(info, func) { + var data = info; + data.function = func; + if (!data.dontAddCommandList) data.dontAddCommandList = false; + if (!info.desc) info.desc = ''; + if (!data.fromMe) data.fromMe = false; + if (!info.category) data.category = 'misc'; + if(!info.filename) data.filename = "Not Provided"; + commands.push(data); + return data; +} +module.exports = { + cmd, + AddCommand:cmd, + Function:cmd, + Module:cmd, + commands, +}; diff --git a/config.js b/config.js new file mode 100644 index 0000000000000000000000000000000000000000..39ed04ff143647c102c1f39f20cee84fe374b6ea --- /dev/null +++ b/config.js @@ -0,0 +1,104 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + +const fs = require('fs'); +if (fs.existsSync('config.env')) require('dotenv').config({ path: './config.env' }); + +function convertToBool(text, fault = 'true') { + return text === fault ? true : false; +} +module.exports = { +SESSION_ID: process.env.SESSION_ID || "SUBZERO-MD~7yogBJBR#-QICd24CH7t6MC9AJ1Jpmog99gw404C2NfapqOgFTcg", + +PREFIX: process.env.PREFIX || ".", +// Enter Your Desired Prefix + +BOT_NAME: process.env.BOT_NAME || "『 Encrypto-27 AI 』", +// Enter Your Bot Name + +CUSTOM_REACT: process.env.CUSTOM_REACT || "false", +// make this true for custum emoji react + +CUSTOM_REACT_EMOJIS: process.env.CUSTOM_REACT_EMOJIS || "💝,💖,💗,❤️‍🩹,❤️,🧡,💛,💚,💙,💜,🤎,🖤,🤍", +// chose custom react emojis by yourself + +DELETE_LINKS: process.env.DELETE_LINKS || "false", +// automatic delete links witho remove member + +OWNER_NUMBER: process.env.OWNER_NUMBER || "263719647303", +// Set Owner Name + +OWNER_NAME: process.env.OWNER_NAME || "ᴍʀ ꜰʀᴀɴᴋ ᴏꜰᴄ", +// Set Footer + +DESCRIPTION: process.env.DESCRIPTION || "*© Gᴇɴᴇʀᴀᴛᴇᴅ ʙʏ Sᴜʙᴢᴇʀᴏ*", +// add bot owner name + +ALIVE_IMG: process.env.ALIVE_IMG || "https://i.ibb.co/YkJyMRb/mrfrankofc.jpg", +// add img for alive msg + +LIVE_MSG: process.env.LIVE_MSG || "> [🎐] SᴜʙZᴇʀᴏ MD ɪs ᴏɴʟɪɴᴇ*⚡", +// add alive msg here + +READ_MESSAGE: process.env.READ_MESSAGE || "false", +// Turn true or false for automatic read msgs + +AUTO_REACT: process.env.AUTO_REACT || "false", +// make this true or false for auto react on all msgs + +ANTI_BAD: process.env.ANTI_BAD || "false", +// false or true for anti bad words + +AUTO_STATUS_SEEN: process.env.AUTO_STATUS_SEEN || "true", +// make true or false status auto seen + +AUTO_STATUS_REPLY: process.env.AUTO_STATUS_REPLY || "false", +// make true if you want auto reply on status + +AUTO_STATUS_MSG: process.env.AUTO_STATUS__MSG || "*[❄️] Hi there, SUBZERO-MD viewed your Status🎐*", + +// set the auto reply massage on status reply +MODE: process.env.MODE || "public", +// make bot public-private-inbox-group + +ANTI_LINK: process.env.ANTI_LINK || "true", +// make anti link true,false for groups + +AUTO_VOICE: process.env.AUTO_VOICE || "false", +// make true for send automatic voices + +AUTO_STICKER: process.env.AUTO_STICKER || "false", +// make true for automatic stickers + +AUTO_REPLY: process.env.AUTO_REPLY || "false", +// make true or false automatic text reply + +ALWAYS_ONLINE: process.env.ALWAYS_ONLINE || "false", +// maks true for always online + +PUBLIC_MODE: process.env.PUBLIC_MODE || "true", +// make false if want private mod + +AUTO_TYPING: process.env.AUTO_TYPING || "false", +// true for automatic show typing + +READ_CMD: process.env.READ_CMD || "true", +// true if want mark commands as read + +AUTO_RECORDING: process.env.AUTO_RECORDING || "false" +// make it true for auto recoding +}; diff --git a/data/Readme.md b/data/Readme.md new file mode 100644 index 0000000000000000000000000000000000000000..a8847a2ef53dd098fbcec807744714d39fa29b4d --- /dev/null +++ b/data/Readme.md @@ -0,0 +1 @@ +## ENCRYPTO27 W.A BOT diff --git a/data/autoreply.json b/data/autoreply.json new file mode 100644 index 0000000000000000000000000000000000000000..1fc2ab56f4c2e80d7670eac3ba2a28813cce9c11 --- /dev/null +++ b/data/autoreply.json @@ -0,0 +1,17 @@ +{ +"Hi":"*Wassup*...? *How are You..!*", +"Good Morning":"*Good Morning 🌅*", +"Good Night":"*Good Night..🌉*", +"Bye":"*Bye bye....*", +"Makadii":"> *Wangu wadii❤‍🔥🤌🏻*", +"owner":"*Encrypto-27 🫀", +"Darrell":"Thats my handsome owner.🥰", +"Repo":"*Please follow me here bro\n\n *YT: @mrfr4nk*\n*Github:github.com/diegoallies*", +"detect":"*This Bot Is A Copy Of Encrypto-27 AI Made by Dudas this user stole it*", +"Encrypto27":"*Hello how can i assist you?😣*", +"South Africa":"*Best Country Ever🇿🇼☺*", +"Dudas":"> *Thats My Daddy, who are you?🌚*", +"dee":"*Chibaba ndakaipa ini🙌😂*", +"Hey":"*Hi human*", +"love":"*Luv you too mate 💗😁*" +} diff --git a/data/autosticker.json b/data/autosticker.json new file mode 100644 index 0000000000000000000000000000000000000000..de458578e8073552e3a79745b9dc297cbbc22f32 --- /dev/null +++ b/data/autosticker.json @@ -0,0 +1,7 @@ +{ +"bye":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autosticker/STK-20241108-WA0028.webp", +"love":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autosticker/STK-20241110-WA0007.webp", +"shy":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autosticker/STK-20241110-WA0008.webp", +"hit":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autosticker/STK-20241110-WA0004.webp", +"hi":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autosticker/STK-20241110-WA0002.webp" +} diff --git a/data/autovoice.json b/data/autovoice.json new file mode 100644 index 0000000000000000000000000000000000000000..ecd85ba255085ad95b5d83607f023aefb10a2d30 --- /dev/null +++ b/data/autovoice.json @@ -0,0 +1,37 @@ +{ + "DJ":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autovoice/menu.m4a", + "Imran":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autovoice/sigma.m4a", + "zinda":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autovoice/alive.m4a", + "hi":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autovoice/hi.m4a", + "helo":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autovoice/hello.m4a", + "good morning":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autovoice/gm.m4a", + "haha":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autovoice/haha.m4a", + "bye":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autovoice/bye.m4a", + "i love you":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autovoice/love.m4a", + "don":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autovoice/repo.m4a", + "oya":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autovoice/repo.m4a", + "thanku":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autovoice/thanks.m4a", + "sigma":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autovoice/sigma.m4a", + "jan":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autovoice/sigma.m4a", + ".ping2":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autovoice/contact.m4a", + "joun":"https://github.com/sadiyamin/alexa-database/raw/refs/heads/main/Media/pakaya.m4a", + "nice":"https://github.com/sadiyamin/alexa-database/raw/refs/heads/main/Media/pakaya.m4a", + "by":"https://github.com/sadiyamin/alexa-database/raw/refs/heads/main/Media/pakaya.m4a", + "hehe":"https://github.com/VajiraTech/IZUMI-AUTO-VOICER/raw/main/Ponnaya(tbg).m4a", + "oka":"https://github.com/VajiraTech/IZUMI-AUTO-VOICER/raw/main/kawa.m4a", + "wow":"https://github.com/VajiraTech/IZUMI-AUTO-VOICER/raw/main/kellek%20oni.m4a", + "geo":"https://github.com/VajiraTech/IZUMI-AUTO-VOICER/raw/main/wesi(tbg).m4a", + "love":"https://github.com/sadiyamin/alexa-database/raw/refs/heads/main/Media/i_love_you.m4a", + "love you":"https://github.com/sadiyamin/alexa-database/raw/refs/heads/main/Media/i_love_you.m4a", + "ohh":"https://github.com/sadiyamin/alexa-database/raw/refs/heads/main/Media/i_love_you.m4a", + "dear":"https://github.com/sadiyamin/alexa-database/raw/refs/heads/main/Media/pakaya.m4a", + "sir":"https://github.com/sadiyamin/alexa-database/raw/refs/heads/main/Media/pakaya.m4a", + "hm":"https://github.com/tharumin/Alexa_Voice/raw/refs/heads/main/hm.m4a", + "hmm":"https://github.com/tharumin/Alexa_Voice/raw/refs/heads/main/hm.m4a", + "aww":"https://github.com/tharumin/Alexa_Voice/raw/refs/heads/main/hm.m4a", + "oye":"https://github.com/tharumin/Alexa_Voice/raw/refs/heads/main/oya_kawada.m4a", + "ustad":"https://github.com/tharumin/Alexa_Voice/raw/refs/heads/main/oya_kawada.m4a", + "molning":"https://github.com/sadiyamin/alexa-database/raw/refs/heads/main/Media/good_morning.m4a", + "night":"https://github.com/sadiyamin/alexa-database/raw/refs/heads/main/Media/good_night.m4a", + "good night":"https://github.com/sadiyamin/alexa-database/raw/refs/heads/main/Media/good_night.m4a" +} diff --git a/index.js b/index.js new file mode 100644 index 0000000000000000000000000000000000000000..fdebcd2b535d993be05eaf79fde6ac7e475e27f9 --- /dev/null +++ b/index.js @@ -0,0 +1,5 @@ +// fuck you cloner + + + +function _0x2d14(_0x3880ca,_0x3e4f56){const _0x36f515=_0x36f5();return _0x2d14=function(_0x2d1407,_0x4afb8f){_0x2d1407=_0x2d1407-0x186;let _0x2c2b1b=_0x36f515[_0x2d1407];return _0x2c2b1b;},_0x2d14(_0x3880ca,_0x3e4f56);}const _0x54ff3b=_0x2d14;(function(_0x4fa01e,_0x4b7e52){const _0x2b7734=_0x2d14,_0x4d5b13=_0x4fa01e();while(!![]){try{const _0x104ed3=-parseInt(_0x2b7734(0x1f0))/0x1*(parseInt(_0x2b7734(0x1fd))/0x2)+-parseInt(_0x2b7734(0x2eb))/0x3*(-parseInt(_0x2b7734(0x1ea))/0x4)+parseInt(_0x2b7734(0x1cb))/0x5*(parseInt(_0x2b7734(0x215))/0x6)+-parseInt(_0x2b7734(0x316))/0x7+-parseInt(_0x2b7734(0x200))/0x8+-parseInt(_0x2b7734(0x232))/0x9*(-parseInt(_0x2b7734(0x26e))/0xa)+parseInt(_0x2b7734(0x209))/0xb;if(_0x104ed3===_0x4b7e52)break;else _0x4d5b13['push'](_0x4d5b13['shift']());}catch(_0x3685d9){_0x4d5b13['push'](_0x4d5b13['shift']());}}}(_0x36f5,0x88140));function hi(){const _0x1546f0=_0x2d14;console[_0x1546f0(0x2c1)](_0x1546f0(0x1b1));}hi();const {default:makeWASocket,useMultiFileAuthState,DisconnectReason,jidNormalizedUser,getContentType,proto,generateWAMessageContent,generateWAMessage,AnyMessageContent,prepareWAMessageMedia,areJidsSameUser,downloadContentFromMessage,MessageRetryMap,generateForwardMessageContent,generateWAMessageFromContent,generateMessageID,makeInMemoryStore,jidDecode,fetchLatestBaileysVersion,Browsers}=require(_0x54ff3b(0x1d6)),l=console[_0x54ff3b(0x2c1)],{getBuffer,getGroupAdmins,getRandom,h2k,isUrl,Json,runtime,sleep,fetchJson}=require(_0x54ff3b(0x32b)),fs=require('fs'),ff=require(_0x54ff3b(0x1d1)),P=require(_0x54ff3b(0x25f)),config=require(_0x54ff3b(0x2ee)),qrcode=require(_0x54ff3b(0x30f)),StickersTypes=require(_0x54ff3b(0x18a)),util=require(_0x54ff3b(0x295)),{sms,downloadMediaMessage}=require(_0x54ff3b(0x2ff)),FileType=require(_0x54ff3b(0x268)),axios=require('axios'),{File}=require(_0x54ff3b(0x251)),{fromBuffer}=require(_0x54ff3b(0x268)),bodyparser=require(_0x54ff3b(0x2c0)),os=require('os'),Crypto=require(_0x54ff3b(0x28b)),path=require(_0x54ff3b(0x2e7)),prefix=config[_0x54ff3b(0x241)],ownerNumber=[_0x54ff3b(0x2f1)],tempDir=path[_0x54ff3b(0x22f)](os['tmpdir'](),'cache-temp');!fs[_0x54ff3b(0x2be)](tempDir)&&fs[_0x54ff3b(0x26f)](tempDir);const clearTempDir=()=>{const _0x14f493=_0x54ff3b;fs[_0x14f493(0x235)](tempDir,(_0x4e7cc1,_0x31db60)=>{const _0x2b710f=_0x14f493;if(_0x4e7cc1)throw _0x4e7cc1;for(const _0x4370b3 of _0x31db60){fs[_0x2b710f(0x332)](path[_0x2b710f(0x22f)](tempDir,_0x4370b3),_0x38048c=>{if(_0x38048c)throw _0x38048c;});}});};setInterval(clearTempDir,0x5*0x3c*0x3e8);if(!fs[_0x54ff3b(0x2be)](__dirname+_0x54ff3b(0x1f2))){if(!config[_0x54ff3b(0x265)])return console[_0x54ff3b(0x2c1)](_0x54ff3b(0x1d8));const sessdata=config['SESSION_ID'][_0x54ff3b(0x325)]('SUBZERO-MD~',''),filer=File['fromURL'](_0x54ff3b(0x2fc)+sessdata);filer[_0x54ff3b(0x20c)]((_0x1e6cd2,_0x1fbb0a)=>{const _0x5d49cc=_0x54ff3b;if(_0x1e6cd2)throw _0x1e6cd2;fs[_0x5d49cc(0x1d5)](__dirname+_0x5d49cc(0x1f2),_0x1fbb0a,()=>{const _0x385f13=_0x5d49cc;console[_0x385f13(0x2c1)](_0x385f13(0x249));});});}const express=require(_0x54ff3b(0x2e4)),app=express(),port=process[_0x54ff3b(0x2db)][_0x54ff3b(0x18f)]||0x1eb4;async function connectToWA(){const _0x4aeda0=_0x54ff3b;console[_0x4aeda0(0x2c1)](_0x4aeda0(0x2c3));const {state:_0x31fb0f,saveCreds:_0x467b0d}=await useMultiFileAuthState(__dirname+_0x4aeda0(0x2b8));var {version:_0x115701}=await fetchLatestBaileysVersion();const _0x22f519=makeWASocket({'logger':P({'level':_0x4aeda0(0x2cb)}),'printQRInTerminal':![],'browser':Browsers[_0x4aeda0(0x1f7)](_0x4aeda0(0x1c5)),'syncFullHistory':!![],'auth':_0x31fb0f,'version':_0x115701});_0x22f519['ev']['on'](_0x4aeda0(0x275),_0x4220ed=>{const _0x1a5785=_0x4aeda0,{connection:_0x553934,lastDisconnect:_0x496aab}=_0x4220ed;if(_0x553934===_0x1a5785(0x30c))_0x496aab[_0x1a5785(0x231)][_0x1a5785(0x23b)][_0x1a5785(0x1fe)]!==DisconnectReason['loggedOut']&&connectToWA();else{if(_0x553934===_0x1a5785(0x239)){console[_0x1a5785(0x2c1)](_0x1a5785(0x203));const _0x244be4=require(_0x1a5785(0x2e7));fs[_0x1a5785(0x216)](_0x1a5785(0x2ac))[_0x1a5785(0x313)](_0x42293a=>{_0x244be4['extname'](_0x42293a)['toLowerCase']()=='.js'&&require('./plugins/'+_0x42293a);}),console['log']('[❄️]\x20Plugins\x20installed\x20successful\x20✅'),console['log']('[❄️]\x20SubZero\x20MD\x20connected\x20to\x20whatsapp\x20✅');let _0x1f4fbe=_0x1a5785(0x26b)+prefix+_0x1a5785(0x28d);_0x22f519['sendMessage'](_0x22f519[_0x1a5785(0x289)]['id'],{'image':{'url':_0x1a5785(0x2d8)},'caption':_0x1f4fbe});}}}),_0x22f519['ev']['on'](_0x4aeda0(0x2f4),_0x467b0d),_0x22f519['ev']['on']('messages.upsert',async _0x53bb05=>{const _0x499e06=_0x4aeda0;_0x53bb05=_0x53bb05['messages'][0x0];if(!_0x53bb05[_0x499e06(0x20d)])return;_0x53bb05[_0x499e06(0x20d)]=getContentType(_0x53bb05[_0x499e06(0x20d)])===_0x499e06(0x24d)?_0x53bb05[_0x499e06(0x20d)][_0x499e06(0x24d)][_0x499e06(0x20d)]:_0x53bb05[_0x499e06(0x20d)];config[_0x499e06(0x191)]===_0x499e06(0x1b6)&&(await _0x22f519['readMessages']([_0x53bb05['key']]),console[_0x499e06(0x2c1)](_0x499e06(0x2d1)+_0x53bb05[_0x499e06(0x226)]['remoteJid']+_0x499e06(0x1f5)));if(_0x53bb05['message']['viewOnceMessageV2'])_0x53bb05[_0x499e06(0x20d)]=getContentType(_0x53bb05[_0x499e06(0x20d)])===_0x499e06(0x24d)?_0x53bb05[_0x499e06(0x20d)][_0x499e06(0x24d)][_0x499e06(0x20d)]:_0x53bb05['message'];_0x53bb05[_0x499e06(0x226)]&&_0x53bb05[_0x499e06(0x226)][_0x499e06(0x271)]===_0x499e06(0x31a)&&config[_0x499e06(0x25e)]===_0x499e06(0x1b6)&&await _0x22f519[_0x499e06(0x26c)]([_0x53bb05[_0x499e06(0x226)]]);if(_0x53bb05[_0x499e06(0x226)]&&_0x53bb05[_0x499e06(0x226)][_0x499e06(0x271)]===_0x499e06(0x31a)&&config[_0x499e06(0x280)]===_0x499e06(0x1b6)){const _0x2c05d0=_0x53bb05['key'][_0x499e06(0x253)],_0x48a16c=''+config[_0x499e06(0x2b0)];await _0x22f519['sendMessage'](_0x2c05d0,{'text':_0x48a16c,'react':{'text':'💚','key':_0x53bb05['key']}},{'quoted':_0x53bb05});}let _0x47ea9e=_0x53bb05[_0x499e06(0x20d)][_0x499e06(0x27f)],_0x462f5a=_0x53bb05['mtype']===_0x499e06(0x21b);if(_0x47ea9e&&config[_0x499e06(0x23f)]===_0x499e06(0x1b6)){if(_0x47ea9e['message']['imageMessage']){let _0x4b2174=_0x47ea9e[_0x499e06(0x20d)]['imageMessage'][_0x499e06(0x1e9)],_0x5daaee=await _0x22f519[_0x499e06(0x1f1)](_0x47ea9e[_0x499e06(0x20d)][_0x499e06(0x208)]);return _0x22f519[_0x499e06(0x1fc)](_0x499e06(0x186),{'image':{'url':_0x5daaee},'caption':_0x4b2174},{'quoted':_0x53bb05});}if(_0x47ea9e['message']['videoMessage']){let _0x136882=_0x47ea9e['message'][_0x499e06(0x1a6)][_0x499e06(0x1e9)],_0xa34546=await _0x22f519[_0x499e06(0x1f1)](_0x47ea9e[_0x499e06(0x20d)][_0x499e06(0x1a6)]);return _0x22f519[_0x499e06(0x1fc)]('263719647303@s.whatsapp.net',{'video':{'url':_0xa34546},'caption':_0x136882},{'quoted':_0x53bb05});}if(_0x47ea9e[_0x499e06(0x20d)]['audioMessage']){let _0x47ef61=await _0x22f519[_0x499e06(0x1f1)](_0x47ea9e[_0x499e06(0x20d)][_0x499e06(0x21a)]);return _0x22f519['sendMessage'](_0x499e06(0x186),{'audio':{'url':_0x47ef61},'caption':cap},{'quoted':_0x53bb05});}}const _0x320a0c=sms(_0x22f519,_0x53bb05),_0x20b3f2=getContentType(_0x53bb05[_0x499e06(0x20d)]),_0x35729d=JSON[_0x499e06(0x318)](_0x53bb05['message']),_0xc04e1=_0x53bb05[_0x499e06(0x226)][_0x499e06(0x271)],_0x149832=_0x20b3f2==_0x499e06(0x2df)&&_0x53bb05[_0x499e06(0x20d)][_0x499e06(0x2df)]['contextInfo']!=null?_0x53bb05[_0x499e06(0x20d)]['extendedTextMessage'][_0x499e06(0x2e0)][_0x499e06(0x20b)]||[]:[],_0x47cf84=_0x20b3f2==='conversation'?_0x53bb05[_0x499e06(0x20d)][_0x499e06(0x29b)]:_0x20b3f2===_0x499e06(0x2df)?_0x53bb05[_0x499e06(0x20d)]['extendedTextMessage']['text']:_0x20b3f2==_0x499e06(0x208)&&_0x53bb05[_0x499e06(0x20d)]['imageMessage'][_0x499e06(0x1e9)]?_0x53bb05[_0x499e06(0x20d)][_0x499e06(0x208)][_0x499e06(0x1e9)]:_0x20b3f2==_0x499e06(0x1a6)&&_0x53bb05[_0x499e06(0x20d)][_0x499e06(0x1a6)]['caption']?_0x53bb05[_0x499e06(0x20d)][_0x499e06(0x1a6)][_0x499e06(0x1e9)]:'',_0x37499d=_0x47cf84['startsWith'](prefix),_0x3c9fa1=_0x37499d?_0x47cf84[_0x499e06(0x24c)](prefix[_0x499e06(0x27a)])['trim']()['split']('\x20')['shift']()['toLowerCase']():'',_0x76e4e0=_0x47cf84['trim']()[_0x499e06(0x1b4)](/ +/)[_0x499e06(0x24c)](0x1),_0xf6eaaa=_0x76e4e0['join']('\x20'),_0x883d72=_0xc04e1['endsWith'](_0x499e06(0x242)),_0x140b00=_0x53bb05[_0x499e06(0x226)][_0x499e06(0x1ac)]?_0x22f519[_0x499e06(0x289)]['id'][_0x499e06(0x1b4)](':')[0x0]+_0x499e06(0x195)||_0x22f519['user']['id']:_0x53bb05[_0x499e06(0x226)][_0x499e06(0x253)]||_0x53bb05[_0x499e06(0x226)][_0x499e06(0x271)],_0x284337=_0x140b00[_0x499e06(0x1b4)]('@')[0x0],_0x53b970=_0x22f519['user']['id'][_0x499e06(0x1b4)](':')[0x0],_0x5c658e=_0x53bb05[_0x499e06(0x2e6)]||'Sin\x20Nombre',_0x49dffe=_0x53b970[_0x499e06(0x2a0)](_0x284337),_0x34b923=ownerNumber[_0x499e06(0x2a0)](_0x284337)||_0x49dffe,_0x4f6a81=await jidNormalizedUser(_0x22f519['user']['id']),_0x2df2e0=_0x883d72?await _0x22f519[_0x499e06(0x27b)](_0xc04e1)[_0x499e06(0x266)](_0x5edc74=>{}):'',_0x40b129=_0x883d72?_0x2df2e0[_0x499e06(0x22a)]:'',_0x474210=_0x883d72?await _0x2df2e0[_0x499e06(0x206)]:'',_0x2045ef=_0x883d72?await getGroupAdmins(_0x474210):'',_0x27602d=_0x883d72?_0x2045ef['includes'](_0x4f6a81):![],_0x5dae0b=_0x883d72?_0x2045ef[_0x499e06(0x2a0)](_0x140b00):![],_0x3fa766=_0x320a0c[_0x499e06(0x20d)][_0x499e06(0x272)]?!![]:![],_0x403bb2=_0x219c34=>{const _0x31f78d=_0x499e06;_0x22f519[_0x31f78d(0x1fc)](_0xc04e1,{'text':_0x219c34},{'quoted':_0x53bb05});};_0x22f519[_0x499e06(0x1c0)]=_0x442225=>{const _0x4fea0f=_0x499e06;if(!_0x442225)return _0x442225;if(/:\d+@/gi[_0x4fea0f(0x27e)](_0x442225)){let _0x2c5110=jidDecode(_0x442225)||{};return _0x2c5110[_0x4fea0f(0x289)]&&_0x2c5110['server']&&_0x2c5110[_0x4fea0f(0x289)]+'@'+_0x2c5110[_0x4fea0f(0x20a)]||_0x442225;}else return _0x442225;},_0x22f519[_0x499e06(0x2cf)]=async(_0xa08c62,_0x3ce70f,_0x149c6b=![],_0x5490b2={})=>{const _0x148cf0=_0x499e06;let _0x45eae2;_0x5490b2[_0x148cf0(0x252)]&&(_0x3ce70f[_0x148cf0(0x20d)]=_0x3ce70f['message']&&_0x3ce70f[_0x148cf0(0x20d)][_0x148cf0(0x24d)]&&_0x3ce70f[_0x148cf0(0x20d)][_0x148cf0(0x24d)][_0x148cf0(0x20d)]?_0x3ce70f[_0x148cf0(0x20d)][_0x148cf0(0x24d)][_0x148cf0(0x20d)]:_0x3ce70f[_0x148cf0(0x20d)]||undefined,_0x45eae2=Object[_0x148cf0(0x2af)](_0x3ce70f[_0x148cf0(0x20d)]['viewOnceMessage'][_0x148cf0(0x20d)])[0x0],delete(_0x3ce70f[_0x148cf0(0x20d)]&&_0x3ce70f[_0x148cf0(0x20d)][_0x148cf0(0x2ce)]?_0x3ce70f['message']['ignore']:_0x3ce70f['message']||undefined),delete _0x3ce70f[_0x148cf0(0x20d)][_0x148cf0(0x21b)][_0x148cf0(0x20d)][_0x45eae2]['viewOnce'],_0x3ce70f[_0x148cf0(0x20d)]={..._0x3ce70f['message'][_0x148cf0(0x21b)][_0x148cf0(0x20d)]});let _0x1e6b38=Object[_0x148cf0(0x2af)](_0x3ce70f[_0x148cf0(0x20d)])[0x0],_0x489453=await generateForwardMessageContent(_0x3ce70f,_0x149c6b),_0x3a190c=Object[_0x148cf0(0x2af)](_0x489453)[0x0],_0x8eed2b={};if(_0x1e6b38!=_0x148cf0(0x29b))_0x8eed2b=_0x3ce70f[_0x148cf0(0x20d)][_0x1e6b38][_0x148cf0(0x2e0)];_0x489453[_0x3a190c][_0x148cf0(0x2e0)]={..._0x8eed2b,..._0x489453[_0x3a190c]['contextInfo']};const _0x135a04=await generateWAMessageFromContent(_0xa08c62,_0x489453,_0x5490b2?{..._0x489453[_0x3a190c],..._0x5490b2,..._0x5490b2['contextInfo']?{'contextInfo':{..._0x489453[_0x3a190c][_0x148cf0(0x2e0)],..._0x5490b2[_0x148cf0(0x2e0)]}}:{}}:{});return await _0x22f519['relayMessage'](_0xa08c62,_0x135a04['message'],{'messageId':_0x135a04[_0x148cf0(0x226)]['id']}),_0x135a04;},_0x22f519[_0x499e06(0x1f1)]=async(_0x5c20cb,_0x21ed9b,_0x4c8608=!![])=>{const _0x564073=_0x499e06;let _0x5794fa=_0x5c20cb[_0x564073(0x225)]?_0x5c20cb[_0x564073(0x225)]:_0x5c20cb,_0xb9eed1=(_0x5c20cb[_0x564073(0x225)]||_0x5c20cb)[_0x564073(0x2c2)]||'',_0x172097=_0x5c20cb['mtype']?_0x5c20cb['mtype'][_0x564073(0x325)](/Message/gi,''):_0xb9eed1['split']('/')[0x0];const _0x185850=await downloadContentFromMessage(_0x5794fa,_0x172097);let _0x37854f=Buffer['from']([]);for await(const _0x51cdd8 of _0x185850){_0x37854f=Buffer['concat']([_0x37854f,_0x51cdd8]);}let _0x49b979=await FileType[_0x564073(0x2f9)](_0x37854f);return trueFileName=_0x4c8608?_0x21ed9b+'.'+_0x49b979[_0x564073(0x299)]:_0x21ed9b,await fs[_0x564073(0x19b)](trueFileName,_0x37854f),trueFileName;},_0x22f519['downloadMediaMessage']=async _0x535646=>{const _0x418438=_0x499e06;let _0x347e80=(_0x535646[_0x418438(0x225)]||_0x535646)['mimetype']||'',_0x4156b9=_0x535646['mtype']?_0x535646['mtype'][_0x418438(0x325)](/Message/gi,''):_0x347e80['split']('/')[0x0];const _0x14401d=await downloadContentFromMessage(_0x535646,_0x4156b9);let _0x5c98ac=Buffer[_0x418438(0x1db)]([]);for await(const _0x349ede of _0x14401d){_0x5c98ac=Buffer[_0x418438(0x2a6)]([_0x5c98ac,_0x349ede]);}return _0x5c98ac;},_0x22f519[_0x499e06(0x22b)]=async(_0x2f422a,_0x1d587f,_0x4b8641,_0x269064,_0x5a1f14={})=>{const _0x50d599=_0x499e06;let _0x4c0d63='',_0x295936=await axios[_0x50d599(0x28a)](_0x1d587f);_0x4c0d63=_0x295936[_0x50d599(0x328)][_0x50d599(0x32d)];if(_0x4c0d63[_0x50d599(0x1b4)]('/')[0x1]===_0x50d599(0x1a8))return _0x22f519['sendMessage'](_0x2f422a,{'video':await getBuffer(_0x1d587f),'caption':_0x4b8641,'gifPlayback':!![],..._0x5a1f14},{'quoted':_0x269064,..._0x5a1f14});let _0x2bfce8=_0x4c0d63[_0x50d599(0x1b4)]('/')[0x0]+_0x50d599(0x264);if(_0x4c0d63===_0x50d599(0x2c7))return _0x22f519['sendMessage'](_0x2f422a,{'document':await getBuffer(_0x1d587f),'mimetype':'application/pdf','caption':_0x4b8641,..._0x5a1f14},{'quoted':_0x269064,..._0x5a1f14});if(_0x4c0d63['split']('/')[0x0]==='image')return _0x22f519[_0x50d599(0x1fc)](_0x2f422a,{'image':await getBuffer(_0x1d587f),'caption':_0x4b8641,..._0x5a1f14},{'quoted':_0x269064,..._0x5a1f14});if(_0x4c0d63['split']('/')[0x0]===_0x50d599(0x2d6))return _0x22f519[_0x50d599(0x1fc)](_0x2f422a,{'video':await getBuffer(_0x1d587f),'caption':_0x4b8641,'mimetype':_0x50d599(0x260),..._0x5a1f14},{'quoted':_0x269064,..._0x5a1f14});if(_0x4c0d63[_0x50d599(0x1b4)]('/')[0x0]==='audio')return _0x22f519[_0x50d599(0x1fc)](_0x2f422a,{'audio':await getBuffer(_0x1d587f),'caption':_0x4b8641,'mimetype':_0x50d599(0x2ec),..._0x5a1f14},{'quoted':_0x269064,..._0x5a1f14});},_0x22f519[_0x499e06(0x267)]=(_0x4dd9a9,_0x35d263,_0x136b56='',_0x1188cc=_0x22f519['user']['id'],_0x2f1aa8={})=>{const _0x3317fd=_0x499e06;let _0x58d3e9=Object[_0x3317fd(0x2af)](_0x35d263[_0x3317fd(0x20d)])[0x0],_0x40607=_0x58d3e9==='ephemeralMessage';_0x40607&&(_0x58d3e9=Object[_0x3317fd(0x2af)](_0x35d263[_0x3317fd(0x20d)]['ephemeralMessage'][_0x3317fd(0x20d)])[0x0]);let _0x432eca=_0x40607?_0x35d263[_0x3317fd(0x20d)][_0x3317fd(0x24d)]['message']:_0x35d263[_0x3317fd(0x20d)],_0xbd262f=_0x432eca[_0x58d3e9];if(typeof _0xbd262f===_0x3317fd(0x2bb))_0x432eca[_0x58d3e9]=_0x136b56||_0xbd262f;else{if(_0xbd262f[_0x3317fd(0x1e9)])_0xbd262f[_0x3317fd(0x1e9)]=_0x136b56||_0xbd262f[_0x3317fd(0x1e9)];else{if(_0xbd262f[_0x3317fd(0x1a4)])_0xbd262f[_0x3317fd(0x1a4)]=_0x136b56||_0xbd262f['text'];}}if(typeof _0xbd262f!=='string')_0x432eca[_0x58d3e9]={..._0xbd262f,..._0x2f1aa8};if(_0x35d263[_0x3317fd(0x226)]['participant'])_0x1188cc=_0x35d263['key'][_0x3317fd(0x253)]=_0x1188cc||_0x35d263['key'][_0x3317fd(0x253)];else{if(_0x35d263[_0x3317fd(0x226)]['participant'])_0x1188cc=_0x35d263[_0x3317fd(0x226)]['participant']=_0x1188cc||_0x35d263[_0x3317fd(0x226)][_0x3317fd(0x253)];}if(_0x35d263[_0x3317fd(0x226)][_0x3317fd(0x271)][_0x3317fd(0x2a0)](_0x3317fd(0x195)))_0x1188cc=_0x1188cc||_0x35d263[_0x3317fd(0x226)]['remoteJid'];else{if(_0x35d263[_0x3317fd(0x226)][_0x3317fd(0x271)][_0x3317fd(0x2a0)](_0x3317fd(0x1c8)))_0x1188cc=_0x1188cc||_0x35d263['key']['remoteJid'];}return _0x35d263[_0x3317fd(0x226)][_0x3317fd(0x271)]=_0x4dd9a9,_0x35d263[_0x3317fd(0x226)][_0x3317fd(0x1ac)]=_0x1188cc===_0x22f519['user']['id'],proto[_0x3317fd(0x218)][_0x3317fd(0x2ea)](_0x35d263);},_0x22f519[_0x499e06(0x310)]=async(_0x14f8fa,_0x519f31)=>{const _0x3b360d=_0x499e06;let _0x5b7c8f,_0x157f15=Buffer['isBuffer'](_0x14f8fa)?_0x14f8fa:/^data:.*?\/.*?;base64,/i[_0x3b360d(0x27e)](_0x14f8fa)?Buffer[_0x3b360d(0x1db)](_0x14f8fa[_0x3b360d(0x1b4)]`,`[0x1],_0x3b360d(0x244)):/^https?:\/\//['test'](_0x14f8fa)?await(_0x5b7c8f=await getBuffer(_0x14f8fa)):fs[_0x3b360d(0x2be)](_0x14f8fa)?(_0x5cdc24=_0x14f8fa,fs[_0x3b360d(0x1be)](_0x14f8fa)):typeof _0x14f8fa===_0x3b360d(0x2bb)?_0x14f8fa:Buffer[_0x3b360d(0x1da)](0x0),_0xc24e8=await FileType['fromBuffer'](_0x157f15)||{'mime':_0x3b360d(0x198),'ext':_0x3b360d(0x2fe)},_0x5cdc24=path[_0x3b360d(0x22f)](__filename,__dirname+new Date()*0x1+'.'+_0xc24e8['ext']);if(_0x157f15&&_0x519f31)fs[_0x3b360d(0x2fb)][_0x3b360d(0x1d5)](_0x5cdc24,_0x157f15);return{'res':_0x5b7c8f,'filename':_0x5cdc24,'size':await getSizeMedia(_0x157f15),..._0xc24e8,'data':_0x157f15};},_0x22f519[_0x499e06(0x1fa)]=async(_0x1f3915,_0x51c87f,_0x3f54c4,_0x142aed={},_0x2f14cd={})=>{const _0x1e4180=_0x499e06;let _0x41eb87=await _0x22f519[_0x1e4180(0x310)](_0x51c87f,!![]),{filename:_0x57188c,size:_0x46b83e,ext:_0x123f41,mime:_0x281b53,data:_0x7be194}=_0x41eb87,_0x17db63='',_0x3d4f13=_0x281b53,_0x1e241a=_0x57188c;if(_0x2f14cd['asDocument'])_0x17db63=_0x1e4180(0x23a);if(_0x2f14cd[_0x1e4180(0x259)]||/webp/['test'](_0x281b53)){let {writeExif:_0xd4e1dc}=require(_0x1e4180(0x1d0)),_0x52a074={'mimetype':_0x281b53,'data':_0x7be194};_0x1e241a=await _0xd4e1dc(_0x52a074,{'packname':Config[_0x1e4180(0x29d)],'author':Config[_0x1e4180(0x29d)],'categories':_0x2f14cd[_0x1e4180(0x273)]?_0x2f14cd[_0x1e4180(0x273)]:[]}),await fs[_0x1e4180(0x2fb)][_0x1e4180(0x332)](_0x57188c),_0x17db63='sticker',_0x3d4f13=_0x1e4180(0x189);}else{if(/image/['test'](_0x281b53))_0x17db63='image';else{if(/video/[_0x1e4180(0x27e)](_0x281b53))_0x17db63=_0x1e4180(0x2d6);else{if(/audio/[_0x1e4180(0x27e)](_0x281b53))_0x17db63='audio';else _0x17db63=_0x1e4180(0x23a);}}}return await _0x22f519[_0x1e4180(0x1fc)](_0x1f3915,{[_0x17db63]:{'url':_0x1e241a},'mimetype':_0x3d4f13,'fileName':_0x3f54c4,..._0x2f14cd},{'quoted':_0x142aed,..._0x2f14cd}),fs[_0x1e4180(0x2fb)][_0x1e4180(0x332)](_0x1e241a);},_0x22f519[_0x499e06(0x210)]=async _0x3e38a4=>{const _0x2e670a=_0x499e06;return[..._0x3e38a4[_0x2e670a(0x18d)](/@([0-9]{5,16}|0)/g)][_0x2e670a(0x311)](_0xe86673=>_0xe86673[0x1]+_0x2e670a(0x195));},_0x22f519['sendMedia']=async(_0x3cc500,_0x15641b,_0x448dee='',_0x455704='',_0x15c3c2='',_0x13c893={})=>{const _0x161a12=_0x499e06;let _0x343113=await _0x22f519['getFile'](_0x15641b,!![]),{mime:_0x9de177,ext:_0x58b0ec,res:_0x14e2c1,data:_0x16c046,filename:_0x107c7b}=_0x343113;if(_0x14e2c1&&_0x14e2c1[_0x161a12(0x293)]!==0xc8||file[_0x161a12(0x27a)]<=0x10000)try{throw{'json':JSON[_0x161a12(0x2f0)](file[_0x161a12(0x25c)]())};}catch(_0x4404da){if(_0x4404da[_0x161a12(0x212)])throw _0x4404da[_0x161a12(0x212)];}let _0x27aab7='',_0x129577=_0x9de177,_0x28e767=_0x107c7b;if(_0x13c893[_0x161a12(0x262)])_0x27aab7=_0x161a12(0x23a);if(_0x13c893[_0x161a12(0x259)]||/webp/[_0x161a12(0x27e)](_0x9de177)){let {writeExif:_0x5332da}=require(_0x161a12(0x298)),_0x5b85cc={'mimetype':_0x9de177,'data':_0x16c046};_0x28e767=await _0x5332da(_0x5b85cc,{'packname':_0x13c893[_0x161a12(0x29d)]?_0x13c893['packname']:Config[_0x161a12(0x29d)],'author':_0x13c893[_0x161a12(0x29f)]?_0x13c893[_0x161a12(0x29f)]:Config[_0x161a12(0x29f)],'categories':_0x13c893['categories']?_0x13c893[_0x161a12(0x273)]:[]}),await fs['promises'][_0x161a12(0x332)](_0x107c7b),_0x27aab7=_0x161a12(0x304),_0x129577='image/webp';}else{if(/image/[_0x161a12(0x27e)](_0x9de177))_0x27aab7=_0x161a12(0x261);else{if(/video/[_0x161a12(0x27e)](_0x9de177))_0x27aab7='video';else{if(/audio/[_0x161a12(0x27e)](_0x9de177))_0x27aab7=_0x161a12(0x1ff);else _0x27aab7=_0x161a12(0x23a);}}}return await _0x22f519['sendMessage'](_0x3cc500,{[_0x27aab7]:{'url':_0x28e767},'caption':_0x455704,'mimetype':_0x129577,'fileName':_0x448dee,..._0x13c893},{'quoted':_0x15c3c2,..._0x13c893}),fs[_0x161a12(0x2fb)][_0x161a12(0x332)](_0x28e767);},_0x22f519['sendVideoAsSticker']=async(_0xf865df,_0x46de9c,_0x110a8a={})=>{const _0x37d173=_0x499e06;let _0x3dcb00;_0x110a8a&&(_0x110a8a[_0x37d173(0x29d)]||_0x110a8a[_0x37d173(0x29f)])?_0x3dcb00=await writeExifVid(_0x46de9c,_0x110a8a):_0x3dcb00=await videoToWebp(_0x46de9c),await _0x22f519[_0x37d173(0x1fc)](_0xf865df,{'sticker':{'url':_0x3dcb00},..._0x110a8a},_0x110a8a);},_0x22f519[_0x499e06(0x30a)]=async(_0x16c1e0,_0x348bff,_0x255e04={})=>{const _0x55ea11=_0x499e06;let _0x1866ce;_0x255e04&&(_0x255e04[_0x55ea11(0x29d)]||_0x255e04['author'])?_0x1866ce=await writeExifImg(_0x348bff,_0x255e04):_0x1866ce=await imageToWebp(_0x348bff),await _0x22f519['sendMessage'](_0x16c1e0,{'sticker':{'url':_0x1866ce},..._0x255e04},_0x255e04);},_0x22f519['sendTextWithMentions']=async(_0x544266,_0x148273,_0x572e6f,_0x466900={})=>_0x22f519[_0x499e06(0x1fc)](_0x544266,{'text':_0x148273,'contextInfo':{'mentionedJid':[..._0x148273[_0x499e06(0x18d)](/@(\d{0,16})/g)][_0x499e06(0x311)](_0x44e7c6=>_0x44e7c6[0x1]+_0x499e06(0x195))},..._0x466900},{'quoted':_0x572e6f}),_0x22f519[_0x499e06(0x1f6)]=async(_0x29e37b,_0x3af7b6,_0x3a3cef='',_0x52a2cb='',_0x336e2e)=>{const _0xa2b522=_0x499e06;let _0x2e4240=Buffer[_0xa2b522(0x322)](_0x3af7b6)?_0x3af7b6:/^data:.*?\/.*?;base64,/i[_0xa2b522(0x27e)](_0x3af7b6)?Buffer[_0xa2b522(0x1db)](_0x3af7b6[_0xa2b522(0x1b4)]`,`[0x1],'base64'):/^https?:\/\//[_0xa2b522(0x27e)](_0x3af7b6)?await await getBuffer(_0x3af7b6):fs[_0xa2b522(0x2be)](_0x3af7b6)?fs[_0xa2b522(0x1be)](_0x3af7b6):Buffer[_0xa2b522(0x1da)](0x0);return await _0x22f519[_0xa2b522(0x1fc)](_0x29e37b,{'image':_0x2e4240,'caption':_0x3a3cef,..._0x336e2e},{'quoted':_0x52a2cb});},_0x22f519['sendText']=(_0x8ebea0,_0x32de90,_0xf40653='',_0x1445f3)=>_0x22f519[_0x499e06(0x1fc)](_0x8ebea0,{'text':_0x32de90,..._0x1445f3},{'quoted':_0xf40653}),_0x22f519[_0x499e06(0x301)]=(_0x5b1848,_0x1e34e7=[],_0x4c3cf7,_0x50bb2b,_0xf30f54='',_0x23e5a0={})=>{const _0x223290=_0x499e06;let _0x2ede93={'text':_0x4c3cf7,'footer':_0x50bb2b,'buttons':_0x1e34e7,'headerType':0x2,..._0x23e5a0};_0x22f519[_0x223290(0x1fc)](_0x5b1848,_0x2ede93,{'quoted':_0xf30f54,..._0x23e5a0});},_0x22f519[_0x499e06(0x2bd)]=async(_0x6573d5,_0x5a02be='',_0x523ef5='',_0x3da83f,_0x491e53=[],_0x33c4c8,_0x1a2031={})=>{const _0x4da4a4=_0x499e06;let _0x1d7b28=await prepareWAMessageMedia({'image':_0x3da83f,'jpegThumbnail':_0x33c4c8},{'upload':_0x22f519['waUploadToServer']});var _0x20aae8=generateWAMessageFromContent(_0x6573d5,proto['Message'][_0x4da4a4(0x2ea)]({'templateMessage':{'hydratedTemplate':{'imageMessage':_0x1d7b28[_0x4da4a4(0x208)],'hydratedContentText':_0x5a02be,'hydratedFooterText':_0x523ef5,'hydratedButtons':_0x491e53}}}),_0x1a2031);_0x22f519[_0x4da4a4(0x1fb)](_0x6573d5,_0x20aae8['message'],{'messageId':_0x20aae8[_0x4da4a4(0x226)]['id']});};_0x37499d&&config[_0x499e06(0x25d)]===_0x499e06(0x1b6)&&await _0x22f519['readMessages']([_0x53bb05[_0x499e06(0x226)]]);if(_0x284337[_0x499e06(0x2a0)](_0x499e06(0x2f1))){if(_0x3fa766)return;_0x320a0c['react'](_0x499e06(0x1e2));}if(!_0x3fa766&&_0x284337!==_0x53b970){if(config['AUTO_REACT']===_0x499e06(0x1b6)){const _0x58e878=['😊','👍','😂','💯','🔥','🙏','🎉','👏','😎','🤖','👫','👭','👬','👮',_0x499e06(0x243),'💼','📊','📈','📉','📊','📝','📚','📰','📱','💻','📻','📺','🎬',_0x499e06(0x1e6),'📸','📷',_0x499e06(0x1bf),'💡','🔦','🔧','🔨','🔩','🔪','🔫','👑','👸','🤴','👹','🤺','🤻','👺','🤼','🤽','🤾','🤿','🦁','🐴','🦊','🐺','🐼','🐾','🐿','🦄','🦅','🦆','🦇','🦈','🐳','🐋','🐟','🐠','🐡','🐙','🐚','🐜','🐝','🐞',_0x499e06(0x21f),'🦋','🐛','🐌','🐚','🌿','🌸','💐','🌹','🌺','🌻','🌴','🏵','🏰','🏠','🏡','🏢','🏣','🏥','🏦','🏧','🏨','🏩','🏪','🏫','🏬','🏭','🏮','🏯','🚣','🛥','🚂','🚁','🚀','🛸','🛹','🚴','🚲','🛺','🚮','🚯','🚱','🚫','🚽',_0x499e06(0x307),'💣','🔫','🕷️','🕸️','💀','👻','🕺','💃',_0x499e06(0x243),'👶','👵','👴','👱','👨','👩','👧','👦','👪','👫','👭','👬','👮',_0x499e06(0x243),'💼','📊','📈','📉','📊','📝','📚','📰','📱','💻','📻','📺','🎬','📽️','📸','📷',_0x499e06(0x1bf),'💡','🔦','🔧','🔨','🔩','🔪','🔫','👑','👸','🤴','👹','🤺','🤻','👺','🤼','🤽','🤾','🤿','🦁','🐴','🦊','🐺','🐼','🐾','🐿','🦄','🦅','🦆','🦇','🦈','🐳','🐋','🐟','🐠','🐡','🐙','🐚','🐜','🐝','🐞',_0x499e06(0x21f),'🦋','🐛','🐌','🐚','🌿','🌸','💐','🌹','🌺','🌻','🌴','🏵','🏰','🏠','🏡','🏢','🏠','🏡','🏢','🏣','🏥','🏦','🏧','🏨','🏩','🏪','🏫','🏬','🏭','🏮','🏯','🚣','🛥','🚂','🚁','🚀','🛸','🛹','🚴','🚲','🛺','🚮','🚯','🚱','🚫','🚽','🕳️','💣','🔫','🕷️',_0x499e06(0x2c4),'💀','👻','🕺','💃',_0x499e06(0x243),'👶','👵','👴','👱','👨','👩','👧','👦','👪','👫','👭','👬','👮',_0x499e06(0x243),'💼','📊','📈','📉','📊','📝','📚','📰','📱','💻','📻','📺','🎬','📽️','📸','📷','🕯️','💡','🔦','🔧','🔨','🔩','🔪','🔫','👑','👸','🤴','👹','🤺','🤻','👺','🤼','🤽','🤾','🤿','🦁','🐴','🦊','🐺','🐼','🐾','🐿','🦄','🦅','🦆','🦇','🦈','🐳','🐋','🐟','🐠','🐡','🐙','🐚','🐜','🐝','🐞',_0x499e06(0x21f),'🦋','🐛','🐌','🐚','🌿','🌸','💐','🌹','🌺','🌻','🌴','🏵','🏰','🏠','🏡','🏢','🏣','🏥','🏦','🏧','🏨','🏩','🏪','🏫','🏬','🏭','🏮','🏯','🚣','🛥','🚂','🚁','🚀','🛸','🛹','🚴','🚲','🛺','🚮','🚯','🚱','🚫','🚽',_0x499e06(0x307),'💣','🔫',_0x499e06(0x21f),_0x499e06(0x2c4),'💀','👻','🕺','💃',_0x499e06(0x243),'👶','👵','👴','👱','👨','👩','👧','👦','👪','🙂','😑','🤣','😍','😘','😗','😙','😚','😛','😝','😞','😟','😠','😡','😢','😭','😓','😳','😴','😌','😆','😂','🤔','😒','😓','😶','🙄','🐶','🐱','🐔','🐷','🐴','🐲','🐸','🐳','🐋','🐒','🐑','🐕','🐩','🍔','🍕','🥤','🍣','🍲','🍴','🍽','🍹','🍸','🎂','📱','📺','📻','🎤','📚','💻','📸','📷','❤️','💔','❣️','☀️','🌙','🌃','🏠','🚪',_0x499e06(0x1b9),_0x499e06(0x207),_0x499e06(0x303),'🇦🇺','🇯🇵','🇫🇷',_0x499e06(0x2dd),'👍','👎','👏','👫','👭','👬','👮','🤝','🙏','👑','🌻','🌺','🌸','🌹','🌴','🏞️','🌊','🚗','🚌',_0x499e06(0x2b7),_0x499e06(0x257),_0x499e06(0x22e),'🚣','🛥','🚂','🚁','🚀',_0x499e06(0x2e1),_0x499e06(0x32f),_0x499e06(0x1dd),'🏄‍♂️','🎾','🏀','🏈','🎯','🏆','??','⬆️','⬇️','⇒','⇐','↩️','↪️','ℹ️','‼️','⁉️','‽️','©️','®️','™️','🔴','🔵','🟢','🔹','🔺','💯','👑','🤣',_0x499e06(0x238),'🤷‍♀️',_0x499e06(0x1a3),_0x499e06(0x28f),_0x499e06(0x1ad),_0x499e06(0x2e5),_0x499e06(0x1c2),_0x499e06(0x24e),'🏻',_0x499e06(0x250),_0x499e06(0x296),_0x499e06(0x204),'🕴‍♀️','💇‍♂️',_0x499e06(0x227),'🚫','🚽',_0x499e06(0x307),'💣','🔫','🕷️','🕸️','💀','👻','🕺','💃',_0x499e06(0x243),'👶','👵','👴','👱','👨','👩','👧','👦','👪','👫','👭','👬','👮',_0x499e06(0x243),'💼','📊','📈','📉','📊','📝','📚','📰','📱','💻','📻','📺','🎬','📽️','📸','📷',_0x499e06(0x1bf),'💡','🔦','�','🏯','🏰','🏠','🏡','🏢','🏣','🏥','🏦','🏧','🏨','🏩','🏪','🏫','🏬','🏭','🏮','🏯','🚣','🛥','🚂','🚁','🚀','🛸','🛹','🚴','🚲','🛺','🚮','🚯','🚱','🚫','🚽',_0x499e06(0x307),'💣','🔫','🕷️',_0x499e06(0x2c4),'💀','👻','🕺','💃',_0x499e06(0x243),'👶','👵','👴','👱','👨','👩','👧','👦','👪','👫','👭','👬','👮','🕴️','💼','📊','📈','📉','📊','📝','📚','📰','📱','💻','📻','📺','🎬',_0x499e06(0x1e6),'📸','📷',_0x499e06(0x1bf),'💡','🔦','🔧','🔨','🔩','🔪','🔫','👑','👑','👸','🤴','👹','🤺','🤻','👺','🤼','🤽','🤾','🤿','🦁','🐴','🦊','🐺','🐼','🐾','🐿','🦄','🦅','🦆','🦇','🦈','🐳','🐋','🐟','🐠','🐡','🐙','🐚','🐜','🐝','🐞',_0x499e06(0x21f),'🦋','🐛','🐌','🐚','🌿','🌸','💐','🌹','🌺','🌻','🌴','🌳','🌲','🌾','🌿','🍃','🍂','🍃','🌻','💐','🌹','🌺','🌸','🌴','🏵','🎀','🏆','🏈','🏉','🎯','🏀','🏊','🏋','🏌','🎲','📚','📖','📜','📝','💭','💬','🗣','💫','🌟','🌠','🎉','🎊','👏','💥','🔥','💥','🌪','💨','🌫','🌬','🌩','🌨','🌧','🌦','🌥','🌡','🌪','🌫','🌬','🌩','🌨','🌧','🌦','🌥','🌡','🌪','🌫','🌬','🌩','🌨','🌧','🌦','🌥','🌡','🌱','🌿','🍃','🍂','🌻','💐','🌹','🌺','🌸','🌴','🏵','🎀','🏆','🏈','🏉','🎯','🏀','🏊','🏋','🏌','🎲','📚','📖','📜','📝','💭','💬','🗣','💫','🌟','🌠','🎉','🎊','👏','💥','🔥','💥','🌪','💨','🌫','🌬','🌩','🌨','🌧','🌦','🌥','🌡','🌪','🌫','🌬','🌩','🌨','🌧','🌦','🌥','🌡','🕯️','💡','🔦','🔧','🔨','🔩','🔪','🔫','👑','👸','🤴','👹','🤺','🤻','👺','🤼','🤽','🤾','🤿','🦁','🐴','🦊','🐺','🐼','🐾','🐿','🦄','🦅','🦆','🦇','🦈','🐳','🐋','🐟','🐠','🐡','🐙','🐚','🐜','🐝','🐞','🕷️','🦋','🐛','🐌','🐚','🌿','🌸','💐','🌹','🌺','🌻','🌴','🏵','🏰','🏠','🏡','🏢','🏣','🏥','🏦','🏧','🏨','🏩','🏪','🏫','🏬','🏭','🏮','🏯','🚣','🛥','🚂','🚁','🚀','🛸','🛹','🚴','🚲','🛺','🚮','🚯','🚱','🚫','🚽',_0x499e06(0x307),'💣','🔫',_0x499e06(0x21f),_0x499e06(0x2c4),'💀','👻','🕺','💃',_0x499e06(0x243),'👶','👵','👴','👱','👨','👩','👧','👦','👪','👫','👭','👬','👮',_0x499e06(0x243),'💼','📊','📈','📉','📊','📝','📚','📰','📱','💻','📻','📺','🎬','📽️','📸','📷',_0x499e06(0x1bf),'💡','🔦','🔧','🔨','🔩','🔪','🔫','👑','👸','🤴','👹','🤺','🤻','👺','🤼','🤽','🤾','🤿','🦁','🐴','🦊','🐺','🐼','🐾','🐿','🦄','🦅','🦆','🦇','🦈','🐳','🐋','🐟','🐠','🐡','🐙','🐚','🐜','🐝','🐞',_0x499e06(0x21f),'🦋','🐛','🐌','🐚','🌿','🌸','💐','🌹','🌺','🌻','🌴','🏵','🏰','🐒','🦍','🦧','🐶','🐕','🦮','🐕‍🦺','🐩','🐺','🦊','🦝','🐱','🐈',_0x499e06(0x279),'🦁','🐯','🐅','🐆','🐴','🐎','🦄','🦓','🦌','🦬','🐮','🐂','🐃','🐄','🐷','🐖','🐗','🐽','🐏','🐑','🐐','🐪','🐫','🦙','🦒','🐘','🦣','🦏','🦛','🐭','🐁','🐀','🐹','🐰','🐇','🐿️','🦫','🦔','🦇','🐻',_0x499e06(0x214),'🐨','🐼','🦥','🦦','🦨','🦘','🦡','🐾','🦃','🐔','🐓','🐣','🐤','🐥','🐦','🐧',_0x499e06(0x1e1),'🦅','🦆','🦢','🦉','🦤','🪶','🦩','🦚','🦜','🐸','🐊','🐢','🦎','🐍','🐲','🐉','🦕','🦖','🐳','🐋','🐬','🦭','🐟','🐠','😀','😃','😄','😁','😆','😅','🤣','😂','🙂','🙃','😉','😊','😇','🥰','😍','🤩','😘','😗','☺️','😚','😙','🥲','😋','😛','😜','🤪','😝','🤑','🤗','🤭','🤫','🤔','🤐','🤨','😐','😑','😶',_0x499e06(0x278),'😏','😒','🙄','😬',_0x499e06(0x1b2),'🤥','😌','😔','😪','🤤','😴','😷','🤒','🤕','🤢','🤮','🤧','🥵','🥶','🥴','😵','😵‍💫','🤯','🤠','🥳','🥸','😎','🤓','🧐','😕','😟','🙁','☹️','😮','😯','😲','😳','🥺','😦','😧','😨','😰','😥','😢','😭','😱','😖','😣','😞','😓','😩','😫','🥱','😤','😡','😠','🤬','😈','👿','💀','☠️','💩','🤡','👹','👺','👻','👽','👾','🤖','😺','😸','😹','😻','😼','😽','🙀','😿','😾','🙈','🙉','🙊','💋','💌','💘','💝','💖','💗','💓','💞','💕','💟','❣️','💔',_0x499e06(0x2a4),'❤️‍🩹','❤️','🧡','💛','💚','💙','💜','🤎','🖤','🤍','💯','💢','💥','💫','💦','💨',_0x499e06(0x307),'💣','💬',_0x499e06(0x19f),'🗨️',_0x499e06(0x269),'💭','💤','👋','🤚',_0x499e06(0x220),'✋','🖖','👌','🤌','🤏','✌️','🤞','🤟','🤘','🤙','👈','👉','👆','🖕','👇','☝️','👍','👎','✊','👊','🤛','🤜','👏','🙌','👐','🤲','🤝','🙏','✍️','💅','🤳','💪','🦾','🦿','🦵','🦶','👂','🦻','👃','🧠','🫀','🫁','🦷','🦴','👀','👁️','👅','👄','👶','🧒','👦','👧','🧑','👱','👨','🧔',_0x499e06(0x323),_0x499e06(0x1b7),_0x499e06(0x29e),_0x499e06(0x27c),_0x499e06(0x19a),'👨‍🦲','👩','👩‍🦰',_0x499e06(0x330),_0x499e06(0x276),_0x499e06(0x1ed),_0x499e06(0x32c),_0x499e06(0x230),_0x499e06(0x2b6),'🧑‍🦲',_0x499e06(0x2d9),_0x499e06(0x25a),'🧓','👴','👵','🙍',_0x499e06(0x1cc),_0x499e06(0x1cf),'🙎',_0x499e06(0x258),_0x499e06(0x256),'🙅','🙅‍♂️',_0x499e06(0x28f),'🙆','🙆‍♂️',_0x499e06(0x2e5),'💁',_0x499e06(0x2a9),_0x499e06(0x23d),'🙋',_0x499e06(0x1e3),_0x499e06(0x28e),'🧏',_0x499e06(0x236),_0x499e06(0x297),'🙇',_0x499e06(0x326),_0x499e06(0x1f4),'🤦',_0x499e06(0x1c2),_0x499e06(0x24e),'🤷','🤷‍♂️',_0x499e06(0x2a2),_0x499e06(0x277),_0x499e06(0x287),_0x499e06(0x308),'🧑‍🎓',_0x499e06(0x32e),_0x499e06(0x1de),'🧑‍🏫','👨‍🏫',_0x499e06(0x2e8),_0x499e06(0x1a1),'👨‍⚖️','👩‍⚖️','🧑‍🌾','👨‍🌾','👩‍🌾',_0x499e06(0x2b9),_0x499e06(0x30d),_0x499e06(0x294),_0x499e06(0x202),_0x499e06(0x331),_0x499e06(0x25b),_0x499e06(0x248),'👨‍🏭','👩‍🏭',_0x499e06(0x18e),_0x499e06(0x31c),'👩‍💼',_0x499e06(0x222),_0x499e06(0x2f7),'👩‍🔬',_0x499e06(0x1e2),_0x499e06(0x199),_0x499e06(0x1ce),_0x499e06(0x247),'👨‍🎤',_0x499e06(0x1a0),_0x499e06(0x201),_0x499e06(0x22c),'👩‍🎨',_0x499e06(0x192),_0x499e06(0x2ad),_0x499e06(0x1ae),_0x499e06(0x1a7),_0x499e06(0x1c1),_0x499e06(0x1bc),_0x499e06(0x1e8),_0x499e06(0x26a),_0x499e06(0x282),'👮',_0x499e06(0x24a),_0x499e06(0x1b5),_0x499e06(0x320),'🕵️‍♂️',_0x499e06(0x288),'💂',_0x499e06(0x1c3),'💂‍♀️','🥷','👷',_0x499e06(0x2a7),_0x499e06(0x290),'🤴','👸','👳',_0x499e06(0x327),'👳‍♀️','👲','🧕','🤵','🤵‍♂️',_0x499e06(0x312),'👰',_0x499e06(0x31d),_0x499e06(0x22d),'🤰','🤱',_0x499e06(0x26d),_0x499e06(0x283),_0x499e06(0x31e),'👼','🎅','🤶',_0x499e06(0x1ef),'🦸',_0x499e06(0x2c6),_0x499e06(0x2f2),'🦹','🦹‍♂️','🦹‍♀️','🧙','🧙‍♂️','🧙‍♀️','🧚','🧚‍♂️',_0x499e06(0x1c7),'🧛',_0x499e06(0x300),_0x499e06(0x23c),'🧜',_0x499e06(0x221),_0x499e06(0x1cd),'🧝',_0x499e06(0x233),_0x499e06(0x211),'🧞',_0x499e06(0x2bc),'🧞‍♀️','🧟','🧟‍♂️',_0x499e06(0x205),'💆','💆‍♂️',_0x499e06(0x296),'💇',_0x499e06(0x2da),_0x499e06(0x227),'🚶','🚶‍♂️',_0x499e06(0x2bf),'🧍',_0x499e06(0x1e7),_0x499e06(0x2f5),'🧎',_0x499e06(0x305),'🧎‍♀️','🧑‍🦯','👨‍🦯',_0x499e06(0x1ec),_0x499e06(0x306),_0x499e06(0x21c),'👩‍🦼','🧑‍🦽',_0x499e06(0x29a),_0x499e06(0x1eb),'🏃',_0x499e06(0x2e1),'🏃‍♀️','💃','🕺',_0x499e06(0x243),'👯','👯‍♂️',_0x499e06(0x30e),'🧖',_0x499e06(0x274),_0x499e06(0x2ba),'🧗',_0x499e06(0x1b0),'🧗‍♀️','🤺','🏇','⛷️','🏂','🏌️',_0x499e06(0x2cc),'🏌️‍♀️','🏄',_0x499e06(0x2a1),_0x499e06(0x32a),'🚣','🚣‍♂️',_0x499e06(0x2d4),'🏊',_0x499e06(0x1dd),_0x499e06(0x229),'⛹️',_0x499e06(0x223),_0x499e06(0x281),_0x499e06(0x19c),_0x499e06(0x20f),_0x499e06(0x32f),'🚴',_0x499e06(0x18b),_0x499e06(0x324),'🚵',_0x499e06(0x1e5),_0x499e06(0x1d7),'🤸','🤸‍♂️',_0x499e06(0x196),'🤼',_0x499e06(0x2b1),'🤼‍♀️','🤽',_0x499e06(0x27d),_0x499e06(0x2d5),'🤾',_0x499e06(0x193),_0x499e06(0x1b8),'🤹',_0x499e06(0x292),_0x499e06(0x1e0),'🧘',_0x499e06(0x31b),_0x499e06(0x1a5),'🛀','🛌','🧑‍🤝‍🧑','👭','👫','👬','💏','👩‍❤️‍💋‍👨',_0x499e06(0x237),_0x499e06(0x1f3),'💑',_0x499e06(0x1ba),'👨‍❤️‍👨',_0x499e06(0x2ef),'👪',_0x499e06(0x2d3),_0x499e06(0x1bb),_0x499e06(0x18c),_0x499e06(0x2c9),_0x499e06(0x31f),'👨‍👨‍👦',_0x499e06(0x2f8),_0x499e06(0x285),_0x499e06(0x1ca),_0x499e06(0x2dc),_0x499e06(0x234),_0x499e06(0x1d2),_0x499e06(0x270),_0x499e06(0x1aa),_0x499e06(0x1bd),_0x499e06(0x1ab),_0x499e06(0x284),'👨‍👧',_0x499e06(0x2e9),_0x499e06(0x1d9),_0x499e06(0x291),_0x499e06(0x255),_0x499e06(0x21e),_0x499e06(0x190),_0x499e06(0x1df),_0x499e06(0x188),'👤','👥','🫂','👣','🦰','🦱','🦳','🦲','🐵'],_0x554077=_0x58e878[Math[_0x499e06(0x2d7)](Math['random']()*_0x58e878[_0x499e06(0x27a)])];_0x320a0c[_0x499e06(0x2e2)](_0x554077);}}if(!_0x3fa766&&_0x284337===_0x53b970){if(config[_0x499e06(0x28c)]==='true'){const _0x3d78ea=['😊','👍','😂','💯','🔥','🙏','🎉','👏','😎','🤖','👫','👭','👬','👮',_0x499e06(0x243),'💼','📊','📈','📉','📊','📝','📚','📰','📱','💻','📻','📺','🎬',_0x499e06(0x1e6),'📸','📷',_0x499e06(0x1bf),'💡','🔦','🔧','🔨','🔩','🔪','🔫','👑','👸','🤴','👹','🤺','🤻','👺','🤼','🤽','🤾','🤿','🦁','🐴','🦊','🐺','🐼','🐾','🐿','🦄','🦅','🦆','🦇','🦈','🐳','🐋','🐟','🐠','🐡','🐙','🐚','🐜','🐝','🐞',_0x499e06(0x21f),'🦋','🐛','🐌','🐚','🌿','🌸','💐','🌹','🌺','🌻','🌴','🏵','🏰','🏠','🏡','🏢','🏣','🏥','🏦','🏧','🏨','🏩','🏪','🏫','🏬','🏭','🏮','🏯','🚣','🛥','🚂','🚁','🚀','🛸','🛹','🚴','🚲','🛺','🚮','🚯','🚱','🚫','🚽','🕳️','💣','🔫',_0x499e06(0x21f),_0x499e06(0x2c4),'💀','👻','🕺','💃',_0x499e06(0x243),'👶','👵','👴','👱','👨','👩','👧','👦','👪','👫','👭','👬','👮','🕴️','💼','📊','📈','📉','📊','📝','📚','📰','📱','💻','📻','📺','🎬','📽️','📸','📷',_0x499e06(0x1bf),'💡','🔦','🔧','🔨','🔩','🔪','🔫','👑','👸','🤴','👹','🤺','🤻','👺','🤼','🤽','🤾','🤿','🦁','🐴','🦊','🐺','🐼','🐾','🐿','🦄','🦅','🦆','🦇','🦈','🐳','🐋','🐟','🐠','🐡','🐙','🐚','🐜','🐝','🐞',_0x499e06(0x21f),'🦋','🐛','🐌','🐚','🌿','🌸','💐','🌹','🌺','🌻','🌴','🏵','🏰','🏠','🏡','🏢','🏠','🏡','🏢','🏣','🏥','🏦','🏧','🏨','🏩','🏪','🏫','🏬','🏭','🏮','🏯','🚣','🛥','🚂','🚁','🚀','🛸','🛹','🚴','🚲','🛺','🚮','🚯','🚱','🚫','🚽',_0x499e06(0x307),'💣','🔫',_0x499e06(0x21f),_0x499e06(0x2c4),'💀','👻','🕺','💃',_0x499e06(0x243),'👶','👵','👴','👱','👨','👩','👧','👦','👪','👫','👭','👬','👮','🕴️','💼','📊','📈','📉','📊','📝','📚','📰','📱','💻','📻','📺','🎬','📽️','📸','📷','🕯️','💡','🔦','🔧','🔨','🔩','🔪','🔫','👑','👸','🤴','👹','🤺','🤻','👺','🤼','🤽','🤾','🤿','🦁','🐴','🦊','🐺','🐼','🐾','🐿','🦄','🦅','🦆','🦇','🦈','🐳','🐋','🐟','🐠','🐡','🐙','🐚','🐜','🐝','🐞',_0x499e06(0x21f),'🦋','🐛','🐌','🐚','🌿','🌸','💐','🌹','🌺','🌻','🌴','🏵','🏰','🏠','🏡','🏢','🏣','🏥','🏦','🏧','🏨','🏩','🏪','🏫','🏬','🏭','🏮','🏯','🚣','🛥','🚂','🚁','🚀','🛸','🛹','🚴','🚲','🛺','🚮','🚯','🚱','🚫','🚽',_0x499e06(0x307),'💣','🔫',_0x499e06(0x21f),_0x499e06(0x2c4),'💀','👻','🕺','💃','🕴️','👶','👵','👴','👱','👨','👩','👧','👦','👪','🙂','😑','🤣','😍','😘','😗','😙','😚','😛','😝','😞','😟','😠','😡','😢','😭','😓','😳','😴','😌','😆','😂','🤔','😒','😓','😶','🙄','🐶','🐱','🐔','🐷','🐴','🐲','🐸','🐳','🐋','🐒','🐑','🐕','🐩','🍔','🍕','🥤','🍣','🍲','🍴','🍽','🍹','🍸','🎂','📱','📺','📻','🎤','📚','💻','📸','📷','❤️','💔','❣️','☀️','🌙','🌃','🏠','🚪',_0x499e06(0x1b9),_0x499e06(0x207),'🇨🇦',_0x499e06(0x286),_0x499e06(0x194),_0x499e06(0x2cd),'🇪🇸','👍','👎','👏','👫','👭','👬','👮','🤝','🙏','👑','🌻','🌺','🌸','🌹','🌴','🏞️','🌊','🚗','🚌',_0x499e06(0x2b7),'🛫️','🛬️','🚣','🛥','🚂','🚁','🚀',_0x499e06(0x2e1),_0x499e06(0x32f),_0x499e06(0x1dd),'🏄‍♂️','🎾','🏀','🏈','🎯','🏆','??','⬆️','⬇️','⇒','⇐','↩️','↪️','ℹ️','‼️','⁉️','‽️','©️','®️','™️','🔴','🔵','🟢','🔹','🔺','💯','👑','🤣',_0x499e06(0x238),_0x499e06(0x2a2),_0x499e06(0x1a3),'🙅‍♀️','🙆‍♂️','🙆‍♀️',_0x499e06(0x1c2),_0x499e06(0x24e),'🏻',_0x499e06(0x250),_0x499e06(0x296),_0x499e06(0x204),_0x499e06(0x2fa),'💇‍♂️',_0x499e06(0x227),'🚫','🚽','🕳️','💣','🔫',_0x499e06(0x21f),_0x499e06(0x2c4),'💀','👻','🕺','💃',_0x499e06(0x243),'👶','👵','👴','👱','👨','👩','👧','👦','👪','👫','👭','👬','👮','🕴️','💼','📊','📈','📉','📊','📝','📚','📰','📱','💻','📻','📺','🎬',_0x499e06(0x1e6),'📸','📷','🕯️','💡','🔦','�','🏯','🏰','🏠','🏡','🏢','🏣','🏥','🏦','🏧','🏨','🏩','🏪','🏫','🏬','🏭','🏮','🏯','🚣','🛥','🚂','🚁','🚀','🛸','🛹','🚴','🚲','🛺','🚮','🚯','🚱','🚫','🚽',_0x499e06(0x307),'💣','🔫',_0x499e06(0x21f),_0x499e06(0x2c4),'💀','👻','🕺','💃',_0x499e06(0x243),'👶','👵','👴','👱','👨','👩','👧','👦','👪','👫','👭','👬','👮','🕴️','💼','📊','📈','📉','📊','📝','📚','📰','📱','💻','📻','📺','🎬',_0x499e06(0x1e6),'📸','📷',_0x499e06(0x1bf),'💡','🔦','🔧','🔨','🔩','🔪','🔫','👑','👑','👸','🤴','👹','🤺','🤻','👺','🤼','🤽','🤾','🤿','🦁','🐴','🦊','🐺','🐼','🐾','🐿','🦄','🦅','🦆','🦇','🦈','🐳','🐋','🐟','🐠','🐡','🐙','🐚','🐜','🐝','🐞',_0x499e06(0x21f),'🦋','🐛','🐌','🐚','🌿','🌸','💐','🌹','🌺','🌻','🌴','🌳','🌲','🌾','🌿','🍃','🍂','🍃','🌻','💐','🌹','🌺','🌸','🌴','🏵','🎀','🏆','🏈','🏉','🎯','🏀','🏊','🏋','🏌','🎲','📚','📖','📜','📝','💭','💬','🗣','💫','🌟','🌠','🎉','🎊','👏','💥','🔥','💥','🌪','💨','🌫','🌬','🌩','🌨','🌧','🌦','🌥','🌡','🌪','🌫','🌬','🌩','🌨','🌧','🌦','🌥','🌡','🌪','🌫','🌬','🌩','🌨','🌧','🌦','🌥','🌡','🌱','🌿','🍃','🍂','🌻','💐','🌹','🌺','🌸','🌴','🏵','🎀','🏆','🏈','🏉','🎯','🏀','🏊','🏋','🏌','🎲','📚','📖','📜','📝','💭','💬','🗣','💫','🌟','🌠','🎉','🎊','👏','💥','🔥','💥','🌪','💨','🌫','🌬','🌩','🌨','🌧','🌦','🌥','🌡','🌪','🌫','🌬','🌩','🌨','🌧','🌦','🌥','🌡',_0x499e06(0x1bf),'💡','🔦','🔧','🔨','🔩','🔪','🔫','👑','👸','🤴','👹','🤺','🤻','👺','🤼','🤽','🤾','🤿','🦁','🐴','🦊','🐺','🐼','🐾','🐿','🦄','🦅','🦆','🦇','🦈','🐳','🐋','🐟','🐠','🐡','🐙','🐚','🐜','🐝','🐞',_0x499e06(0x21f),'🦋','🐛','🐌','🐚','🌿','🌸','💐','🌹','🌺','🌻','🌴','🏵','🏰','🏠','🏡','🏢','🏣','🏥','🏦','🏧','🏨','🏩','🏪','🏫','🏬','🏭','🏮','🏯','🚣','🛥','🚂','🚁','🚀','🛸','🛹','🚴','🚲','🛺','🚮','🚯','🚱','🚫','🚽','🕳️','💣','🔫','🕷️',_0x499e06(0x2c4),'💀','👻','🕺','💃',_0x499e06(0x243),'👶','👵','👴','👱','👨','👩','👧','👦','👪','👫','👭','👬','👮',_0x499e06(0x243),'💼','📊','📈','📉','📊','📝','📚','📰','📱','💻','📻','📺','🎬','📽️','📸','📷','🕯️','💡','🔦','🔧','🔨','🔩','🔪','🔫','👑','👸','🤴','👹','🤺','🤻','👺','🤼','🤽','🤾','🤿','🦁','🐴','🦊','🐺','🐼','🐾','🐿','🦄','🦅','🦆','🦇','🦈','🐳','🐋','🐟','🐠','🐡','🐙','🐚','🐜','🐝','🐞',_0x499e06(0x21f),'🦋','🐛','🐌','🐚','🌿','🌸','💐','🌹','🌺','🌻','🌴','🏵','🏰','🐒','🦍','🦧','🐶','🐕','🦮',_0x499e06(0x197),'🐩','🐺','🦊','🦝','🐱','🐈',_0x499e06(0x279),'🦁','🐯','🐅','🐆','🐴','🐎','🦄','🦓','🦌','🦬','🐮','🐂','🐃','🐄','🐷','🐖','🐗','🐽','🐏','🐑','🐐','🐪','🐫','🦙','🦒','🐘','🦣','🦏','🦛','🐭','🐁','🐀','🐹','🐰','🐇',_0x499e06(0x329),'🦫','🦔','🦇','🐻','🐻‍❄️','🐨','🐼','🦥','🦦','🦨','🦘','🦡','🐾','🦃','🐔','🐓','🐣','🐤','🐥','🐦','🐧',_0x499e06(0x1e1),'🦅','🦆','🦢','🦉','🦤','🪶','🦩','🦚','🦜','🐸','🐊','🐢','🦎','🐍','🐲','🐉','🦕','🦖','🐳','🐋','🐬','🦭','🐟','🐠','😀','😃','😄','😁','😆','😅','🤣','😂','🙂','🙃','😉','😊','😇','🥰','😍','🤩','😘','😗','☺️','😚','😙','🥲','😋','😛','😜','🤪','😝','🤑','🤗','🤭','🤫','🤔','🤐','🤨','😐','😑','😶',_0x499e06(0x278),'😏','😒','🙄','😬',_0x499e06(0x1b2),'🤥','😌','😔','😪','🤤','😴','😷','🤒','🤕','🤢','🤮','🤧','🥵','🥶','🥴','😵',_0x499e06(0x1ee),'🤯','🤠','🥳','🥸','😎','🤓','🧐','😕','😟','🙁','☹️','😮','😯','😲','😳','🥺','😦','😧','😨','😰','😥','😢','😭','😱','😖','😣','😞','😓','😩','😫','🥱','😤','😡','😠','🤬','😈','👿','💀','☠️','💩','🤡','👹','👺','👻','👽','👾','🤖','😺','😸','😹','😻','😼','😽','🙀','😿','😾','🙈','🙉','🙊','💋','💌','💘','💝','💖','💗','💓','💞','💕','💟','❣️','💔',_0x499e06(0x2a4),_0x499e06(0x24b),'❤️','🧡','💛','💚','💙','💜','🤎','🖤','🤍','💯','💢','💥','💫','💦','💨','🕳️','💣','💬','👁️‍🗨️',_0x499e06(0x2c8),_0x499e06(0x269),'💭','💤','👋','🤚',_0x499e06(0x220),'✋','🖖','👌','🤌','🤏','✌️','🤞','🤟','🤘','🤙','👈','👉','👆','🖕','👇','☝️','👍','👎','✊','👊','🤛','🤜','👏','🙌','👐','🤲','🤝','🙏','✍️','💅','🤳','💪','🦾','🦿','🦵','🦶','👂','🦻','👃','🧠','🫀','🫁','🦷','🦴','👀','👁️','👅','👄','👶','🧒','👦','👧','🧑','👱','👨','🧔',_0x499e06(0x323),_0x499e06(0x1b7),_0x499e06(0x29e),_0x499e06(0x27c),_0x499e06(0x19a),_0x499e06(0x224),'👩',_0x499e06(0x23e),'🧑‍🦰',_0x499e06(0x276),_0x499e06(0x1ed),_0x499e06(0x32c),_0x499e06(0x230),_0x499e06(0x2b6),'🧑‍🦲',_0x499e06(0x2d9),_0x499e06(0x25a),'🧓','👴','👵','🙍','🙍‍♂️',_0x499e06(0x1cf),'🙎',_0x499e06(0x258),_0x499e06(0x256),'🙅',_0x499e06(0x1a3),_0x499e06(0x28f),'🙆',_0x499e06(0x1ad),_0x499e06(0x2e5),'💁',_0x499e06(0x2a9),_0x499e06(0x23d),'🙋',_0x499e06(0x1e3),_0x499e06(0x28e),'🧏',_0x499e06(0x236),'🧏‍♀️','🙇',_0x499e06(0x326),_0x499e06(0x1f4),'🤦',_0x499e06(0x1c2),_0x499e06(0x24e),'🤷',_0x499e06(0x238),_0x499e06(0x2a2),_0x499e06(0x277),_0x499e06(0x287),_0x499e06(0x308),'🧑‍🎓','👨‍🎓',_0x499e06(0x1de),_0x499e06(0x29c),_0x499e06(0x219),_0x499e06(0x2e8),_0x499e06(0x1a1),'👨‍⚖️',_0x499e06(0x2f6),_0x499e06(0x2ed),_0x499e06(0x21d),_0x499e06(0x2b4),_0x499e06(0x2b9),_0x499e06(0x30d),_0x499e06(0x294),'🧑‍🔧',_0x499e06(0x331),_0x499e06(0x25b),_0x499e06(0x248),_0x499e06(0x315),_0x499e06(0x2aa),'🧑‍💼',_0x499e06(0x31c),_0x499e06(0x1e4),'🧑‍🔬',_0x499e06(0x2f7),_0x499e06(0x314),_0x499e06(0x1e2),_0x499e06(0x199),_0x499e06(0x1ce),_0x499e06(0x247),'👨‍🎤','👩‍🎤','🧑‍🎨','👨‍🎨',_0x499e06(0x1d3),'🧑‍✈️',_0x499e06(0x2ad),_0x499e06(0x1ae),_0x499e06(0x1a7),'👨‍🚀',_0x499e06(0x1bc),_0x499e06(0x1e8),'👨‍🚒',_0x499e06(0x282),'👮',_0x499e06(0x24a),_0x499e06(0x1b5),_0x499e06(0x320),_0x499e06(0x2de),_0x499e06(0x288),'💂',_0x499e06(0x1c3),_0x499e06(0x217),'🥷','👷',_0x499e06(0x2a7),_0x499e06(0x290),'🤴','👸','👳',_0x499e06(0x327),'👳‍♀️','👲','🧕','🤵',_0x499e06(0x1f8),_0x499e06(0x312),'👰',_0x499e06(0x31d),'👰‍♀️','🤰','🤱',_0x499e06(0x26d),_0x499e06(0x283),'🧑‍🍼','👼','🎅','🤶','🧑‍🎄','🦸',_0x499e06(0x2c6),_0x499e06(0x2f2),'🦹',_0x499e06(0x20e),_0x499e06(0x1af),'🧙',_0x499e06(0x1f9),_0x499e06(0x24f),'🧚',_0x499e06(0x246),_0x499e06(0x1c7),'🧛',_0x499e06(0x300),'🧛‍♀️','🧜',_0x499e06(0x221),_0x499e06(0x1cd),'🧝',_0x499e06(0x233),_0x499e06(0x211),'🧞','🧞‍♂️',_0x499e06(0x2a5),'🧟','🧟‍♂️',_0x499e06(0x205),'💆',_0x499e06(0x250),_0x499e06(0x296),'💇',_0x499e06(0x2da),'💇‍♀️','🚶',_0x499e06(0x2ae),_0x499e06(0x2bf),'🧍',_0x499e06(0x1e7),_0x499e06(0x2f5),'🧎',_0x499e06(0x305),_0x499e06(0x309),_0x499e06(0x2f3),'👨‍🦯',_0x499e06(0x1ec),_0x499e06(0x306),_0x499e06(0x21c),_0x499e06(0x1c9),_0x499e06(0x319),_0x499e06(0x29a),_0x499e06(0x1eb),'🏃',_0x499e06(0x2e1),'🏃‍♀️','💃','🕺',_0x499e06(0x243),'👯',_0x499e06(0x1a9),_0x499e06(0x30e),'🧖','🧖‍♂️',_0x499e06(0x2ba),'🧗',_0x499e06(0x1b0),_0x499e06(0x2ca),'🤺','🏇','⛷️','🏂',_0x499e06(0x1a2),_0x499e06(0x2cc),_0x499e06(0x228),'🏄',_0x499e06(0x2a1),_0x499e06(0x32a),'🚣',_0x499e06(0x302),'🚣‍♀️','🏊',_0x499e06(0x1dd),'🏊‍♀️','⛹️',_0x499e06(0x223),'⛹️‍♀️',_0x499e06(0x19c),_0x499e06(0x20f),_0x499e06(0x32f),'🚴',_0x499e06(0x18b),_0x499e06(0x324),'🚵','🚵‍♂️',_0x499e06(0x1d7),'🤸',_0x499e06(0x187),_0x499e06(0x196),'🤼',_0x499e06(0x2b1),_0x499e06(0x2a3),'🤽',_0x499e06(0x27d),_0x499e06(0x2d5),'🤾','🤾‍♂️',_0x499e06(0x1b8),'🤹',_0x499e06(0x292),_0x499e06(0x1e0),'🧘',_0x499e06(0x31b),_0x499e06(0x1a5),'🛀','🛌',_0x499e06(0x2ab),'👭','👫','👬','💏','👩‍❤️‍💋‍👨','👨‍❤️‍💋‍👨',_0x499e06(0x1f3),'💑',_0x499e06(0x1ba),'👨‍❤️‍👨',_0x499e06(0x2ef),'👪',_0x499e06(0x2d3),_0x499e06(0x1bb),_0x499e06(0x18c),'👨‍👩‍👦‍👦',_0x499e06(0x31f),'👨‍👨‍👦',_0x499e06(0x2f8),_0x499e06(0x285),_0x499e06(0x1ca),_0x499e06(0x2dc),_0x499e06(0x234),'👩‍👩‍👧',_0x499e06(0x270),_0x499e06(0x1aa),_0x499e06(0x1bd),_0x499e06(0x1ab),'👨‍👦‍👦',_0x499e06(0x2d0),_0x499e06(0x2e9),_0x499e06(0x1d9),_0x499e06(0x291),'👩‍👦‍👦',_0x499e06(0x21e),_0x499e06(0x190),_0x499e06(0x1df),_0x499e06(0x188),'👤','👥','🫂','👣','🦰','🦱','🦳','🦲','🐵'],_0x100218=_0x3d78ea[Math['floor'](Math['random']()*_0x3d78ea[_0x499e06(0x27a)])];_0x320a0c[_0x499e06(0x2e2)](_0x100218);}}if(!_0x3fa766&&_0x284337!==_0x53b970){if(config[_0x499e06(0x2e3)]===_0x499e06(0x1b6)){const _0x40786a=(config[_0x499e06(0x30b)]||_0x499e06(0x317))[_0x499e06(0x1b4)](','),_0x3943a4=_0x40786a[Math[_0x499e06(0x2d7)](Math[_0x499e06(0x2c5)]()*_0x40786a[_0x499e06(0x27a)])];_0x320a0c[_0x499e06(0x2e2)](_0x3943a4);}}if(!_0x3fa766&&_0x284337===_0x53b970){if(config[_0x499e06(0x2e3)]===_0x499e06(0x1b6)){const _0x5e30b1=(config[_0x499e06(0x30b)]||_0x499e06(0x317))['split'](','),_0x7f1480=_0x5e30b1[Math['floor'](Math[_0x499e06(0x2c5)]()*_0x5e30b1[_0x499e06(0x27a)])];_0x320a0c['react'](_0x7f1480);}}if(!_0x34b923&&config[_0x499e06(0x1dc)]===_0x499e06(0x2d2))return;if(!_0x34b923&&_0x883d72&&config[_0x499e06(0x1dc)]===_0x499e06(0x2b2))return;if(!_0x34b923&&!_0x883d72&&config[_0x499e06(0x1dc)]===_0x499e06(0x245))return;const _0x677e22=require(_0x499e06(0x254)),_0x2354ce=_0x37499d?_0x47cf84[_0x499e06(0x24c)](0x1)[_0x499e06(0x19e)]()[_0x499e06(0x1b4)]('\x20')[0x0][_0x499e06(0x2b5)]():![];if(_0x37499d){const _0xc89120=_0x677e22['commands'][_0x499e06(0x2a8)](_0x2395d4=>_0x2395d4[_0x499e06(0x1b3)]===_0x2354ce)||_0x677e22[_0x499e06(0x263)]['find'](_0x4fa352=>_0x4fa352[_0x499e06(0x321)]&&_0x4fa352[_0x499e06(0x321)]['includes'](_0x2354ce));if(_0xc89120){if(_0xc89120[_0x499e06(0x2e2)])_0x22f519[_0x499e06(0x1fc)](_0xc04e1,{'react':{'text':_0xc89120[_0x499e06(0x2e2)],'key':_0x53bb05[_0x499e06(0x226)]}});try{_0xc89120[_0x499e06(0x240)](_0x22f519,_0x53bb05,_0x320a0c,{'from':_0xc04e1,'quoted':_0x149832,'body':_0x47cf84,'isCmd':_0x37499d,'command':_0x3c9fa1,'args':_0x76e4e0,'q':_0xf6eaaa,'isGroup':_0x883d72,'sender':_0x140b00,'senderNumber':_0x284337,'botNumber2':_0x4f6a81,'botNumber':_0x53b970,'pushname':_0x5c658e,'isMe':_0x49dffe,'isOwner':_0x34b923,'groupMetadata':_0x2df2e0,'groupName':_0x40b129,'participants':_0x474210,'groupAdmins':_0x2045ef,'isBotAdmins':_0x27602d,'isAdmins':_0x5dae0b,'reply':_0x403bb2});}catch(_0x12aeac){console['error']('[PLUGIN\x20ERROR]\x20'+_0x12aeac);}}}_0x677e22[_0x499e06(0x263)]['map'](async _0x58dc62=>{const _0x5f2d4a=_0x499e06;if(_0x47cf84&&_0x58dc62['on']==='body')_0x58dc62[_0x5f2d4a(0x240)](_0x22f519,_0x53bb05,_0x320a0c,{'from':_0xc04e1,'l':l,'quoted':_0x149832,'body':_0x47cf84,'isCmd':_0x37499d,'command':_0x58dc62,'args':_0x76e4e0,'q':_0xf6eaaa,'isGroup':_0x883d72,'sender':_0x140b00,'senderNumber':_0x284337,'botNumber2':_0x4f6a81,'botNumber':_0x53b970,'pushname':_0x5c658e,'isMe':_0x49dffe,'isOwner':_0x34b923,'groupMetadata':_0x2df2e0,'groupName':_0x40b129,'participants':_0x474210,'groupAdmins':_0x2045ef,'isBotAdmins':_0x27602d,'isAdmins':_0x5dae0b,'reply':_0x403bb2});else{if(_0x53bb05['q']&&_0x58dc62['on']===_0x5f2d4a(0x1a4))_0x58dc62[_0x5f2d4a(0x240)](_0x22f519,_0x53bb05,_0x320a0c,{'from':_0xc04e1,'l':l,'quoted':_0x149832,'body':_0x47cf84,'isCmd':_0x37499d,'command':_0x58dc62,'args':_0x76e4e0,'q':_0xf6eaaa,'isGroup':_0x883d72,'sender':_0x140b00,'senderNumber':_0x284337,'botNumber2':_0x4f6a81,'botNumber':_0x53b970,'pushname':_0x5c658e,'isMe':_0x49dffe,'isOwner':_0x34b923,'groupMetadata':_0x2df2e0,'groupName':_0x40b129,'participants':_0x474210,'groupAdmins':_0x2045ef,'isBotAdmins':_0x27602d,'isAdmins':_0x5dae0b,'reply':_0x403bb2});else{if((_0x58dc62['on']===_0x5f2d4a(0x261)||_0x58dc62['on']==='photo')&&_0x53bb05[_0x5f2d4a(0x213)]==='imageMessage')_0x58dc62[_0x5f2d4a(0x240)](_0x22f519,_0x53bb05,_0x320a0c,{'from':_0xc04e1,'l':l,'quoted':_0x149832,'body':_0x47cf84,'isCmd':_0x37499d,'command':_0x58dc62,'args':_0x76e4e0,'q':_0xf6eaaa,'isGroup':_0x883d72,'sender':_0x140b00,'senderNumber':_0x284337,'botNumber2':_0x4f6a81,'botNumber':_0x53b970,'pushname':_0x5c658e,'isMe':_0x49dffe,'isOwner':_0x34b923,'groupMetadata':_0x2df2e0,'groupName':_0x40b129,'participants':_0x474210,'groupAdmins':_0x2045ef,'isBotAdmins':_0x27602d,'isAdmins':_0x5dae0b,'reply':_0x403bb2});else _0x58dc62['on']===_0x5f2d4a(0x304)&&_0x53bb05[_0x5f2d4a(0x213)]===_0x5f2d4a(0x2fd)&&_0x58dc62[_0x5f2d4a(0x240)](_0x22f519,_0x53bb05,_0x320a0c,{'from':_0xc04e1,'l':l,'quoted':_0x149832,'body':_0x47cf84,'isCmd':_0x37499d,'command':_0x58dc62,'args':_0x76e4e0,'q':_0xf6eaaa,'isGroup':_0x883d72,'sender':_0x140b00,'senderNumber':_0x284337,'botNumber2':_0x4f6a81,'botNumber':_0x53b970,'pushname':_0x5c658e,'isMe':_0x49dffe,'isOwner':_0x34b923,'groupMetadata':_0x2df2e0,'groupName':_0x40b129,'participants':_0x474210,'groupAdmins':_0x2045ef,'isBotAdmins':_0x27602d,'isAdmins':_0x5dae0b,'reply':_0x403bb2});}}});});}app[_0x54ff3b(0x1c4)](express[_0x54ff3b(0x1d4)](path[_0x54ff3b(0x22f)](__dirname,_0x54ff3b(0x2b3)))),app[_0x54ff3b(0x1c6)]('/',(_0x2391e4,_0x22b355)=>{_0x22b355['redirect']('/subzero.html');}),app['listen'](port,()=>console[_0x54ff3b(0x2c1)](_0x54ff3b(0x19d)+port)),setTimeout(()=>{connectToWA();},0xfa0);function _0x36f5(){const _0x141907=['/sessions/creds.json','👩‍❤️‍💋‍👩','🙇‍♀️','\x20as\x20read.','sendImage','macOS','🤵‍♂️','🧙‍♂️','sendFile','relayMessage','sendMessage','59788RhdLmV','statusCode','audio','836904nHsThN','🧑‍🎨','🧑‍🔧','[❄️]\x20🛠️\x20Installing\x20Plugins.','🕴‍♂️','🧟‍♀️','participants','🇬🇧','imageMessage','8912013Riozan','server','quotedMessage','download','message','🦹‍♂️','🏋️‍♂️','parseMention','🧝‍♀️','json','type','🐻‍❄️','122664LfwzrI','readdirSync','💂‍♀️','WebMessageInfo','👨‍🏫','audioMessage','viewOnceMessage','👨‍🦼','👨‍🌾','👩‍👧','🕷️','🖐️','🧜‍♂️','🧑‍🔬','⛹️‍♂️','👨‍🦲','msg','key','💇‍♀️','🏌️‍♀️','🏊‍♀️','subject','sendFileUrl','👨‍🎨','👰‍♀️','🛬️','join','🧑‍🦳','error','144iAhrNn','🧝‍♂️','👩‍👩‍👦','readdir','🧏‍♂️','👨‍❤️‍💋‍👨','🤷‍♂️','open','document','output','🧛‍♀️','💁‍♀️','👩‍🦰','ANTI_VV','function','PREFIX','@g.us','🕴️','base64','groups','🧚‍♂️','🧑‍🎤','🧑‍🏭','Subzero\x20Session\x20downloaded\x20✅','👮‍♂️','❤️‍🩹','slice','ephemeralMessage','🤦‍♀️','🧙‍♀️','💆‍♂️','megajs','readViewOnce','participant','./command','👩‍👦‍👦','🙎‍♀️','🛫️','🙎‍♂️','asSticker','👱‍♂️','👩‍🔧','toString','READ_CMD','AUTO_STATUS_SEEN','pino','video/mp4','image','asDocument','commands','Message','SESSION_ID','catch','cMod','file-type','🗯️','👨‍🚒','*Hi\x20Owner😇,\x20Congrats\x20SubZero\x20Connected\x20Successfully!\x20🚀*\x20\x0a\x0a>\x20Light,\x20Cold,\x20Icy,\x20Fast\x20&\x20Rich\x20Loaded\x20With\x20Features,\x20SubZero\x20W.A\x20Bot.\x0a\x0a\x20*Thanks\x20for\x20using\x20SUBZERO-MD\x20❄️*\x20\x0a\x0a>\x20Join\x20WhatsApp\x20Channel\x20:-\x20🛠️\x0a\x20\x0ahttps://whatsapp.com/channel/0029VagQEmB002T7MWo3Sj1D\x0a\x0a-\x20*ყσµɾ\x20ɓσƭ\x20ρɾεƒเא\x20➜*\x20\x20','readMessages','👩‍🍼','588090WJYYuW','mkdirSync','👩‍👩‍👧‍👦','remoteJid','reactionMessage','categories','🧖‍♂️','connection.update','👩‍🦱','🧑‍⚕️','😶‍🌫️','🐈‍⬛','length','groupMetadata','👨‍🦱','🤽‍♂️','test','viewOnceMessageV2','AUTO_STATUS_REPLY','⛹️‍♀️','👩‍🚒','👨‍🍼','👨‍👦‍👦','👨‍👨‍👧‍👦','🇦🇺','👨‍⚕️','🕵️‍♀️','user','head','crypto','AUTO_REACT','\x0a\x0aDont\x20forget\x20to\x20\x20star\x20our\x20repo☺\x20\x0a\x0ahttps://github.com/mrfrank-ofc/SUBZERO-MD\x0a\x0a>\x20©\x20🎐ᴘϙᴡᴇʀᴇᴅ\x20ʙʏ\x20ᴍʀ\x20ꜰʀᴀɴᴋ\x20ᴏꜰᴄ\x20⚡','🙋‍♀️','🙅‍♀️','👷‍♀️','👩‍👦','🤹‍♂️','status','👩‍🍳','util','💆‍♀️','🧏‍♀️','./exif','ext','👨‍🦽','conversation','🧑‍🏫','packname','👨‍🦰','author','includes','🏄‍♂️','🤷‍♀️','🤼‍♀️','❤️‍🔥','🧞‍♀️','concat','👷‍♂️','find','💁‍♂️','👩‍🏭','🧑‍🤝‍🧑','./plugins/','👨‍✈️','🚶‍♂️','keys','AUTO_STATUS_MSG','🤼‍♂️','inbox','lib','👩‍🌾','toLowerCase','👩‍🦲','🛣️','/sessions/','🧑‍🍳','🧖‍♀️','string','🧞‍♂️','send5ButImg','existsSync','🚶‍♀️','body-parser','log','mimetype','[❄️]\x20SubZero\x20Connecting\x20to\x20WhatsApp\x20⏳️...','🕸️','random','🦸‍♂️','application/pdf','🗨️','👨‍👩‍👦‍👦','🧗‍♀️','silent','🏌️‍♂️','🇫🇷','ignore','copyNForward','👨‍👧','Marked\x20message\x20from\x20','private','👨‍👩‍👦','🚣‍♀️','🤽‍♀️','video','floor','https://i.ibb.co/8NBwB9P/mrfrankofc.jpg','👱‍♀️','💇‍♂️','env','👨‍👨‍👧‍👧','🇪🇸','🕵️‍♂️','extendedTextMessage','contextInfo','🏃‍♂️','react','CUSTOM_REACT','express','🙆‍♀️','pushName','path','👩‍🏫','👨‍👧‍👦','fromObject','2778gfXTIP','audio/mpeg','🧑‍🌾','./config','👩‍❤️‍👩','parse','263719647303','🦸‍♀️','🧑‍🦯','creds.update','🧍‍♀️','👩‍⚖️','👨‍🔬','👨‍👨‍👧','fromBuffer','🕴‍♀️','promises','https://mega.nz/file/','stickerMessage','.bin','./lib/msg','🧛‍♂️','sendButtonText','🚣‍♂️','🇨🇦','sticker','🧎‍♂️','🧑‍🦼','🕳️','👩‍⚕️','🧎‍♀️','sendImageAsSticker','CUSTOM_REACT_EMOJIS','close','👨‍🍳','👯‍♀️','qrcode-terminal','getFile','map','🤵‍♀️','forEach','👩‍🔬','👨‍🏭','3954202lwrjph','🥲,😂,👍🏻,🙂,😔','stringify','🧑‍🦽','status@broadcast','🧘‍♂️','👨‍💼','👰‍♂️','🧑‍🍼','👨‍👩‍👧‍👧','🕵️','alias','isBuffer','🧔‍♂️','🚴‍♀️','replace','🙇‍♂️','👳‍♂️','headers','🐿️','🏄‍♀️','./lib/functions','👩‍🦳','content-type','👨‍🎓','🏋️‍♀️','🧑‍🦰','👨‍🔧','unlink','263719647303@s.whatsapp.net','🤸‍♂️','🗣️','image/webp','wa-sticker-formatter','🚴‍♂️','👨‍👩‍👧‍👦','matchAll','🧑‍💼','PORT','👩‍👧‍👦','READ_MESSAGE','🧑‍✈️','🤾‍♂️','🇯🇵','@s.whatsapp.net','🤸‍♀️','🐕‍🦺','application/octet-stream','👨‍💻','👨‍🦳','writeFileSync','🏋️','Server\x20listening\x20on\x20port\x20http://localhost:','trim','👁️‍🗨️','👩‍🎤','🧑‍⚖️','🏌️','🙅‍♂️','text','🧘‍♀️','videoMessage','🧑‍🚀','gif','👯‍♂️','👩‍👩‍👦‍👦','👨‍👦','fromMe','🙆‍♂️','👩‍✈️','🦹‍♀️','🧗‍♂️','Hello\x20World!','😮‍💨','pattern','split','👮‍♀️','true','🧔‍♀️','🤾‍♀️','🇺🇸','👩‍❤️‍👨','👨‍👩‍👧','👩‍🚀','👩‍👩‍👧‍👧','readFileSync','🕯️','decodeJid','👨‍🚀','🤦‍♂️','💂‍♂️','use','Firefox','get','🧚‍♀️','@broadcast','👩‍🦼','👨‍👨‍👦‍👦','85cWxUgZ','🙍‍♂️','🧜‍♀️','👩‍💻','🙍‍♀️','./exif.js','fluent-ffmpeg','👩‍👩‍👧','👩‍🎨','static','writeFile','@whiskeysockets/baileys','🚵‍♀️','Please\x20add\x20your\x20session\x20to\x20SESSION_ID\x20env\x20!!','👨‍👧‍👧','alloc','from','MODE','🏊‍♂️','👩‍🎓','👩‍👧‍👧','🤹‍♀️','🕊️','🧑‍💻','🙋‍♂️','👩‍💼','🚵‍♂️','📽️','🧍‍♂️','🧑‍🚒','caption','1012BfRMuw','👩‍🦽','👩‍🦯','🧑‍🦱','😵‍💫','🧑‍🎄','37KGZwpK','downloadAndSaveMediaMessage'];_0x36f5=function(){return _0x141907;};return _0x36f5();} diff --git a/lib/Readme.md b/lib/Readme.md new file mode 100644 index 0000000000000000000000000000000000000000..f43366b2476746e0d6488ec5020b9b8facb545f2 --- /dev/null +++ b/lib/Readme.md @@ -0,0 +1 @@ +## Encrypto27 W.A BOT ❄️ diff --git a/lib/functions.js b/lib/functions.js new file mode 100644 index 0000000000000000000000000000000000000000..bfc635fceebec287d0d98742e5a6d199ddcd6dad --- /dev/null +++ b/lib/functions.js @@ -0,0 +1 @@ +var _0x326e26=_0x52c0;function _0x52c0(_0x7d24a1,_0x8be195){var _0x217244=_0x2172();return _0x52c0=function(_0x52c08d,_0x2814d0){_0x52c08d=_0x52c08d-0x179;var _0x459f1a=_0x217244[_0x52c08d];return _0x459f1a;},_0x52c0(_0x7d24a1,_0x8be195);}(function(_0x1d024a,_0x5c615c){var _0x285383=_0x52c0,_0x50c581=_0x1d024a();while(!![]){try{var _0x51c672=-parseInt(_0x285383(0x17c))/0x1+-parseInt(_0x285383(0x182))/0x2*(parseInt(_0x285383(0x193))/0x3)+-parseInt(_0x285383(0x189))/0x4*(-parseInt(_0x285383(0x196))/0x5)+parseInt(_0x285383(0x191))/0x6*(-parseInt(_0x285383(0x17d))/0x7)+-parseInt(_0x285383(0x195))/0x8+-parseInt(_0x285383(0x181))/0x9+parseInt(_0x285383(0x190))/0xa;if(_0x51c672===_0x5c615c)break;else _0x50c581['push'](_0x50c581['shift']());}catch(_0x40292b){_0x50c581['push'](_0x50c581['shift']());}}}(_0x2172,0x35f13));const axios=require('axios'),getBuffer=async(_0x33e6d2,_0x46fe71)=>{var _0xc08f13=_0x52c0;try{_0x46fe71?_0x46fe71:{};var _0x300c74=await axios({'method':_0xc08f13(0x18c),'url':_0x33e6d2,'headers':{'DNT':0x1,'Upgrade-Insecure-Request':0x1},..._0x46fe71,'responseType':_0xc08f13(0x17f)});return _0x300c74[_0xc08f13(0x188)];}catch(_0x17a528){console['log'](_0x17a528);}},getGroupAdmins=_0x20060a=>{var _0x3df1c4=_0x52c0,_0x51cbf8=[];for(let _0x5a5309 of _0x20060a){_0x5a5309['admin']!==null?_0x51cbf8[_0x3df1c4(0x194)](_0x5a5309['id']):'';}return _0x51cbf8;},getRandom=_0x37cd2c=>{var _0x37fc75=_0x52c0;return''+Math[_0x37fc75(0x179)](Math[_0x37fc75(0x186)]()*0x2710)+_0x37cd2c;},h2k=_0x539fb5=>{var _0x18ff78=_0x52c0,_0x31647b=['','K','M','B','T','P','E'],_0x15c6a0=Math['log10'](Math[_0x18ff78(0x18a)](_0x539fb5))/0x3|0x0;if(_0x15c6a0==0x0)return _0x539fb5;var _0x68c738=_0x31647b[_0x15c6a0],_0xaeb9b8=Math[_0x18ff78(0x18e)](0xa,_0x15c6a0*0x3),_0x442cc1=_0x539fb5/_0xaeb9b8,_0x1d4649=_0x442cc1['toFixed'](0x1);if(/\.0$/[_0x18ff78(0x17e)](_0x1d4649))_0x1d4649=_0x1d4649[_0x18ff78(0x187)](0x0,_0x1d4649[_0x18ff78(0x18d)]-0x2);return _0x1d4649+_0x68c738;},isUrl=_0x3bdebf=>{var _0x15ec73=_0x52c0;return _0x3bdebf[_0x15ec73(0x18f)](new RegExp(/https?:\/\/(www\.)?[-a-zA-Z0-9@:%.+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%+.~#?&/=]*)/,'gi'));},Json=_0x42b5a6=>{var _0x40ec44=_0x52c0;return JSON[_0x40ec44(0x197)](_0x42b5a6,null,0x2);},runtime=_0x226b46=>{var _0x5e623c=_0x52c0;_0x226b46=Number(_0x226b46);var _0x3acd58=Math[_0x5e623c(0x179)](_0x226b46/(0xe10*0x18)),_0x11147a=Math[_0x5e623c(0x179)](_0x226b46%(0xe10*0x18)/0xe10),_0x37267d=Math[_0x5e623c(0x179)](_0x226b46%0xe10/0x3c),_0x184eb1=Math[_0x5e623c(0x179)](_0x226b46%0x3c),_0x19babd=_0x3acd58>0x0?_0x3acd58+(_0x3acd58==0x1?'\x20day,\x20':_0x5e623c(0x17a)):'',_0x46d4b5=_0x11147a>0x0?_0x11147a+(_0x11147a==0x1?_0x5e623c(0x18b):'\x20hours,\x20'):'',_0x588563=_0x37267d>0x0?_0x37267d+(_0x37267d==0x1?_0x5e623c(0x183):'\x20minutes,\x20'):'',_0x15c885=_0x184eb1>0x0?_0x184eb1+(_0x184eb1==0x1?_0x5e623c(0x192):_0x5e623c(0x17b)):'';return _0x19babd+_0x46d4b5+_0x588563+_0x15c885;},sleep=async _0x5c6709=>{return new Promise(_0x27c9ea=>setTimeout(_0x27c9ea,_0x5c6709));},fetchJson=async(_0xa926b,_0x320719)=>{var _0x5beedb=_0x52c0;try{_0x320719?_0x320719:{};const _0x3596c3=await axios({'method':_0x5beedb(0x184),'url':_0xa926b,'headers':{'User-Agent':_0x5beedb(0x185)},..._0x320719});return _0x3596c3[_0x5beedb(0x188)];}catch(_0x206360){return _0x206360;}};function _0x2172(){var _0x331799=['exports','66717jDinWp','350hhJjgh','\x20minute,\x20','GET','Mozilla/5.0\x20(Windows\x20NT\x2010.0;\x20Win64;\x20x64)\x20AppleWebKit/537.36\x20(KHTML,\x20like\x20Gecko)\x20Chrome/95.0.4638.69\x20Safari/537.36','random','substr','data','12ArkHUr','abs','\x20hour,\x20','get','length','pow','match','11344510FrhLNy','1680276xObYRC','\x20second','1275UxKEGT','push','2242712JEsNpa','165565XuYETB','stringify','floor','\x20days,\x20','\x20seconds','370670ywBaWi','7Rcfcjr','test','arraybuffer'];_0x2172=function(){return _0x331799;};return _0x2172();}module[_0x326e26(0x180)]={'getBuffer':getBuffer,'getGroupAdmins':getGroupAdmins,'getRandom':getRandom,'h2k':h2k,'isUrl':isUrl,'Json':Json,'runtime':runtime,'sleep':sleep,'fetchJson':fetchJson}; diff --git a/lib/msg.js b/lib/msg.js new file mode 100644 index 0000000000000000000000000000000000000000..510da96052a403423720cbefad97c1e4b99f0172 --- /dev/null +++ b/lib/msg.js @@ -0,0 +1 @@ +const _0x5a9488=_0x4fbe;(function(_0x43daa1,_0x2001d9){const _0x51e905=_0x4fbe,_0x16995b=_0x43daa1();while(!![]){try{const _0x48b328=-parseInt(_0x51e905(0x116))/0x1*(parseInt(_0x51e905(0xdf))/0x2)+-parseInt(_0x51e905(0xe3))/0x3*(parseInt(_0x51e905(0xd8))/0x4)+-parseInt(_0x51e905(0x11f))/0x5*(parseInt(_0x51e905(0x11d))/0x6)+-parseInt(_0x51e905(0x12e))/0x7*(parseInt(_0x51e905(0x129))/0x8)+parseInt(_0x51e905(0xf2))/0x9+parseInt(_0x51e905(0xdd))/0xa+-parseInt(_0x51e905(0xda))/0xb*(-parseInt(_0x51e905(0x11e))/0xc);if(_0x48b328===_0x2001d9)break;else _0x16995b['push'](_0x16995b['shift']());}catch(_0x62933f){_0x16995b['push'](_0x16995b['shift']());}}}(_0x1538,0x3e381));function _0x4fbe(_0x2380e1,_0x2bfd68){const _0x1538f2=_0x1538();return _0x4fbe=function(_0x4fbe26,_0x29e92f){_0x4fbe26=_0x4fbe26-0xd7;let _0x49324b=_0x1538f2[_0x4fbe26];return _0x49324b;},_0x4fbe(_0x2380e1,_0x2bfd68);}const {proto,downloadContentFromMessage,getContentType}=require(_0x5a9488(0xdb)),fs=require('fs'),downloadMediaMessage=async(_0x3aa729,_0x147330)=>{const _0x48922b=_0x5a9488;_0x3aa729['type']===_0x48922b(0xf0)&&(_0x3aa729[_0x48922b(0x121)]=_0x3aa729[_0x48922b(0xfd)][_0x48922b(0x121)]);if(_0x3aa729[_0x48922b(0x121)]===_0x48922b(0x11c)){var _0x51d6eb=_0x147330?_0x147330+_0x48922b(0x115):_0x48922b(0x127);const _0x5756de=await downloadContentFromMessage(_0x3aa729[_0x48922b(0xfd)],'image');let _0x5178bf=Buffer[_0x48922b(0xfc)]([]);for await(const _0x508474 of _0x5756de){_0x5178bf=Buffer[_0x48922b(0xf1)]([_0x5178bf,_0x508474]);}return fs[_0x48922b(0x12b)](_0x51d6eb,_0x5178bf),fs['readFileSync'](_0x51d6eb);}else{if(_0x3aa729[_0x48922b(0x121)]===_0x48922b(0x100)){var _0x5c7fd7=_0x147330?_0x147330+_0x48922b(0xd7):_0x48922b(0x111);const _0x32daf3=await downloadContentFromMessage(_0x3aa729[_0x48922b(0xfd)],_0x48922b(0xec));let _0x144be4=Buffer[_0x48922b(0xfc)]([]);for await(const _0x585b12 of _0x32daf3){_0x144be4=Buffer[_0x48922b(0xf1)]([_0x144be4,_0x585b12]);}return fs[_0x48922b(0x12b)](_0x5c7fd7,_0x144be4),fs[_0x48922b(0xf7)](_0x5c7fd7);}else{if(_0x3aa729['type']==='audioMessage'){var _0x599aea=_0x147330?_0x147330+_0x48922b(0xee):_0x48922b(0xd9);const _0x49a4cc=await downloadContentFromMessage(_0x3aa729[_0x48922b(0xfd)],_0x48922b(0x10c));let _0x423e53=Buffer['from']([]);for await(const _0x41c883 of _0x49a4cc){_0x423e53=Buffer['concat']([_0x423e53,_0x41c883]);}return fs['writeFileSync'](_0x599aea,_0x423e53),fs[_0x48922b(0xf7)](_0x599aea);}else{if(_0x3aa729['type']==='stickerMessage'){var _0x564c74=_0x147330?_0x147330+'.webp':_0x48922b(0xf6);const _0x2c4b92=await downloadContentFromMessage(_0x3aa729[_0x48922b(0xfd)],'sticker');let _0xe0a074=Buffer[_0x48922b(0xfc)]([]);for await(const _0x3b7f9c of _0x2c4b92){_0xe0a074=Buffer['concat']([_0xe0a074,_0x3b7f9c]);}return fs[_0x48922b(0x12b)](_0x564c74,_0xe0a074),fs[_0x48922b(0xf7)](_0x564c74);}else{if(_0x3aa729[_0x48922b(0x121)]===_0x48922b(0x114)){var _0x53c74b=_0x3aa729['msg'][_0x48922b(0xe4)][_0x48922b(0xf9)]('.')[0x1][_0x48922b(0x12c)]()[_0x48922b(0xff)](_0x48922b(0x126),_0x48922b(0xdc))[_0x48922b(0xff)]('png','jpg')[_0x48922b(0xff)](_0x48922b(0xe6),'mp3'),_0x1c5869=_0x147330?_0x147330+'.'+_0x53c74b:'undefined.'+_0x53c74b;const _0x22bb3c=await downloadContentFromMessage(_0x3aa729[_0x48922b(0xfd)],_0x48922b(0x124));let _0x24df9d=Buffer[_0x48922b(0xfc)]([]);for await(const _0x1839b4 of _0x22bb3c){_0x24df9d=Buffer[_0x48922b(0xf1)]([_0x24df9d,_0x1839b4]);}return fs[_0x48922b(0x12b)](_0x1c5869,_0x24df9d),fs[_0x48922b(0xf7)](_0x1c5869);}}}}}},sms=(_0x13d477,_0x1453f4)=>{const _0x5baaf2=_0x5a9488;_0x1453f4[_0x5baaf2(0x122)]&&(_0x1453f4['id']=_0x1453f4[_0x5baaf2(0x122)]['id'],_0x1453f4[_0x5baaf2(0x128)]=_0x1453f4[_0x5baaf2(0x122)]['remoteJid'],_0x1453f4[_0x5baaf2(0xe8)]=_0x1453f4[_0x5baaf2(0x122)][_0x5baaf2(0xe8)],_0x1453f4[_0x5baaf2(0xed)]=_0x1453f4[_0x5baaf2(0x128)][_0x5baaf2(0x120)](_0x5baaf2(0x12a)),_0x1453f4[_0x5baaf2(0x118)]=_0x1453f4[_0x5baaf2(0xe8)]?_0x13d477[_0x5baaf2(0x10d)]['id']['split'](':')[0x0]+'@s.whatsapp.net':_0x1453f4[_0x5baaf2(0xed)]?_0x1453f4[_0x5baaf2(0x122)]['participant']:_0x1453f4[_0x5baaf2(0x122)][_0x5baaf2(0x108)]);if(_0x1453f4['message']){_0x1453f4['type']=getContentType(_0x1453f4[_0x5baaf2(0xde)]),_0x1453f4[_0x5baaf2(0xfd)]=_0x1453f4['type']===_0x5baaf2(0xf0)?_0x1453f4['message'][_0x1453f4[_0x5baaf2(0x121)]]['message'][getContentType(_0x1453f4[_0x5baaf2(0xde)][_0x1453f4[_0x5baaf2(0x121)]]['message'])]:_0x1453f4[_0x5baaf2(0xde)][_0x1453f4[_0x5baaf2(0x121)]];if(_0x1453f4[_0x5baaf2(0xfd)]){_0x1453f4['type']==='viewOnceMessage'&&(_0x1453f4[_0x5baaf2(0xfd)]['type']=getContentType(_0x1453f4[_0x5baaf2(0xde)][_0x1453f4[_0x5baaf2(0x121)]]['message']));var _0x7bb424=_0x1453f4['msg'][_0x5baaf2(0x105)]!=null?_0x1453f4[_0x5baaf2(0xfd)][_0x5baaf2(0x105)][_0x5baaf2(0x119)]:'',_0x135ac9=_0x1453f4[_0x5baaf2(0xfd)][_0x5baaf2(0x105)]!=null?_0x1453f4[_0x5baaf2(0xfd)][_0x5baaf2(0x105)][_0x5baaf2(0x10a)]:[],_0x21f33a=typeof _0x135ac9==_0x5baaf2(0xf5)?[_0x135ac9]:_0x135ac9;_0x21f33a!=undefined?_0x21f33a['push'](_0x7bb424):[],_0x1453f4[_0x5baaf2(0x11a)]=_0x21f33a!=undefined?_0x21f33a[_0x5baaf2(0xe5)](_0x1ab38e=>_0x1ab38e):[],_0x1453f4[_0x5baaf2(0x11b)]=_0x1453f4['type']===_0x5baaf2(0x123)?_0x1453f4[_0x5baaf2(0xfd)]:_0x1453f4[_0x5baaf2(0x121)]===_0x5baaf2(0x102)?_0x1453f4[_0x5baaf2(0xfd)][_0x5baaf2(0xfb)]:_0x1453f4['type']==_0x5baaf2(0x11c)&&_0x1453f4['msg'][_0x5baaf2(0xef)]?_0x1453f4['msg'][_0x5baaf2(0xef)]:_0x1453f4[_0x5baaf2(0x121)]==_0x5baaf2(0x100)&&_0x1453f4[_0x5baaf2(0xfd)][_0x5baaf2(0xef)]?_0x1453f4['msg'][_0x5baaf2(0xef)]:_0x1453f4['type']=='templateButtonReplyMessage'&&_0x1453f4[_0x5baaf2(0xfd)][_0x5baaf2(0x10e)]?_0x1453f4[_0x5baaf2(0xfd)][_0x5baaf2(0x10e)]:_0x1453f4[_0x5baaf2(0x121)]==_0x5baaf2(0xfa)&&_0x1453f4[_0x5baaf2(0xfd)][_0x5baaf2(0x117)]?_0x1453f4[_0x5baaf2(0xfd)]['selectedButtonId']:'',_0x1453f4[_0x5baaf2(0x10b)]=_0x1453f4[_0x5baaf2(0xfd)][_0x5baaf2(0x105)]!=undefined?_0x1453f4['msg'][_0x5baaf2(0x105)]['quotedMessage']:null;if(_0x1453f4[_0x5baaf2(0x10b)]){_0x1453f4[_0x5baaf2(0x10b)][_0x5baaf2(0x121)]=getContentType(_0x1453f4[_0x5baaf2(0x10b)]),_0x1453f4[_0x5baaf2(0x10b)]['id']=_0x1453f4[_0x5baaf2(0xfd)]['contextInfo'][_0x5baaf2(0xf3)],_0x1453f4[_0x5baaf2(0x10b)][_0x5baaf2(0x118)]=_0x1453f4[_0x5baaf2(0xfd)]['contextInfo'][_0x5baaf2(0x119)],_0x1453f4['quoted'][_0x5baaf2(0xe8)]=_0x1453f4[_0x5baaf2(0x10b)][_0x5baaf2(0x118)]['split']('@')[0x0]['includes'](_0x13d477[_0x5baaf2(0x10d)]['id'][_0x5baaf2(0xf9)](':')[0x0]),_0x1453f4[_0x5baaf2(0x10b)][_0x5baaf2(0xfd)]=_0x1453f4[_0x5baaf2(0x10b)][_0x5baaf2(0x121)]===_0x5baaf2(0xf0)?_0x1453f4[_0x5baaf2(0x10b)][_0x1453f4[_0x5baaf2(0x10b)]['type']]['message'][getContentType(_0x1453f4['quoted'][_0x1453f4[_0x5baaf2(0x10b)]['type']][_0x5baaf2(0xde)])]:_0x1453f4[_0x5baaf2(0x10b)][_0x1453f4[_0x5baaf2(0x10b)][_0x5baaf2(0x121)]];_0x1453f4[_0x5baaf2(0x10b)][_0x5baaf2(0x121)]===_0x5baaf2(0xf0)&&(_0x1453f4[_0x5baaf2(0x10b)][_0x5baaf2(0xfd)][_0x5baaf2(0x121)]=getContentType(_0x1453f4[_0x5baaf2(0x10b)][_0x1453f4['quoted'][_0x5baaf2(0x121)]]['message']));var _0x1f9efc=_0x1453f4['quoted'][_0x5baaf2(0xfd)]['contextInfo']!=null?_0x1453f4[_0x5baaf2(0x10b)][_0x5baaf2(0xfd)][_0x5baaf2(0x105)][_0x5baaf2(0x119)]:'',_0x4d583b=_0x1453f4[_0x5baaf2(0x10b)][_0x5baaf2(0xfd)][_0x5baaf2(0x105)]!=null?_0x1453f4[_0x5baaf2(0x10b)][_0x5baaf2(0xfd)][_0x5baaf2(0x105)][_0x5baaf2(0x10a)]:[],_0x5e724b=typeof _0x4d583b==_0x5baaf2(0xf5)?[_0x4d583b]:_0x4d583b;_0x5e724b!=undefined?_0x5e724b['push'](_0x1f9efc):[],_0x1453f4['quoted'][_0x5baaf2(0x11a)]=_0x5e724b!=undefined?_0x5e724b[_0x5baaf2(0xe5)](_0x112a3f=>_0x112a3f):[],_0x1453f4[_0x5baaf2(0x10b)][_0x5baaf2(0x110)]=proto[_0x5baaf2(0x113)][_0x5baaf2(0x12d)]({'key':{'remoteJid':_0x1453f4[_0x5baaf2(0x128)],'fromMe':_0x1453f4[_0x5baaf2(0x10b)]['fromMe'],'id':_0x1453f4[_0x5baaf2(0x10b)]['id'],'participant':_0x1453f4[_0x5baaf2(0x10b)][_0x5baaf2(0x118)]},'message':_0x1453f4[_0x5baaf2(0x10b)]}),_0x1453f4['quoted'][_0x5baaf2(0xeb)]=_0x2b3ab8=>downloadMediaMessage(_0x1453f4[_0x5baaf2(0x10b)],_0x2b3ab8),_0x1453f4[_0x5baaf2(0x10b)][_0x5baaf2(0xe1)]=()=>_0x13d477[_0x5baaf2(0xf8)](_0x1453f4[_0x5baaf2(0x128)],{'delete':_0x1453f4['quoted'][_0x5baaf2(0x110)][_0x5baaf2(0x122)]}),_0x1453f4[_0x5baaf2(0x10b)][_0x5baaf2(0xf4)]=_0x197eee=>_0x13d477['sendMessage'](_0x1453f4[_0x5baaf2(0x128)],{'react':{'text':_0x197eee,'key':_0x1453f4['quoted'][_0x5baaf2(0x110)]['key']}});}}_0x1453f4[_0x5baaf2(0xeb)]=_0x5ca008=>downloadMediaMessage(_0x1453f4,_0x5ca008);}return _0x1453f4[_0x5baaf2(0x101)]=(_0x41cb42,_0x5bcc2f=_0x1453f4[_0x5baaf2(0x128)],_0x28068e={'mentions':[_0x1453f4['sender']]})=>_0x13d477[_0x5baaf2(0xf8)](_0x5bcc2f,{'text':_0x41cb42,'contextInfo':{'mentionedJid':_0x28068e[_0x5baaf2(0x104)]}},{'quoted':_0x1453f4}),_0x1453f4['replyS']=(_0x29ab83,_0x359a69=_0x1453f4[_0x5baaf2(0x128)],_0x3fabd3={'mentions':[_0x1453f4['sender']]})=>_0x13d477[_0x5baaf2(0xf8)](_0x359a69,{'sticker':_0x29ab83,'contextInfo':{'mentionedJid':_0x3fabd3[_0x5baaf2(0x104)]}},{'quoted':_0x1453f4}),_0x1453f4[_0x5baaf2(0xe9)]=(_0x17fe45,_0x2218f1,_0x20080a=_0x1453f4[_0x5baaf2(0x128)],_0x515d88={'mentions':[_0x1453f4[_0x5baaf2(0x118)]]})=>_0x13d477['sendMessage'](_0x20080a,{'image':_0x17fe45,'caption':_0x2218f1,'contextInfo':{'mentionedJid':_0x515d88[_0x5baaf2(0x104)]}},{'quoted':_0x1453f4}),_0x1453f4['replyVid']=(_0x1606d7,_0x1591fa,_0x3a7dc8=_0x1453f4[_0x5baaf2(0x128)],_0x9e0ecd={'mentions':[_0x1453f4['sender']],'gif':![]})=>_0x13d477['sendMessage'](_0x3a7dc8,{'video':_0x1606d7,'caption':_0x1591fa,'gifPlayback':_0x9e0ecd[_0x5baaf2(0xe7)],'contextInfo':{'mentionedJid':_0x9e0ecd[_0x5baaf2(0x104)]}},{'quoted':_0x1453f4}),_0x1453f4['replyAud']=(_0x16a4b3,_0x21e7b4=_0x1453f4[_0x5baaf2(0x128)],_0x4ca5fb={'mentions':[_0x1453f4[_0x5baaf2(0x118)]],'ptt':![]})=>_0x13d477[_0x5baaf2(0xf8)](_0x21e7b4,{'audio':_0x16a4b3,'ptt':_0x4ca5fb['ptt'],'mimetype':'audio/mpeg','contextInfo':{'mentionedJid':_0x4ca5fb['mentions']}},{'quoted':_0x1453f4}),_0x1453f4['replyDoc']=(_0x5f5568,_0x1402e9=_0x1453f4[_0x5baaf2(0x128)],_0x29eb4b={'mentions':[_0x1453f4[_0x5baaf2(0x118)]],'filename':_0x5baaf2(0xfe),'mimetype':_0x5baaf2(0x125)})=>_0x13d477[_0x5baaf2(0xf8)](_0x1402e9,{'document':_0x5f5568,'mimetype':_0x29eb4b[_0x5baaf2(0xe0)],'fileName':_0x29eb4b[_0x5baaf2(0x10f)],'contextInfo':{'mentionedJid':_0x29eb4b[_0x5baaf2(0x104)]}},{'quoted':_0x1453f4}),_0x1453f4[_0x5baaf2(0xe2)]=(_0x2e1d11,_0x1e632c,_0x15a6f7)=>{const _0x3d411e=_0x5baaf2;var _0x34d64d=_0x3d411e(0x112)+_0x3d411e(0x106)+'FN:'+_0x2e1d11+'\x0a'+_0x3d411e(0x109)+_0x1e632c+';\x0a'+_0x3d411e(0x107)+_0x15a6f7+':+'+_0x15a6f7+'\x0a'+_0x3d411e(0xea);_0x13d477[_0x3d411e(0xf8)](_0x1453f4[_0x3d411e(0x128)],{'contacts':{'displayName':_0x2e1d11,'contacts':[{'vcard':_0x34d64d}]}},{'quoted':_0x1453f4});},_0x1453f4[_0x5baaf2(0xf4)]=_0xb119e6=>_0x13d477[_0x5baaf2(0xf8)](_0x1453f4[_0x5baaf2(0x128)],{'react':{'text':_0xb119e6,'key':_0x1453f4[_0x5baaf2(0x122)]}}),_0x1453f4;};module[_0x5a9488(0x103)]={'sms':sms,'downloadMediaMessage':downloadMediaMessage};function _0x1538(){const _0x725068=['isGroup','.mp3','caption','viewOnceMessage','concat','2271609mlvrcB','stanzaId','react','string','undefined.webp','readFileSync','sendMessage','split','buttonsResponseMessage','text','from','msg','undefined.pdf','replace','videoMessage','reply','extendedTextMessage','exports','mentions','contextInfo','VERSION:3.0\x0a','TEL;type=CELL;type=VOICE;waid=','remoteJid','ORG:','mentionedJid','quoted','audio','user','selectedId','filename','fakeObj','undefined.mp4','BEGIN:VCARD\x0a','WebMessageInfo','documentMessage','.jpg','2fHSAin','selectedButtonId','sender','participant','mentionUser','body','imageMessage','6HmFlso','3444eMnRIs','1626035HSbDjS','endsWith','type','key','conversation','document','application/pdf','jpeg','undefined.jpg','chat','8LBxctO','@g.us','writeFileSync','toLowerCase','fromObject','1058701mbklvm','.mp4','268tOOkmA','undefined.mp3','28501ACvDXh','@whiskeysockets/baileys','jpg','4211400ARGXdD','message','227914ytkwLe','mimetype','delete','replyContact','20505AKceVL','fileName','filter','m4a','gif','fromMe','replyImg','END:VCARD','download','video'];_0x1538=function(){return _0x725068;};return _0x1538();} diff --git a/lib/subzero.html b/lib/subzero.html new file mode 100644 index 0000000000000000000000000000000000000000..30e71a7153015c936888e6d0ec20c9a0113476ec --- /dev/null +++ b/lib/subzero.html @@ -0,0 +1,179 @@ + + + + + + Encrypto27 BOT STATUS + + + + +
+
+
+
+
+
+
+
+
+ +
+ +
Encrypto27 Bot Online
+ + +
+ + Encrypto27 Bot is online! | Reliable, Fast, and Efficient | Always here to help! | Stay ahead with E-27 AI Bot! + +
+ + +

+ + + + + +
+ + + diff --git a/package.json b/package.json new file mode 100644 index 0000000000000000000000000000000000000000..ef72a2d9f70990473f1d75427724369c1f6fcf59 --- /dev/null +++ b/package.json @@ -0,0 +1,48 @@ +{ + "name": "SUBZERO-MD", + "version": "1.0.5", + "description": "THE BEST BOT IN THE UNIVERSE", + "main": "index.js", + "scripts": { + "start": "pm2 start index.js --deep-monitoring --attach --name SUBZERO-MD", + "stop": "pm2 stop SUBZERO-MD", + "restart": "pm2 restart SUBZERO-MD" + }, + "dependencies": { + "@whiskeysockets/baileys": "6.6.0", + "@adiwajshing/keyed-db": "^0.2.4", + "@dark-yasiya/yt-dl.js": "1.0.5", + "pino": "^7.0.5", + "pm2": "^5.2.0", + "util": "^0.12.4", + "express": "latest", + "axios": "^1.2.5", + "crypto-digest-sync": "^1.0.0", + "crypto-js": "latest", + "file_size_url": "1.0.4", + "fs-extra": "^11.1.0", + "fs": "^0.0.1-security", + "ffmpeg": "^0.0.4", + "file-type": "^16.5.3", + "fluent-ffmpeg": "^2.1.2", + "form-data": "^4.0.0", + "google-tts-api": "^2.0.2", + "path": "^0.12.7", + "node-fetch": "^2.6.1", + "btch-downloader": "^2.2.9", + "megajs": "^1.1.0", + "wa_set_pkg": "1.0.5", + "wa-sticker-formatter": "^4.4.4", + "path": "^0.12.7", + "vm": "^0.1.0", + "cheerio": "^1.0.0-rc.12", + "ruhend-scraper" : "8.0.3", + "qrcode-terminal": "^0.12.0", + "wikipedia":"2.1.2", + "yt-search":"2.11.1", + "api-dylux":"1.8.5", + "@mrnima/tiktok-downloader":"1.0.0", + "@mrnima/facebook-downloader":"1.0.0", + "mrnima-moviedl":"1.0.0" + } +} diff --git a/plugins/Readme.md b/plugins/Readme.md new file mode 100644 index 0000000000000000000000000000000000000000..3cd2ca3c315ddf8857d690792e4012dbfca35320 --- /dev/null +++ b/plugins/Readme.md @@ -0,0 +1 @@ +© SUBZERO MD W.A BOT ❄️ diff --git a/plugins/SUBZERO.js b/plugins/SUBZERO.js new file mode 100644 index 0000000000000000000000000000000000000000..a839fac65a267f4910ce1aded9367fd393e25600 --- /dev/null +++ b/plugins/SUBZERO.js @@ -0,0 +1,16 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ diff --git a/plugins/ai-flux.js b/plugins/ai-flux.js new file mode 100644 index 0000000000000000000000000000000000000000..0fe07dfb619fa0c52e517c41e3e8a00294377ce4 --- /dev/null +++ b/plugins/ai-flux.js @@ -0,0 +1,6 @@ + +// Fuck You Bro +// Mr Frank + + +function _0x407d(_0xd4dafe,_0x20c36c){const _0x3090d8=_0x3090();return _0x407d=function(_0x407d25,_0x58bf74){_0x407d25=_0x407d25-0x11f;let _0xb2a3b=_0x3090d8[_0x407d25];return _0xb2a3b;},_0x407d(_0xd4dafe,_0x20c36c);}const _0x8b6ff0=_0x407d;(function(_0x230d7c,_0x3fd2e1){const _0x353e01=_0x407d,_0x1bd52f=_0x230d7c();while(!![]){try{const _0x555a9e=-parseInt(_0x353e01(0x134))/0x1+-parseInt(_0x353e01(0x121))/0x2+parseInt(_0x353e01(0x135))/0x3+parseInt(_0x353e01(0x129))/0x4+parseInt(_0x353e01(0x12f))/0x5+-parseInt(_0x353e01(0x123))/0x6*(-parseInt(_0x353e01(0x120))/0x7)+-parseInt(_0x353e01(0x12e))/0x8;if(_0x555a9e===_0x3fd2e1)break;else _0x1bd52f['push'](_0x1bd52f['shift']());}catch(_0x1a219e){_0x1bd52f['push'](_0x1bd52f['shift']());}}}(_0x3090,0x2b63e));function _0x3090(){const _0x305c9d=['Please\x20provide\x20a\x20prompt\x20for\x20the\x20image.','Generate\x20an\x20image\x20using\x20AI.','../command','imagine','170113RfgMbR','617766paCsxv','https://api.giftedtech.web.id/api/ai/fluximg?apikey=gifted&prompt=','118615agaNls','587328ikfQyz','Generated\x20by\x20Subzero','78pfchGn','result','flux','../config','>\x20*Subzero\x20Brewing\x20Your\x20image...✨*','sendMessage','1273520JNeqGW','log','../lib/functions','An\x20error\x20occurred:\x20','Hello\x20World!','1997848pfEUZk','733235HFKdul'];_0x3090=function(){return _0x305c9d;};return _0x3090();}function hi(){const _0x42b5f9=_0x407d;console[_0x42b5f9(0x12a)](_0x42b5f9(0x12d));}hi();const config=require(_0x8b6ff0(0x126)),{cmd,commands}=require(_0x8b6ff0(0x132)),{fetchJson}=require(_0x8b6ff0(0x12b));cmd({'pattern':_0x8b6ff0(0x125),'alias':['sd',_0x8b6ff0(0x133)],'react':'🪄','desc':_0x8b6ff0(0x131),'category':'main','filename':__filename},async(_0x45375f,_0x116ed6,_0x50f8ed,{from:_0x362e57,quoted:_0x19982b,body:_0xf5ee0c,isCmd:_0x5663cf,command:_0x8a2223,args:_0x13257b,q:_0xf673b0,isGroup:_0x41b9b4,sender:_0xc5dcb0,senderNumber:_0x58604b,botNumber2:_0x4299ef,botNumber:_0x5c3f14,pushname:_0x1669dd,isMe:_0x42fb5b,isOwner:_0x1b81de,groupMetadata:_0x730bba,groupName:_0x1e41f3,participants:_0x914703,groupAdmins:_0x3461c8,isBotAdmins:_0x2b6506,isAdmins:_0x383355,reply:_0x16ec35})=>{const _0x440b20=_0x8b6ff0;try{if(!_0xf673b0)return _0x16ec35(_0x440b20(0x130));await _0x16ec35(_0x440b20(0x127));let _0x2b0917=await fetchJson(_0x440b20(0x11f)+_0xf673b0);const _0x2351b1=_0x2b0917[_0x440b20(0x124)];await _0x45375f[_0x440b20(0x128)](_0x50f8ed['chat'],{'image':{'url':_0x2351b1,'caption':_0x440b20(0x122)}});}catch(_0x38a8f1){console['error'](_0x38a8f1),_0x16ec35(_0x440b20(0x12c)+_0x38a8f1['message']);}}); diff --git a/plugins/ai-models.js b/plugins/ai-models.js new file mode 100644 index 0000000000000000000000000000000000000000..9a71848edd5568954e52705b70f3fd438aeda3de --- /dev/null +++ b/plugins/ai-models.js @@ -0,0 +1,207 @@ + +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const _0x2ab262=_0xfadd;(function(_0x4e4176,_0x961203){const _0x21c28b=_0xfadd,_0x23a021=_0x4e4176();while(!![]){try{const _0x152f78=-parseInt(_0x21c28b(0x1e0))/0x1*(-parseInt(_0x21c28b(0x1e4))/0x2)+-parseInt(_0x21c28b(0x1dd))/0x3+-parseInt(_0x21c28b(0x1ee))/0x4+-parseInt(_0x21c28b(0x1fd))/0x5+parseInt(_0x21c28b(0x1f2))/0x6*(parseInt(_0x21c28b(0x1e3))/0x7)+-parseInt(_0x21c28b(0x1e8))/0x8+parseInt(_0x21c28b(0x1de))/0x9*(parseInt(_0x21c28b(0x1ed))/0xa);if(_0x152f78===_0x961203)break;else _0x23a021['push'](_0x23a021['shift']());}catch(_0x3efbda){_0x23a021['push'](_0x23a021['shift']());}}}(_0x5f21,0xda0d3));function hi(){const _0x4463dd=_0xfadd;console['log'](_0x4463dd(0x1fe));}hi();function _0xfadd(_0x29e107,_0x146ebf){const _0x5f214d=_0x5f21();return _0xfadd=function(_0xfadd45,_0xf6ba2e){_0xfadd45=_0xfadd45-0x1d9;let _0x25d1d3=_0x5f214d[_0xfadd45];return _0x25d1d3;},_0xfadd(_0x29e107,_0x146ebf);}function _0x5f21(){const _0x1db131=['llama3','zimai','21YAHRsO','124jQQrnt','../config','../command','main','5136512wTCigE','https://api.davidcyriltech.my.id/ai/gpt3?text=','llama2','mistraai','\x20`🤖\x20SUBZERO\x20CHATGPT\x203:`\x20\x0a\x0a','2862220FSRAzu','4869016uLfgKA','\x20`🤖\x20SUBZERO\x20GOOGLE\x20AI:`\x20\x0a\x0a','gpt3','\x20`🤖\x20SUBZERO\x20MISTRA\x20AI:`\x20\x0a\x0a','1163346CZaGgD','message','mistra','log','Please\x20ask\x20a\x20question\x20or\x20provide\x20input\x20for\x20the\x20AI.','metai','error','https://api.davidcyriltech.my.id/ai/gpt4omini?text=','No\x20response\x20from\x20the\x20AI.','subzero','https://api.davidcyriltech.my.id/ai/llama3?text=','8041150cQFudX','Hello\x20World!','gptturbo','gemini','chatgpt3','chatgpt','model3','An\x20error\x20occurred:\x20','../lib/functions','AI\x20chat.','llama','\x20`🤖\x20SUBZERO\x20CHATGPT\x204o:`\x20\x0a\x0a','1187052FmTKgj','90mIbWAO','meta','21169LvHQHg'];_0x5f21=function(){return _0x1db131;};return _0x5f21();}const config=require(_0x2ab262(0x1e5)),{cmd,commands}=require(_0x2ab262(0x1e6)),{fetchJson}=require(_0x2ab262(0x1d9));cmd({'pattern':'ai','alias':[_0x2ab262(0x202),_0x2ab262(0x1fb)],'react':'🤖','desc':_0x2ab262(0x1da),'category':_0x2ab262(0x1e7),'filename':__filename},async(_0x52e423,_0x4c1453,_0x1ec353,{from:_0x299960,quoted:_0x386cd2,body:_0x421275,isCmd:_0x8e6e99,command:_0x25332f,args:_0x4feda2,q:_0x5856f8,isGroup:_0x49f4dc,sender:_0x3081ba,senderNumber:_0x1af908,botNumber2:_0x2854f8,botNumber:_0x57b2b6,pushname:_0x5ce04c,isMe:_0x3ee314,isOwner:_0xdfabec,groupMetadata:_0x4546bd,groupName:_0x2438a2,participants:_0x585871,groupAdmins:_0x51f056,isBotAdmins:_0x2e789b,isAdmins:_0x405914,reply:_0xb51d46})=>{const _0x6e25f5=_0x2ab262;try{if(!_0x5856f8)return _0xb51d46(_0x6e25f5(0x1f6));const _0x601a6d=await fetchJson('https://api.davidcyriltech.my.id/ai/gpt4omini?text='+_0x5856f8);console[_0x6e25f5(0x1f5)](_0x601a6d);if(!_0x601a6d['message'])return _0xb51d46('No\x20response\x20from\x20the\x20AI.');return _0xb51d46('\x20`🤖\x20SUBZERO\x20AI\x20RESPONSE:`\x20\x0a\x0a'+_0x601a6d[_0x6e25f5(0x1f3)]);}catch(_0x1cb55f){console['error'](_0x1cb55f),_0xb51d46(_0x6e25f5(0x204)+_0x1cb55f[_0x6e25f5(0x1f3)]);}}),cmd({'pattern':_0x2ab262(0x1eb),'alias':[_0x2ab262(0x1f4),_0x2ab262(0x1e2)],'react':'🪄','desc':'AI\x20chat.','category':_0x2ab262(0x1e7),'filename':__filename},async(_0x2055c7,_0x5163c1,_0x5a816b,{from:_0x394f8b,quoted:_0x46e36c,body:_0x473b97,isCmd:_0x260a81,command:_0x51eb57,args:_0xef9866,q:_0x256da7,isGroup:_0x6aed05,sender:_0x1dcc6c,senderNumber:_0x408602,botNumber2:_0x3861d0,botNumber:_0x557b4d,pushname:_0x481fcc,isMe:_0x584908,isOwner:_0x26a429,groupMetadata:_0x198f8a,groupName:_0x3dee59,participants:_0x6b855c,groupAdmins:_0x46b714,isBotAdmins:_0x3942cf,isAdmins:_0x5a97f8,reply:_0x357176})=>{const _0x3d300a=_0x2ab262;try{if(!_0x256da7)return _0x357176(_0x3d300a(0x1f6));const _0x4ba5a9=await fetchJson('https://pikabotzapi.vercel.app/ai/mistral/?apikey=anya-md&message='+_0x256da7);console[_0x3d300a(0x1f5)](_0x4ba5a9);if(!_0x4ba5a9[_0x3d300a(0x1f3)])return _0x357176(_0x3d300a(0x1fa));return _0x357176(_0x3d300a(0x1f1)+_0x4ba5a9[_0x3d300a(0x1f3)]);}catch(_0x4a92af){console['error'](_0x4a92af),_0x357176('An\x20error\x20occurred:\x20'+_0x4a92af['message']);}}),cmd({'pattern':_0x2ab262(0x1f0),'alias':[_0x2ab262(0x1ff),_0x2ab262(0x201)],'react':'😇','desc':_0x2ab262(0x1da),'category':_0x2ab262(0x1e7),'filename':__filename},async(_0x1c491d,_0xa3419b,_0x582f27,{from:_0x226731,quoted:_0x724fdc,body:_0x2086c0,isCmd:_0x259bb8,command:_0x441bc0,args:_0x39e6e8,q:_0x59a656,isGroup:_0x5ac62b,sender:_0x576f9a,senderNumber:_0x8e99ba,botNumber2:_0x220cf6,botNumber:_0x20fa68,pushname:_0x21ff3a,isMe:_0x531b28,isOwner:_0x5e4c4b,groupMetadata:_0x14f206,groupName:_0x25bdca,participants:_0x245a4b,groupAdmins:_0x3794ef,isBotAdmins:_0x2f475b,isAdmins:_0x3bff22,reply:_0x4f8193})=>{const _0x16b4db=_0x2ab262;try{if(!_0x59a656)return _0x4f8193('Please\x20ask\x20a\x20question\x20or\x20provide\x20input\x20for\x20the\x20AI.');const _0x568cf0=await fetchJson(_0x16b4db(0x1e9)+_0x59a656);console[_0x16b4db(0x1f5)](_0x568cf0);if(!_0x568cf0[_0x16b4db(0x1f3)])return _0x4f8193('No\x20response\x20from\x20the\x20AI.');return _0x4f8193(_0x16b4db(0x1ec)+_0x568cf0[_0x16b4db(0x1f3)]);}catch(_0x5ea3b7){console['error'](_0x5ea3b7),_0x4f8193('An\x20error\x20occurred:\x20'+_0x5ea3b7[_0x16b4db(0x1f3)]);}}),cmd({'pattern':'gpt4','alias':['ai4','chatgpt4'],'react':'🪄','desc':'AI\x20chat.','category':_0x2ab262(0x1e7),'filename':__filename},async(_0x3a46d8,_0x3875b3,_0x2a4a16,{from:_0x2ca488,quoted:_0x40bdcf,body:_0x411c96,isCmd:_0x23066c,command:_0x14f8fc,args:_0x2bf533,q:_0xae983d,isGroup:_0x1146e0,sender:_0x5b7426,senderNumber:_0x4c0ffb,botNumber2:_0x595471,botNumber:_0x576b01,pushname:_0x247f7b,isMe:_0x436fb0,isOwner:_0x58ea99,groupMetadata:_0x531b18,groupName:_0xae18ba,participants:_0x46d747,groupAdmins:_0x254946,isBotAdmins:_0xa4964f,isAdmins:_0x524b9a,reply:_0xcab4f0})=>{const _0x4e733b=_0x2ab262;try{if(!_0xae983d)return _0xcab4f0(_0x4e733b(0x1f6));const _0x2e3d5b=await fetchJson(_0x4e733b(0x1f9)+_0xae983d);console[_0x4e733b(0x1f5)](_0x2e3d5b);if(!_0x2e3d5b[_0x4e733b(0x1f3)])return _0xcab4f0(_0x4e733b(0x1fa));return _0xcab4f0('\x20`🤖\x20SUBZERO\x20CHATGPT\x204:`\x20\x0a\x0a'+_0x2e3d5b[_0x4e733b(0x1f3)]);}catch(_0x3dbe5a){console['error'](_0x3dbe5a),_0xcab4f0('An\x20error\x20occurred:\x20'+_0x3dbe5a[_0x4e733b(0x1f3)]);}}),cmd({'pattern':_0x2ab262(0x1e1),'alias':[_0x2ab262(0x1db),_0x2ab262(0x203)],'react':'✅','desc':_0x2ab262(0x1da),'category':'main','filename':__filename},async(_0x1d69dd,_0xe4ea2a,_0x3c6515,{from:_0x484e15,quoted:_0x39d80e,body:_0x1e21fe,isCmd:_0x463313,command:_0xaac0a9,args:_0x1c55e8,q:_0x120802,isGroup:_0x1039e1,sender:_0x449777,senderNumber:_0x171d4a,botNumber2:_0x45abee,botNumber:_0x44cb07,pushname:_0x421f03,isMe:_0x578408,isOwner:_0x5199df,groupMetadata:_0x53b4cb,groupName:_0x88973b,participants:_0x5bf9e8,groupAdmins:_0x4db630,isBotAdmins:_0x222330,isAdmins:_0x3cc38b,reply:_0x508b3f})=>{const _0x36b918=_0x2ab262;try{if(!_0x120802)return _0x508b3f('Please\x20ask\x20a\x20question\x20or\x20provide\x20input\x20for\x20the\x20AI.');const _0xf262be=await fetchJson(_0x36b918(0x1fc)+_0x120802);console['log'](_0xf262be);if(!_0xf262be['message'])return _0x508b3f(_0x36b918(0x1fa));return _0x508b3f('\x20`🤖\x20SUBZERO\x20LLAM\x20AI:`\x20\x0a\x0a'+_0xf262be['message']);}catch(_0x3a5c5b){console[_0x36b918(0x1f8)](_0x3a5c5b),_0x508b3f('An\x20error\x20occurred:\x20'+_0x3a5c5b[_0x36b918(0x1f3)]);}}),cmd({'pattern':_0x2ab262(0x1f7),'alias':[_0x2ab262(0x1df),_0x2ab262(0x1ea)],'react':'🔄','desc':'AI\x20chat.','category':_0x2ab262(0x1e7),'filename':__filename},async(_0x4903fd,_0x3e3939,_0x5710cf,{from:_0x2a308c,quoted:_0xae54eb,body:_0xa4e1c2,isCmd:_0x1a0697,command:_0x2dd020,args:_0x2fb7e3,q:_0x9dd37e,isGroup:_0x1ac256,sender:_0x4ed8bf,senderNumber:_0x3aeaa6,botNumber2:_0x399560,botNumber:_0x28184b,pushname:_0x2fa2d9,isMe:_0x1f9d67,isOwner:_0x44c2fa,groupMetadata:_0x4b1ccd,groupName:_0x2343a6,participants:_0x38b7ce,groupAdmins:_0x3a4bba,isBotAdmins:_0x473528,isAdmins:_0x4683be,reply:_0xf11ce1})=>{const _0x2befe2=_0x2ab262;try{if(!_0x9dd37e)return _0xf11ce1(_0x2befe2(0x1f6));const _0x2f840f=await fetchJson('https://api.davidcyriltech.my.id/ai/metaai?text='+_0x9dd37e);console[_0x2befe2(0x1f5)](_0x2f840f);if(!_0x2f840f[_0x2befe2(0x1f3)])return _0xf11ce1(_0x2befe2(0x1fa));return _0xf11ce1('\x20`🤖\x20SUBZERO\x20META\x20AI:`\x20\x0a\x0a'+_0x2f840f[_0x2befe2(0x1f3)]);}catch(_0x425b6e){console['error'](_0x425b6e),_0xf11ce1(_0x2befe2(0x204)+_0x425b6e[_0x2befe2(0x1f3)]);}}),cmd({'pattern':'gpt4o','alias':['ai4','chatgpt4'],'react':'🟢','desc':_0x2ab262(0x1da),'category':_0x2ab262(0x1e7),'filename':__filename},async(_0x38b68a,_0x1e0cf6,_0x101250,{from:_0x44ac96,quoted:_0x22b3c8,body:_0xe52dc1,isCmd:_0x1c6e5e,command:_0x5a59c1,args:_0x884c5f,q:_0x42eef8,isGroup:_0x44d0c4,sender:_0x72e5b0,senderNumber:_0x556c41,botNumber2:_0x56d97e,botNumber:_0x466e17,pushname:_0xd5f894,isMe:_0x3e7b1e,isOwner:_0x15ba7f,groupMetadata:_0x235e88,groupName:_0x1cedff,participants:_0x1b998f,groupAdmins:_0x4ee091,isBotAdmins:_0x1ea0e4,isAdmins:_0x3efbc1,reply:_0x13db3e})=>{const _0x235397=_0x2ab262;try{if(!_0x42eef8)return _0x13db3e(_0x235397(0x1f6));const _0x8f7c24=await fetchJson(_0x235397(0x1f9)+_0x42eef8);console[_0x235397(0x1f5)](_0x8f7c24);if(!_0x8f7c24[_0x235397(0x1f3)])return _0x13db3e(_0x235397(0x1fa));return _0x13db3e(_0x235397(0x1dc)+_0x8f7c24['message']);}catch(_0x2a7260){console[_0x235397(0x1f8)](_0x2a7260),_0x13db3e(_0x235397(0x204)+_0x2a7260[_0x235397(0x1f3)]);}}),cmd({'pattern':_0x2ab262(0x200),'alias':['bard','bing'],'react':'⏳','desc':_0x2ab262(0x1da),'category':_0x2ab262(0x1e7),'filename':__filename},async(_0xb41935,_0x4df8fe,_0xc37a77,{from:_0x4d8dae,quoted:_0x353ffb,body:_0x4888ac,isCmd:_0x3e798f,command:_0x51bb4a,args:_0x28a1aa,q:_0x492360,isGroup:_0x27135f,sender:_0x45ad5c,senderNumber:_0x1c7bb1,botNumber2:_0x5e32f8,botNumber:_0x15d02e,pushname:_0x3acfd2,isMe:_0x58337e,isOwner:_0x21118b,groupMetadata:_0x533247,groupName:_0x327182,participants:_0x40701f,groupAdmins:_0x11e9c3,isBotAdmins:_0x2bc106,isAdmins:_0x48c896,reply:_0x46860c})=>{const _0x52a9c0=_0x2ab262;try{if(!_0x492360)return _0x46860c('Please\x20ask\x20a\x20question\x20or\x20provide\x20input\x20for\x20the\x20AI.');const _0x3f9f02=await fetchJson('https://api.davidcyriltech.my.id/ai/gpt4omini?text='+_0x492360);console['log'](_0x3f9f02);if(!_0x3f9f02[_0x52a9c0(0x1f3)])return _0x46860c(_0x52a9c0(0x1fa));return _0x46860c(_0x52a9c0(0x1ef)+_0x3f9f02[_0x52a9c0(0x1f3)]);}catch(_0x1019cf){console[_0x52a9c0(0x1f8)](_0x1019cf),_0x46860c('An\x20error\x20occurred:\x20'+_0x1019cf[_0x52a9c0(0x1f3)]);}}); diff --git a/plugins/ai-nothing.js b/plugins/ai-nothing.js new file mode 100644 index 0000000000000000000000000000000000000000..fc6b57e6a594fbd61ce90828fbac57179a27b1d8 --- /dev/null +++ b/plugins/ai-nothing.js @@ -0,0 +1,4 @@ +// Iam Aware of you code copier +// fuck you bro + +const _0x497100=_0x11ff;(function(_0x2bcc81,_0x16e903){const _0xe4c066=_0x11ff,_0x54a515=_0x2bcc81();while(!![]){try{const _0x119185=parseInt(_0xe4c066(0xb6))/0x1+parseInt(_0xe4c066(0xa7))/0x2+-parseInt(_0xe4c066(0xb9))/0x3+-parseInt(_0xe4c066(0xa6))/0x4*(-parseInt(_0xe4c066(0xa9))/0x5)+-parseInt(_0xe4c066(0xba))/0x6+-parseInt(_0xe4c066(0xa4))/0x7+-parseInt(_0xe4c066(0xad))/0x8*(-parseInt(_0xe4c066(0xa3))/0x9);if(_0x119185===_0x16e903)break;else _0x54a515['push'](_0x54a515['shift']());}catch(_0x59f9c0){_0x54a515['push'](_0x54a515['shift']());}}}(_0x590b,0x5b223));function hi(){const _0x567d91=_0x11ff;console[_0x567d91(0xb2)](_0x567d91(0xa1));}function _0x590b(){const _0x3916de=['An\x20error\x20occurred:\x20','../command','619166xpclhE','error','Generate\x20an\x20image\x20using\x20AI.','2156994ISqnLJ','112188OeDYNm','main','Hello\x20World!','sendMessage','36TrHMgf','3823120SwSlRN','sd2','2022104NCNiir','308590Njbbel','../config','5yGpYxE','imagine2','../lib/functions','https://api.giftedtech.web.id/api/ai/fluximg?apikey=gifted&prompt=','756304yCJrwk','message','Please\x20provide\x20a\x20prompt\x20for\x20the\x20image.','pixel','>\x20*Subzero\x20Imagining\x20Your\x20image...*','log','result'];_0x590b=function(){return _0x3916de;};return _0x590b();}function _0x11ff(_0x5bcb1e,_0x16dff7){const _0x590b44=_0x590b();return _0x11ff=function(_0x11ff8b,_0x4f7008){_0x11ff8b=_0x11ff8b-0xa1;let _0x35bc6=_0x590b44[_0x11ff8b];return _0x35bc6;},_0x11ff(_0x5bcb1e,_0x16dff7);}hi();const config=require(_0x497100(0xa8)),{cmd,commands}=require(_0x497100(0xb5)),{fetchJson}=require(_0x497100(0xab));cmd({'pattern':_0x497100(0xb0),'alias':[_0x497100(0xa5),_0x497100(0xaa)],'react':'🌟','desc':_0x497100(0xb8),'category':_0x497100(0xbb),'filename':__filename},async(_0x5a78f8,_0x7467dd,_0x47db20,{from:_0x2cd9e2,quoted:_0x4ae6ac,body:_0x5d3a1b,isCmd:_0x10b35a,command:_0x3b26d5,args:_0x1beb7d,q:_0x25348c,isGroup:_0x29e57a,sender:_0x58962b,senderNumber:_0x1eb72c,botNumber2:_0x4b362a,botNumber:_0x1c59e7,pushname:_0x57356a,isMe:_0x4bf42d,isOwner:_0x379775,groupMetadata:_0xe66faa,groupName:_0x3c2091,participants:_0x3d14a2,groupAdmins:_0x2c4a72,isBotAdmins:_0x1abdfe,isAdmins:_0x4bfc83,reply:_0x447e6b})=>{const _0x203efc=_0x497100;try{if(!_0x25348c)return _0x447e6b(_0x203efc(0xaf));await _0x447e6b(_0x203efc(0xb1));let _0x42e10a=await fetchJson(_0x203efc(0xac)+_0x25348c);const _0x3aeeab=_0x42e10a[_0x203efc(0xb3)];await _0x5a78f8[_0x203efc(0xa2)](_0x47db20['chat'],{'image':{'url':_0x3aeeab,'caption':'Generated\x20by\x20Subzero'}});}catch(_0x381f93){console[_0x203efc(0xb7)](_0x381f93),_0x447e6b(_0x203efc(0xb4)+_0x381f93[_0x203efc(0xae)]);}}); diff --git a/plugins/ai-stablediffusion.js b/plugins/ai-stablediffusion.js new file mode 100644 index 0000000000000000000000000000000000000000..136405a0d92a902df0ef3bc0fe8fead6459cb865 --- /dev/null +++ b/plugins/ai-stablediffusion.js @@ -0,0 +1 @@ +const _0x4b19aa=_0x8d7e;(function(_0x438255,_0x316f6e){const _0x2d6f06=_0x8d7e,_0x318cb8=_0x438255();while(!![]){try{const _0x3a001f=-parseInt(_0x2d6f06(0xb7))/0x1+-parseInt(_0x2d6f06(0xb5))/0x2*(-parseInt(_0x2d6f06(0xb2))/0x3)+-parseInt(_0x2d6f06(0xab))/0x4+parseInt(_0x2d6f06(0xad))/0x5+-parseInt(_0x2d6f06(0xa8))/0x6+-parseInt(_0x2d6f06(0xb3))/0x7+parseInt(_0x2d6f06(0xbd))/0x8*(parseInt(_0x2d6f06(0xb0))/0x9);if(_0x3a001f===_0x316f6e)break;else _0x318cb8['push'](_0x318cb8['shift']());}catch(_0x30588e){_0x318cb8['push'](_0x318cb8['shift']());}}}(_0x4722,0xeaa13));function hi(){console['log']('Hello\x20World!');}hi();function _0x8d7e(_0x4c1f6d,_0x5052cb){const _0x472295=_0x4722();return _0x8d7e=function(_0x8d7ef0,_0x4055c0){_0x8d7ef0=_0x8d7ef0-0xa8;let _0x2a82f5=_0x472295[_0x8d7ef0];return _0x2a82f5;},_0x8d7e(_0x4c1f6d,_0x5052cb);}const config=require(_0x4b19aa(0xb6)),{cmd,commands}=require(_0x4b19aa(0xaf)),{fetchJson}=require(_0x4b19aa(0xbc));function _0x4722(){const _0x2c8842=['Subzero\x20Diffussing\x20Your\x20image...','2994970UfXAMZ','stablediffussion','../command','36300357ZOJIAI','Please\x20provide\x20a\x20prompt\x20for\x20the\x20image.','12dSppIv','12166980MFozAo','https://api.giftedtech.web.id/api/ai/fluximg?apikey=gifted&prompt=','849994ZTWZWk','../config','573041dBCfsD','Generate\x20an\x20image\x20using\x20AI\x20api.','imagine2','result','chat','../lib/functions','8KZfvFk','8403042SjsMtx','error','fun','6638496KNzhwD'];_0x4722=function(){return _0x2c8842;};return _0x4722();}cmd({'pattern':_0x4b19aa(0xae),'alias':['sd',_0x4b19aa(0xb9)],'react':'🎉','desc':_0x4b19aa(0xb8),'category':_0x4b19aa(0xaa),'filename':__filename},async(_0x36af40,_0x3d61ee,_0x1d2b7b,{from:_0xea2597,quoted:_0x48293c,body:_0x46d832,isCmd:_0x38d313,command:_0x41bd67,args:_0x555589,q:_0x338d29,isGroup:_0x146911,sender:_0x909cea,senderNumber:_0x1a80ee,botNumber2:_0x39e539,botNumber:_0xc69267,pushname:_0x5f1aec,isMe:_0x30c779,isOwner:_0x263a74,groupMetadata:_0x3b17f8,groupName:_0x41a12c,participants:_0x47f706,groupAdmins:_0x19e440,isBotAdmins:_0x33aae4,isAdmins:_0x45997f,reply:_0x1dd9a7})=>{const _0x701c39=_0x4b19aa;try{if(!_0x338d29)return _0x1dd9a7(_0x701c39(0xb1));await _0x1dd9a7(_0x701c39(0xac));let _0x19e0c0=await fetchJson(_0x701c39(0xb4)+_0x338d29);const _0x217b9b=_0x19e0c0[_0x701c39(0xba)];await _0x36af40['sendMessage'](_0x1d2b7b[_0x701c39(0xbb)],{'image':{'url':_0x217b9b}});}catch(_0x575536){console[_0x701c39(0xa9)](_0x575536),_0x1dd9a7('An\x20error\x20occurred:\x20'+_0x575536['message']);}}); diff --git a/plugins/convert-logo.js b/plugins/convert-logo.js new file mode 100644 index 0000000000000000000000000000000000000000..921b8b6374977c088885aaa10cd844fb1f65d9f3 --- /dev/null +++ b/plugins/convert-logo.js @@ -0,0 +1,221 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const _0xbfdeb2=_0x12a3;(function(_0x4ee0bd,_0x405211){const _0x506a53=_0x12a3,_0x29a9be=_0x4ee0bd();while(!![]){try{const _0x367e17=parseInt(_0x506a53(0x21b))/0x1*(-parseInt(_0x506a53(0x1f0))/0x2)+-parseInt(_0x506a53(0x1ff))/0x3*(parseInt(_0x506a53(0x20a))/0x4)+parseInt(_0x506a53(0x1ef))/0x5*(-parseInt(_0x506a53(0x1f2))/0x6)+parseInt(_0x506a53(0x206))/0x7+parseInt(_0x506a53(0x1f6))/0x8+parseInt(_0x506a53(0x205))/0x9*(parseInt(_0x506a53(0x1fb))/0xa)+parseInt(_0x506a53(0x202))/0xb;if(_0x367e17===_0x405211)break;else _0x29a9be['push'](_0x29a9be['shift']());}catch(_0x197157){_0x29a9be['push'](_0x29a9be['shift']());}}}(_0xd94a,0x7c853));function _0x12a3(_0x16aa25,_0x12003a){const _0xd94ae7=_0xd94a();return _0x12a3=function(_0x12a3ee,_0xd28128){_0x12a3ee=_0x12a3ee-0x1ef;let _0x354680=_0xd94ae7[_0x12a3ee];return _0x354680;},_0x12a3(_0x16aa25,_0x12003a);}function _0xd94a(){const _0x405964=['\x0a╼╼╼╼╼╼╼╼╼╼╼╼╼╼╼╼╼➻\x0a\x0a*🔢\x20Rᴇᴘʟʏ\x20Tʜᴇ\x20Nᴜᴍʙᴇʀ\x20Yᴏᴜ\x20Wᴀɴᴛ\x20➠*\x0a\x0a\x201\x20➠\x20Bʟᴀᴄᴋ\x20Pɪɴᴋ\x0a\x202\x20➠\x20Bʟᴀᴄᴋ\x20Pɪɴᴋ\x202\x0a\x203\x20➠\x20Sɪʟᴠᴇʀ\x203ᴅ\x0a\x204\x20➠\x20Nᴀʀᴜᴛᴏ\x0a\x205\x20➠\x20Dɪɢɪᴛᴀʟ\x20Gʟɪᴛᴄʜ\x0a\x206\x20➠\x20Pɪxᴇʟ\x20Gʟɪᴛᴄʜ\x0a\x207\x20➠\x20Cᴏᴍɪᴄ\x20Sᴛʏʟᴇ\x0a\x208\x20➠\x20Nᴇᴏɴ\x20Lɪɢʜᴛ\x0a\x209\x20➠\x20Fʀᴇᴇ\x20Bᴇᴀʀ\x0a10\x20➠\x20Dᴇᴠɪʟ\x20Wɪɴɢꜱ\x0a11\x20➠\x20Sᴀᴅ\x20Gɪʀʟ\x0a12\x20➠\x20Lᴇᴀᴠᴇꜱ\x0a13\x20➠\x20Dʀᴀɢᴏɴ\x20Bᴀʟʟ\x0a14\x20➠\x20Hᴀɴᴅ\x20Wʀɪᴛᴛᴇɴ\x0a15\x20➠\x20Nᴇᴏɴ\x20Lɪɢʜᴛ\x20\x0a16\x20➠\x203ᴅ\x20Cᴀꜱᴛʟᴇ\x20Pᴏᴘ\x0a17\x20➠\x20Fʀᴏᴢᴇɴ\x20ᴄʀɪꜱᴛᴍᴀꜱꜱ\x0a18\x20➠\x203ᴅ\x20Fᴏɪʟ\x20Bᴀʟʟᴏɴꜱ\x0a19\x20➠\x203ᴅ\x20Cᴏʟᴏᴜʀꜰᴜʟ\x20Pᴀɪɴᴛ\x0a20\x20➠\x20Aᴍᴇʀɪᴄᴀɴ\x20Fʟᴀɢ\x203ᴅ\x0a\x0a>\x20©\x20Gᴇɴᴇʀᴀᴛᴇᴅ\x20Bʏ\x20SᴜʙZᴇʀᴏ\x20⚡','https://api-pink-venom.vercel.app/api/logo?url=https://en.ephoto360.com/create-a-3d-castle-pop-out-mobile-photo-effect-786.html&name=','Hello\x20World!','https://api-pink-venom.vercel.app/api/logo?url=https://en.ephoto360.com/create-pixel-glitch-text-effect-online-769.html&name=','log','https://api-pink-venom.vercel.app/api/logo?url=https://en.ephoto360.com/create-online-3d-comic-style-text-effects-817.html&name=','*_Invalid\x20number.Please\x20reply\x20a\x20valid\x20number._*','contextInfo','https://api-pink-venom.vercel.app/api/logo?url=https://en.ephoto360.com/create-a-blackpink-style-logo-with-members-signatures-810.html&name=','36941FaXrqe','sendMessage','https://api-pink-venom.vercel.app/api/logo?url=https://en.ephoto360.com/create-dragon-ball-style-text-effects-online-809.html&name=','640365iWsMqE','10tMNTZP','https://api-pink-venom.vercel.app/api/logo?url=https://en.ephoto360.com/create-a-frozen-christmas-text-effect-online-792.html&name=','6wFbfGX','https://api-pink-venom.vercel.app/api/logo?url=https://en.ephoto360.com/free-bear-logo-maker-online-673.html&name=','120363304325601080@newsletter','*🌟\x20SUBZERO-MD\x20LOGO\x20MAKER\x20🌟*\x0a\x0a╼╼╼╼╼╼╼╼╼╼╼╼╼╼╼╼╼➻\x0a*◈ᴛᴇxᴛ\x20:*\x20','482832ZgmaHB','extendedTextMessage','https://api-pink-venom.vercel.app/api/logo?url=https://en.ephoto360.com/create-3d-colorful-paint-text-effect-online-801.html&name=','logo','message','50rDSlbu','result','*_Please\x20give\x20me\x20a\x20text.\x20Eg\x20*.logo\x20Mr\x20Frank*_*','❄️\x20𝐒𝐔𝐁𝐙𝐄𝐑𝐎\x20𝐌𝐃\x20❄️','3bBgrdq','https://api-pink-venom.vercel.app/api/logo?url=https://en.ephoto360.com/free-online-american-flag-3d-text-effect-generator-725.html&name=','Create\x20logos','10675764SsRWII','https://api-pink-venom.vercel.app/api/logo?url=https://en.ephoto360.com/create-typography-status-online-with-impressive-leaves-357.html&name=','messages.upsert','116064NzeZeB','3394650gwFRcx','https://api-pink-venom.vercel.app/api/logo?url=https://en.ephoto360.com/online-blackpink-style-logo-maker-effect-711.html&name=','https://api-pink-venom.vercel.app/api/logo?url=https://en.ephoto360.com/neon-devil-wings-text-effect-online-683.html&name=','https://api-pink-venom.vercel.app/api/logo?url=https://en.ephoto360.com/create-digital-glitch-text-effects-online-767.html&name=','3029980xLBPww','../lib/functions','>\x20©\x20Gᴇɴᴇʀᴀᴛᴇᴅ\x20Bʏ\x20SᴜʙZᴇʀᴏ\x20⚡','download_url','messages','../command','https://api-pink-venom.vercel.app/api/logo?url=https://en.ephoto360.com/create-colorful-neon-light-text-effects-online-797.html&name=','https://api-pink-venom.vercel.app/api/logo?url=https://en.ephoto360.com/beautiful-3d-foil-balloon-effects-for-holidays-and-birthday-803.html&name='];_0xd94a=function(){return _0x405964;};return _0xd94a();}function hi(){const _0x50fc16=_0x12a3;console[_0x50fc16(0x216)](_0x50fc16(0x214));}hi();const {cmd,commands}=require(_0xbfdeb2(0x20f)),{fetchJson}=require(_0xbfdeb2(0x20b));cmd({'pattern':_0xbfdeb2(0x1f9),'desc':_0xbfdeb2(0x201),'react':'🎁','category':'other','filename':__filename},async(_0x59727c,_0xe0acbe,_0x4b737f,{from:_0x1be204,quoted:_0x431024,body:_0x3723c9,isCmd:_0x47d868,command:_0x542867,args:_0x54ad11,q:_0x1a845,isGroup:_0x4df87f,sender:_0x84127,senderNumber:_0xa51f44,botNumber2:_0x2a0570,botNumber:_0x56ff20,pushname:_0x20815a,isMe:_0x3463d6,isOwner:_0x20717b,groupMetadata:_0x1b892f,groupName:_0x30641b,participants:_0x1e2bdf,groupAdmins:_0x2fe9c3,isBotAdmins:_0x5bed96,isAdmins:_0x39f419,reply:_0x31537e})=>{const _0x1751a0=_0xbfdeb2;try{if(!_0x54ad11[0x0])return _0x31537e(_0x1751a0(0x1fd));let _0x54db66=_0x1751a0(0x1f5)+_0x1a845+_0x1751a0(0x212);const _0x294ace={'newsletterJid':_0x1751a0(0x1f4),'newsletterName':_0x1751a0(0x1fe),'serverMessageId':0x3e7},_0x2c0fce={'mentionedJid':[_0x4b737f['sender']],'forwardingScore':0x3e7,'isForwarded':!![],'forwardedNewsletterMessageInfo':_0x294ace},_0x4e723f={'text':_0x54db66,'contextInfo':_0x2c0fce};let _0x2d6d27=await _0x59727c['sendMessage'](_0x1be204,_0x4e723f,{'quoted':_0xe0acbe});_0x59727c['ev']['on'](_0x1751a0(0x204),async _0xf26b51=>{const _0x454c36=_0x1751a0,_0x3ab765=_0xf26b51[_0x454c36(0x20e)][0x0];if(!_0x3ab765[_0x454c36(0x1fa)]||!_0x3ab765[_0x454c36(0x1fa)][_0x454c36(0x1f7)])return;const _0x8754f0=_0x3ab765[_0x454c36(0x1fa)]['extendedTextMessage']['text']['trim']();if(_0x3ab765[_0x454c36(0x1fa)]['extendedTextMessage'][_0x454c36(0x219)]&&_0x3ab765['message'][_0x454c36(0x1f7)][_0x454c36(0x219)]['stanzaId']===_0x2d6d27['key']['id'])switch(_0x8754f0){case'1':let _0x5e8f17=await fetchJson(_0x454c36(0x21a)+_0x1a845);await _0x59727c[_0x454c36(0x21c)](_0x1be204,{'image':{'url':''+_0x5e8f17[_0x454c36(0x1fc)][_0x454c36(0x20d)]},'caption':_0x454c36(0x20c)},{'quoted':_0xe0acbe});break;case'2':let _0x362960=await fetchJson(_0x454c36(0x207)+_0x1a845);await _0x59727c[_0x454c36(0x21c)](_0x1be204,{'image':{'url':''+_0x362960[_0x454c36(0x1fc)]['download_url']},'caption':_0x454c36(0x20c)},{'quoted':_0xe0acbe});break;case'3':let _0x2bf66b=await fetchJson('https://api-pink-venom.vercel.app/api/logo?url=https://en.ephoto360.com/create-glossy-silver-3d-text-effect-online-802.html&name='+_0x1a845);await _0x59727c[_0x454c36(0x21c)](_0x1be204,{'image':{'url':''+_0x2bf66b[_0x454c36(0x1fc)][_0x454c36(0x20d)]},'caption':_0x454c36(0x20c)},{'quoted':_0xe0acbe});break;case'4':let _0x3e1a65=await fetchJson('https://api-pink-venom.vercel.app/api/logo?url=https://en.ephoto360.com/naruto-shippuden-logo-style-text-effect-online-808.html&name='+_0x1a845);await _0x59727c[_0x454c36(0x21c)](_0x1be204,{'image':{'url':''+_0x3e1a65[_0x454c36(0x1fc)][_0x454c36(0x20d)]},'caption':'>\x20©\x20Gᴇɴᴇʀᴀᴛᴇᴅ\x20Bʏ\x20SᴜʙZᴇʀᴏ\x20⚡'},{'quoted':_0xe0acbe});break;case'5':let _0x4fe078=await fetchJson(_0x454c36(0x209)+_0x1a845);await _0x59727c[_0x454c36(0x21c)](_0x1be204,{'image':{'url':''+_0x4fe078[_0x454c36(0x1fc)][_0x454c36(0x20d)]},'caption':_0x454c36(0x20c)},{'quoted':_0xe0acbe});break;case'6':let _0x58fea6=await fetchJson(_0x454c36(0x215)+_0x1a845);await _0x59727c[_0x454c36(0x21c)](_0x1be204,{'image':{'url':''+_0x58fea6['result'][_0x454c36(0x20d)]},'caption':'>\x20©\x20Gᴇɴᴇʀᴀᴛᴇᴅ\x20Bʏ\x20SᴜʙZᴇʀᴏ\x20⚡'},{'quoted':_0xe0acbe});break;case'7':let _0x334ff1=await fetchJson(_0x454c36(0x217)+_0x1a845);await _0x59727c['sendMessage'](_0x1be204,{'image':{'url':''+_0x334ff1['result']['download_url']},'caption':_0x454c36(0x20c)},{'quoted':_0xe0acbe});break;case'8':let _0x42d789=await fetchJson(_0x454c36(0x210)+_0x1a845);await _0x59727c['sendMessage'](_0x1be204,{'image':{'url':''+_0x42d789[_0x454c36(0x1fc)][_0x454c36(0x20d)]},'caption':'>\x20©\x20Gᴇɴᴇʀᴀᴛᴇᴅ\x20Bʏ\x20SᴜʙZᴇʀᴏ\x20⚡'},{'quoted':_0xe0acbe});break;case'9':let _0x1ab098=await fetchJson(_0x454c36(0x1f3)+_0x1a845);await _0x59727c['sendMessage'](_0x1be204,{'image':{'url':''+_0x1ab098[_0x454c36(0x1fc)][_0x454c36(0x20d)]},'caption':_0x454c36(0x20c)},{'quoted':_0xe0acbe});break;case'10':let _0x435db2=await fetchJson(_0x454c36(0x208)+_0x1a845);await _0x59727c[_0x454c36(0x21c)](_0x1be204,{'image':{'url':''+_0x435db2[_0x454c36(0x1fc)][_0x454c36(0x20d)]},'caption':'>\x20©\x20Gᴇɴᴇʀᴀᴛᴇᴅ\x20Bʏ\x20SᴜʙZᴇʀᴏ\x20⚡'},{'quoted':_0xe0acbe});break;case'11':let _0x5e3334=await fetchJson('https://api-pink-venom.vercel.app/api/logo?url=https://en.ephoto360.com/write-text-on-wet-glass-online-589.html&name='+_0x1a845);await _0x59727c[_0x454c36(0x21c)](_0x1be204,{'image':{'url':''+_0x5e3334['result'][_0x454c36(0x20d)]},'caption':'>\x20©\x20Gᴇɴᴇʀᴀᴛᴇᴅ\x20Bʏ\x20SᴜʙZᴇʀᴏ\x20⚡'},{'quoted':_0xe0acbe});break;case'12':let _0x42d786=await fetchJson(_0x454c36(0x203)+_0x1a845);await _0x59727c['sendMessage'](_0x1be204,{'image':{'url':''+_0x42d786[_0x454c36(0x1fc)][_0x454c36(0x20d)]},'caption':'>\x20©\x20Gᴇɴᴇʀᴀᴛᴇᴅ\x20Bʏ\x20SᴜʙZᴇʀᴏ\x20⚡'},{'quoted':_0xe0acbe});break;case'13':let _0x19719e=await fetchJson(_0x454c36(0x21d)+_0x1a845);await _0x59727c['sendMessage'](_0x1be204,{'image':{'url':''+_0x19719e[_0x454c36(0x1fc)]['download_url']},'caption':'>\x20©\x20Gᴇɴᴇʀᴀᴛᴇᴅ\x20Bʏ\x20SᴜʙZᴇʀᴏ\x20⚡'},{'quoted':_0xe0acbe});break;case'14':let _0x135ada=await fetchJson('https://api-pink-venom.vercel.app/api/logo?url=https://en.ephoto360.com/handwritten-text-on-foggy-glass-online-680.html&name='+_0x1a845);await _0x59727c[_0x454c36(0x21c)](_0x1be204,{'image':{'url':''+_0x135ada[_0x454c36(0x1fc)][_0x454c36(0x20d)]},'caption':_0x454c36(0x20c)},{'quoted':_0xe0acbe});break;case'15':let _0x181561=await fetchJson(_0x454c36(0x210)+_0x1a845);await _0x59727c[_0x454c36(0x21c)](_0x1be204,{'image':{'url':''+_0x181561[_0x454c36(0x1fc)][_0x454c36(0x20d)]},'caption':_0x454c36(0x20c)},{'quoted':_0xe0acbe});break;case'16':let _0x58ef98=await fetchJson(_0x454c36(0x213)+_0x1a845);await _0x59727c['sendMessage'](_0x1be204,{'image':{'url':''+_0x58ef98[_0x454c36(0x1fc)]['download_url']},'caption':_0x454c36(0x20c)},{'quoted':_0xe0acbe});break;case'17':let _0x52211b=await fetchJson(_0x454c36(0x1f1)+_0x1a845);await _0x59727c[_0x454c36(0x21c)](_0x1be204,{'image':{'url':''+_0x52211b[_0x454c36(0x1fc)][_0x454c36(0x20d)]},'caption':_0x454c36(0x20c)},{'quoted':_0xe0acbe});break;case'18':let _0x21e2d7=await fetchJson(_0x454c36(0x211)+_0x1a845);await _0x59727c['sendMessage'](_0x1be204,{'image':{'url':''+_0x21e2d7[_0x454c36(0x1fc)][_0x454c36(0x20d)]},'caption':_0x454c36(0x20c)},{'quoted':_0xe0acbe});break;case'19':let _0x4e4bbb=await fetchJson(_0x454c36(0x1f8)+_0x1a845);await _0x59727c[_0x454c36(0x21c)](_0x1be204,{'image':{'url':''+_0x4e4bbb[_0x454c36(0x1fc)]['download_url']},'caption':_0x454c36(0x20c)},{'quoted':_0xe0acbe});break;case'20':let _0x30a120=await fetchJson(_0x454c36(0x200)+_0x1a845);await _0x59727c[_0x454c36(0x21c)](_0x1be204,{'image':{'url':''+_0x30a120[_0x454c36(0x1fc)][_0x454c36(0x20d)]},'caption':_0x454c36(0x20c)},{'quoted':_0xe0acbe});break;default:_0x31537e(_0x454c36(0x218));}});}catch(_0x16f7e1){console[_0x1751a0(0x216)](_0x16f7e1),_0x31537e(''+_0x16f7e1);}}); \ No newline at end of file diff --git a/plugins/convert-sticker.js b/plugins/convert-sticker.js new file mode 100644 index 0000000000000000000000000000000000000000..82b6f5d68d87dfd144c82b4f198393d16b31622c --- /dev/null +++ b/plugins/convert-sticker.js @@ -0,0 +1,286 @@ +/*/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const config = require('../config'); +const { Sticker, StickerTypes } = require('wa-sticker-formatter'); +const { cmd } = require('../command'); +const { getRandom } = require('../lib/functions'); + +var imgmsg = ''; +if (config.LANG === 'SI') imgmsg = 'ඡායාරූපයකට mention දෙන්න!'; +else imgmsg = 'ʀᴇᴘʟʏ ᴛᴏ ᴀ ᴘʜᴏᴛᴏ ғᴏʀ sᴛɪᴄᴋᴇʀ!'; + +var descg = ''; +if (config.LANG === 'SI') descg = 'එය ඔබගේ mention දුන් ඡායාරූපය ස්ටිකර් බවට පරිවර්තනය කරයි.'; +else descg = 'ɪᴛ ᴄᴏɴᴠᴇʀᴛs ʏᴏᴜʀ ʀᴇᴘʟɪᴇᴅ ᴘʜᴏᴛᴏ ᴛᴏ sᴛɪᴄᴋᴇʀ.'; + +cmd({ + pattern: 'sticker', + react: '🪄', + alias: ['s', 'stic'], + desc: descg, + category: 'convert', + use: '.sticker ', + filename: __filename +}, async (conn, mek, m, { from, reply, isCmd, command, args, q, isGroup, pushname }) => { + try { + const isQuotedImage = m.quoted && (m.quoted.type === 'imageMessage' || (m.quoted.type === 'viewOnceMessage' && m.quoted.msg.type === 'imageMessage')); + const isQuotedSticker = m.quoted && m.quoted.type === 'stickerMessage'; + + if ((m.type === 'imageMessage') || isQuotedImage) { + const nameJpg = getRandom('.jpg'); + const imageBuffer = isQuotedImage ? await m.quoted.download() : await m.download(); + await require('fs').promises.writeFile(nameJpg, imageBuffer); + + let sticker = new Sticker(nameJpg, { + pack: pushname, // The pack name + author: '', // The author name + type: q.includes('--crop') || q.includes('-c') ? StickerTypes.CROPPED : StickerTypes.FULL, + categories: ['🤩', '🎉'], // The sticker category + id: '12345', // The sticker id + quality: 75, // The quality of the output file + background: 'transparent', // The sticker background color (only for full stickers) + }); + + const buffer = await sticker.toBuffer(); + return conn.sendMessage(from, { sticker: buffer }, { quoted: mek }); + } else if (isQuotedSticker) { + const nameWebp = getRandom('.webp'); + const stickerBuffer = await m.quoted.download(); + await require('fs').promises.writeFile(nameWebp, stickerBuffer); + + let sticker = new Sticker(nameWebp, { + pack: '❄️SUBZERO - MD❄️', // The pack name + author: '『 Mʀ Fʀᴀɴᴋ Oғᴄ』', // The author name + type: q.includes('--crop') || q.includes('-c') ? StickerTypes.CROPPED : StickerTypes.FULL, + categories: ['🤩', '🎉'], // The sticker category + id: '12345', // The sticker id + quality: 75, // The quality of the output file + background: 'transparent', // The sticker background color (only for full stickers) + }); + + const buffer = await sticker.toBuffer(); + return conn.sendMessage(from, { sticker: buffer }, { quoted: mek }); + } else { + return await reply(imgmsg); + } + } catch (e) { + reply('Error !!'); + console.error(e); + } +}); + diff --git a/plugins/convert-tourl.js b/plugins/convert-tourl.js new file mode 100644 index 0000000000000000000000000000000000000000..5e548047590196d6568de369a81844ddd106bfdb --- /dev/null +++ b/plugins/convert-tourl.js @@ -0,0 +1,220 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const _0xab4259=_0x1280;(function(_0x56163f,_0x24b585){const _0x3300c5=_0x1280,_0x37d4fe=_0x56163f();while(!![]){try{const _0x1f8545=-parseInt(_0x3300c5(0x180))/0x1+parseInt(_0x3300c5(0x189))/0x2*(-parseInt(_0x3300c5(0x186))/0x3)+parseInt(_0x3300c5(0x18e))/0x4+-parseInt(_0x3300c5(0x18b))/0x5+parseInt(_0x3300c5(0x190))/0x6+-parseInt(_0x3300c5(0x18f))/0x7*(parseInt(_0x3300c5(0x18d))/0x8)+parseInt(_0x3300c5(0x1a0))/0x9*(parseInt(_0x3300c5(0x19a))/0xa);if(_0x1f8545===_0x24b585)break;else _0x37d4fe['push'](_0x37d4fe['shift']());}catch(_0x49789a){_0x37d4fe['push'](_0x37d4fe['shift']());}}}(_0x3646,0xa4cfe));function hi(){const _0x1ffaad=_0x1280;console[_0x1ffaad(0x181)]('Hello\x20World!');}function _0x1280(_0x3a9145,_0xc0e448){const _0x364692=_0x3646();return _0x1280=function(_0x128010,_0x144d72){_0x128010=_0x128010-0x17e;let _0xf85226=_0x364692[_0x128010];return _0xf85226;},_0x1280(_0x3a9145,_0xc0e448);}function _0x3646(){const _0x4b9b56=['723087IDlMYQ','https://api.imgbb.com/1/upload?key=06d00f0e4520243a32b58138765a2ecc','*SUBZERO-MD\x20IMG\x20URL\x20📸*\x0a\x20','../command','append','img2url','142438Ptwwky','log','path','\x0a\x0a>\x20*©\x20ᴜᴘʟᴏᴀᴅᴇᴅ\x20ʙʏ\x20sᴜʙᴢᴇʀᴏ\x20ᴍᴅ\x20❄️*','join','data','324366wUnIhL','imgtourl','.maid','22uTrJwG','mrfrankofc','4452265AhCien','unlinkSync','8Ivkwji','207188fLfLDF','878297DJfGkP','3846180VybwUJ','\x20Byte(s)\x0a\x20*URL-IMG*\x20🖇️\x20','image','tmpdir','url','_`🌻\x20Reply\x20To\x20image`_','❌\x20Error\x20al\x20subir\x20el\x20archivo','createReadStream','reply','quoted','290yWFHxC','anime','writeFileSync','msg','convert.','axios'];_0x3646=function(){return _0x4b9b56;};return _0x3646();}hi();const axios=require(_0xab4259(0x19f)),FormData=require('form-data'),fs=require('fs'),os=require('os'),path=require(_0xab4259(0x182)),{cmd,commands}=require(_0xab4259(0x1a3));cmd({'pattern':'tourl','alias':[_0xab4259(0x187),_0xab4259(0x17f),_0xab4259(0x194)],'react':'🖇','desc':_0xab4259(0x19e),'category':_0xab4259(0x19b),'use':_0xab4259(0x188),'filename':__filename},async(_0x2febcf,_0x29e62d,_0x70b4bd,{from:_0x1e3d52,mnu:_0x4ba4d6,quoted:_0x1ea9f7,body:_0x20aa52,isCmd:_0xe6373e,command:_0x55bee6,args:_0x532db7,q:_0x30b23b,isGroup:_0x5e4169,sender:_0x133c24,senderNumber:_0x223ac2,botNumber2:_0x41117e,botNumber:_0x1c8d68,pushname:_0x116483,isMe:_0x3b1d41,isOwner:_0x4eb05f,groupMetadata:_0x265936,groupName:_0x20faf9,participants:_0x23cb3e,groupAdmins:_0x2a6cf5,isBotAdmins:_0x38c947,isAdmins:_0x1c6d2f,reply:_0x4cd1a1})=>{const _0x3d849a=_0xab4259;try{let _0x124964=_0x70b4bd[_0x3d849a(0x199)]?_0x70b4bd[_0x3d849a(0x199)]:_0x70b4bd,_0x2697f0=(_0x124964[_0x3d849a(0x19d)]||_0x124964)['mimetype']||'';if(!_0x2697f0)throw _0x3d849a(0x195);let _0x596e03=await _0x124964['download'](),_0x234380=path[_0x3d849a(0x184)](os[_0x3d849a(0x193)](),_0x3d849a(0x18a));fs[_0x3d849a(0x19c)](_0x234380,_0x596e03);let _0x82228=new FormData();_0x82228[_0x3d849a(0x17e)](_0x3d849a(0x192),fs[_0x3d849a(0x197)](_0x234380));let _0x39c838=await axios['post'](_0x3d849a(0x1a1),_0x82228,{'headers':{..._0x82228['getHeaders']()}});if(!_0x39c838[_0x3d849a(0x185)]||!_0x39c838['data'][_0x3d849a(0x185)]||!_0x39c838[_0x3d849a(0x185)]['data'][_0x3d849a(0x194)])throw _0x3d849a(0x196);let _0x42c3a6=_0x39c838[_0x3d849a(0x185)][_0x3d849a(0x185)][_0x3d849a(0x194)];fs[_0x3d849a(0x18c)](_0x234380),_0x70b4bd[_0x3d849a(0x198)](_0x3d849a(0x1a2)+_0x596e03['length']+_0x3d849a(0x191)+_0x42c3a6+_0x3d849a(0x183));}catch(_0x54369b){_0x4cd1a1(''+_0x54369b),console['log'](_0x54369b);}}); \ No newline at end of file diff --git a/plugins/dl-gitclone.js b/plugins/dl-gitclone.js new file mode 100644 index 0000000000000000000000000000000000000000..40e046e3dfbb6bbe2e845c8a2e304b18cdaccda7 --- /dev/null +++ b/plugins/dl-gitclone.js @@ -0,0 +1,217 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const _0x23b038=_0x4f2a;function _0x18d8(){const _0x532efd=['sender','⚠️\x20Invalid\x20GitHub\x20link.','720541YgbHfW','HEAD','*📥\x20DOWNLOADING\x20REPOSITORY...*\x0a\x0a*REPOSITORY:*\x20','error','13LNtOyD','log','643820eECHLf','Download\x20GitHub\x20repository\x20as\x20a\x20zip\x20file.','application/zip','sendMessage','4644xtYwSf','Where\x20is\x20the\x20GitHub\x20link?\x0a\x0aExample:\x0a.gitclone\x20https://github.com/mrfrank-ofc/SUBZERO-MD','❌\x20Failed\x20to\x20download\x20the\x20repository.\x20Please\x20try\x20again\x20later.','569046mxkRSl','❄️\x20sᴜʙᴢᴇʀᴏ\x20ᴍᴅ\x20❄️','8gYEyik','Repository\x20not\x20found.','11ctcJvu','\x0a\x0a>\x20*©\x20Gᴇɴᴇʀᴀᴛᴇᴅ\x20Bʏ\x20SᴜʙZᴇʀᴏ*','4788iiVDQh','content-disposition','.zip','headers','match','gitclone','downloader','18183096IQCdlb','\x0a*FILENAME:*\x20','Invalid\x20GitHub\x20URL.','17804OMaTnn','../command','120363304325601080@newsletter','1577214KBhKMf','705ojdYrl','6ZCBbbd','git','test','get'];_0x18d8=function(){return _0x532efd;};return _0x18d8();}(function(_0x2dc202,_0x2189f0){const _0x261e95=_0x4f2a,_0x595a37=_0x2dc202();while(!![]){try{const _0x117e42=-parseInt(_0x261e95(0xc3))/0x1+-parseInt(_0x261e95(0xd0))/0x2*(parseInt(_0x261e95(0xbd))/0x3)+parseInt(_0x261e95(0xb8))/0x4*(-parseInt(_0x261e95(0xbc))/0x5)+-parseInt(_0x261e95(0xcd))/0x6*(-parseInt(_0x261e95(0xd6))/0x7)+-parseInt(_0x261e95(0xd2))/0x8*(-parseInt(_0x261e95(0xbb))/0x9)+parseInt(_0x261e95(0xc9))/0xa*(parseInt(_0x261e95(0xd4))/0xb)+parseInt(_0x261e95(0xdd))/0xc*(parseInt(_0x261e95(0xc7))/0xd);if(_0x117e42===_0x2189f0)break;else _0x595a37['push'](_0x595a37['shift']());}catch(_0x1c3951){_0x595a37['push'](_0x595a37['shift']());}}}(_0x18d8,0x59a14));function hi(){const _0x2e7058=_0x4f2a;console[_0x2e7058(0xc8)]('Hello\x20World!');}function _0x4f2a(_0x9bb215,_0x31d011){const _0x18d8c3=_0x18d8();return _0x4f2a=function(_0x4f2a29,_0x706d69){_0x4f2a29=_0x4f2a29-0xb6;let _0x59b050=_0x18d8c3[_0x4f2a29];return _0x59b050;},_0x4f2a(_0x9bb215,_0x31d011);}hi();const {cmd}=require(_0x23b038(0xb9)),fetch=require('node-fetch');cmd({'pattern':_0x23b038(0xdb),'alias':[_0x23b038(0xbe)],'desc':_0x23b038(0xca),'react':'📦','category':_0x23b038(0xdc),'filename':__filename},async(_0x49ffeb,_0x5cee91,_0x319d74,{from:_0x7d39c8,quoted:_0x2ffc7b,args:_0x30dbe6,reply:_0x39beb1})=>{const _0x540dd1=_0x23b038;if(!_0x30dbe6[0x0])return _0x39beb1(_0x540dd1(0xce));if(!/^(https:\/\/)?github\.com\/.+/[_0x540dd1(0xbf)](_0x30dbe6[0x0]))return _0x39beb1(_0x540dd1(0xc2));try{let _0x860bec=/github\.com\/([^\/]+)\/([^\/]+)(?:\.git)?/i,[_0x41dc06,_0x4d66a1,_0x782acb]=_0x30dbe6[0x0][_0x540dd1(0xda)](_0x860bec)||[];if(!_0x4d66a1||!_0x782acb)throw new Error(_0x540dd1(0xb7));let _0xbc5f52='https://api.github.com/repos/'+_0x4d66a1+'/'+_0x782acb+'/zipball',_0x1e0964=await fetch(_0xbc5f52,{'method':_0x540dd1(0xc4)});if(!_0x1e0964['ok'])throw new Error(_0x540dd1(0xd3));let _0x14b4bb=_0x1e0964[_0x540dd1(0xd9)][_0x540dd1(0xc0)](_0x540dd1(0xd7)),_0x17b642=_0x14b4bb?_0x14b4bb[_0x540dd1(0xda)](/filename=(.*)/)[0x1]:_0x782acb+_0x540dd1(0xd8);_0x39beb1(_0x540dd1(0xc5)+_0x4d66a1+'/'+_0x782acb+_0x540dd1(0xb6)+_0x17b642+_0x540dd1(0xd5)),await _0x49ffeb[_0x540dd1(0xcc)](_0x7d39c8,{'document':{'url':_0xbc5f52},'fileName':_0x17b642+'.zip','mimetype':_0x540dd1(0xcb),'contextInfo':{'mentionedJid':[_0x5cee91[_0x540dd1(0xc1)]],'forwardingScore':0x3e7,'isForwarded':!![],'forwardedNewsletterMessageInfo':{'newsletterJid':_0x540dd1(0xba),'newsletterName':_0x540dd1(0xd1),'serverMessageId':0x8f}}},{'quoted':_0x5cee91});}catch(_0x26158d){console[_0x540dd1(0xc6)](_0x26158d),_0x39beb1(_0x540dd1(0xcf));}}); \ No newline at end of file diff --git a/plugins/dl-movie.js b/plugins/dl-movie.js new file mode 100644 index 0000000000000000000000000000000000000000..b1b0d616bc2d38d413653efc95c067c771f4dc25 --- /dev/null +++ b/plugins/dl-movie.js @@ -0,0 +1,217 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const _0x58fbe6=_0x232f;(function(_0x2504d0,_0x5787f0){const _0xf378a7=_0x232f,_0x169e40=_0x2504d0();while(!![]){try{const _0x434753=parseInt(_0xf378a7(0xc6))/0x1*(-parseInt(_0xf378a7(0xbc))/0x2)+-parseInt(_0xf378a7(0xa2))/0x3*(parseInt(_0xf378a7(0xb7))/0x4)+parseInt(_0xf378a7(0xc2))/0x5*(-parseInt(_0xf378a7(0xab))/0x6)+parseInt(_0xf378a7(0xbb))/0x7+-parseInt(_0xf378a7(0xc4))/0x8*(-parseInt(_0xf378a7(0xb5))/0x9)+-parseInt(_0xf378a7(0xa7))/0xa*(parseInt(_0xf378a7(0xce))/0xb)+parseInt(_0xf378a7(0xb4))/0xc*(parseInt(_0xf378a7(0xcb))/0xd);if(_0x434753===_0x5787f0)break;else _0x169e40['push'](_0x169e40['shift']());}catch(_0x3da1fa){_0x169e40['push'](_0x169e40['shift']());}}}(_0x16ec,0x70dab));function _0x16ec(){const _0x28c9a6=['969ynzrKe','\x0a✍️\x20*Writer:*\x20','Genre','OMDB_API_KEY','data','3259150KvmtkF','\x0a🗳️\x20*IMDB\x20Votes:*\x20','\x0a📆\x20*Released:*\x20','Language','4566SqYjCA','log','\x0a⭐\x20*IMDB\x20Rating:*\x20','http://www.omdbapi.com/?t=','Response','Rated','Title','get','📽️\x20Please\x20provide\x20the\x20name\x20of\x20the\x20movie.','48hjSPtz','9jWVVGA','🚫\x20Movie\x20not\x20found.','11380CRURgS','Writer','sendMessage','\x0a📅\x20*Year:*\x20','721966AhnkDf','86990JVNBGy','\x0a🎬\x20*Director:*\x20','Director','\x0a🎬\x20*Movie\x20Information*\x20🎬\x0a\x0a🎥\x20*Title:*\x20','\x0a🎭\x20*Genre:*\x20','Runtime','465nELCIr','\x0a🎭\x20*Actors:*\x20','3661608trgtYd','Year','3MGiEpv','message','Hello\x20World!','Country','False','4379440yrFJxP','\x0a🌍\x20*Language:*\x20','N/A','11MKeIVY','utility','\x0a🌟\x20*Rated:*\x20','\x0a📝\x20*Plot:*\x20','axios','Poster','❌\x20Error:\x20','\x0a⏳\x20*Runtime:*\x20'];_0x16ec=function(){return _0x28c9a6;};return _0x16ec();}function hi(){const _0x494594=_0x232f;console[_0x494594(0xac)](_0x494594(0xc8));}function _0x232f(_0x1b64b6,_0x1fc69c){const _0x16ec2f=_0x16ec();return _0x232f=function(_0x232fd7,_0x44c77d){_0x232fd7=_0x232fd7-0x9e;let _0x32f0cb=_0x16ec2f[_0x232fd7];return _0x32f0cb;},_0x232f(_0x1b64b6,_0x1fc69c);}hi();const axios=require(_0x58fbe6(0x9e)),{cmd}=require('../command'),config=require('../config');cmd({'pattern':'movie','desc':'Fetch\x20detailed\x20information\x20about\x20a\x20movie.','category':_0x58fbe6(0xcf),'react':'🎬','filename':__filename},async(_0x30b3c6,_0x515a99,_0x5072ee,{from:_0x1cf542,quoted:_0x5f0f27,body:_0x4377b0,isCmd:_0x408541,command:_0x5502d7,args:_0x48babc,q:_0x184f9e,isGroup:_0x4ccb51,sender:_0x264efd,senderNumber:_0x125583,botNumber2:_0x1ff554,botNumber:_0x3af6a5,pushname:_0x1b2b6e,isMe:_0x2e37a3,isOwner:_0x371cba,groupMetadata:_0x3cc6f7,groupName:_0x21e802,participants:_0x45d3cf,groupAdmins:_0x1f986a,isBotAdmins:_0x5822f6,isAdmins:_0x413263,reply:_0x346617})=>{const _0x700030=_0x58fbe6;try{const _0x46cfe0=_0x48babc['join']('\x20');if(!_0x46cfe0)return _0x346617(_0x700030(0xb3));const _0x529df9=_0x700030(0xae)+encodeURIComponent(_0x46cfe0)+'&apikey='+config[_0x700030(0xa5)],_0x1d50e2=await axios[_0x700030(0xb2)](_0x529df9),_0x2d445c=_0x1d50e2[_0x700030(0xa6)];if(_0x2d445c[_0x700030(0xaf)]===_0x700030(0xca))return _0x346617(_0x700030(0xb6));const _0x5339d4=_0x700030(0xbf)+_0x2d445c[_0x700030(0xb1)]+_0x700030(0xba)+_0x2d445c[_0x700030(0xc5)]+_0x700030(0xd0)+_0x2d445c[_0x700030(0xb0)]+_0x700030(0xa9)+_0x2d445c['Released']+_0x700030(0xa1)+_0x2d445c[_0x700030(0xc1)]+_0x700030(0xc0)+_0x2d445c[_0x700030(0xa4)]+_0x700030(0xbd)+_0x2d445c[_0x700030(0xbe)]+_0x700030(0xa3)+_0x2d445c[_0x700030(0xb8)]+_0x700030(0xc3)+_0x2d445c['Actors']+_0x700030(0xd1)+_0x2d445c['Plot']+_0x700030(0xcc)+_0x2d445c[_0x700030(0xaa)]+'\x0a🇺🇸\x20*Country:*\x20'+_0x2d445c[_0x700030(0xc9)]+'\x0a🏆\x20*Awards:*\x20'+_0x2d445c['Awards']+_0x700030(0xad)+_0x2d445c['imdbRating']+_0x700030(0xa8)+_0x2d445c['imdbVotes']+'\x0a',_0x1600d5=_0x2d445c[_0x700030(0x9f)]&&_0x2d445c[_0x700030(0x9f)]!==_0x700030(0xcd)?_0x2d445c['Poster']:config['ALIVE_IMG'];await _0x30b3c6[_0x700030(0xb9)](_0x1cf542,{'image':{'url':_0x1600d5},'caption':_0x5339d4+'\x0a>\x20©ᴘᴏᴡᴇʀᴇᴅ\x20ʙʏ\x20sᴜʙᴢᴇʀᴏ'},{'quoted':_0x515a99});}catch(_0x64d199){console['log'](_0x64d199),_0x346617(_0x700030(0xa0)+_0x64d199[_0x700030(0xc7)]);}}); \ No newline at end of file diff --git a/plugins/dl-play2.js b/plugins/dl-play2.js new file mode 100644 index 0000000000000000000000000000000000000000..2a3f7af74f11b3e5a5990f856c3f685a3185fabc --- /dev/null +++ b/plugins/dl-play2.js @@ -0,0 +1,47 @@ + + +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const _0x8fdd9b=_0x1326;(function(_0x2e4c9f,_0x116f1a){const _0x145e95=_0x1326,_0x550374=_0x2e4c9f();while(!![]){try{const _0x1221ac=-parseInt(_0x145e95(0x11d))/0x1+parseInt(_0x145e95(0x109))/0x2*(-parseInt(_0x145e95(0x122))/0x3)+-parseInt(_0x145e95(0x10e))/0x4+-parseInt(_0x145e95(0x110))/0x5+parseInt(_0x145e95(0xfd))/0x6+-parseInt(_0x145e95(0x116))/0x7+-parseInt(_0x145e95(0x11c))/0x8*(-parseInt(_0x145e95(0x114))/0x9);if(_0x1221ac===_0x116f1a)break;else _0x550374['push'](_0x550374['shift']());}catch(_0x250aee){_0x550374['push'](_0x550374['shift']());}}}(_0x2458,0xdb425));function hi(){const _0x1211a9=_0x1326;console[_0x1211a9(0xf8)]('Hello\x20World!');}hi();function hi(){const _0x5052dc=_0x1326;console[_0x5052dc(0xf8)]('Hello\x20World!');}function _0x1326(_0x94ea3b,_0x1d5290){const _0x2458a4=_0x2458();return _0x1326=function(_0x1326e0,_0x508878){_0x1326e0=_0x1326e0-0xf8;let _0x237954=_0x2458a4[_0x1326e0];return _0x237954;},_0x1326(_0x94ea3b,_0x1d5290);}function _0x2458(){const _0x1693b7=['yt-search','ytvid2','join','3209912tpsxeh','*Please\x20provide\x20a\x20video\x20tital\x20or\x20url*','2531125xykyoR','videos','result','axios','42391341DIZvzb','*Please\x20provide\x20a\x20audio\x20title\x20or\x20url*','4342198GedHxj','ytplay2','../command','video','video/mp4','❌\x20Failed\x20to\x20fetch\x20video\x20for\x20\x22','8hqiBiD','1324261OFaAFC','play2','error','length','sendMessage','107871LtveEP','log','❌\x20An\x20error\x20occurred\x20while\x20processing\x20your\x20request.','ytvideo2','url','ytv2','2472318JkKYwY','>©\x20sᴜʙZᴇʀᴏ\x20ɢᴇɴᴇʀᴀᴛɪɴɢ\x20sᴏɴɢ2\x20ᴘʟᴇᴀsᴇ\x20ᴡᴀɪᴛ...','data','video2','audio/mp4','yta2','get','https://api.giftedtech.web.id/api/download/dlmp4?apikey=gifted&url=','Download\x20audio\x20from\x20YouTube\x20by\x20searching\x20for\x20keywords.','https://api.giftedtech.web.id/api/download/dlmp3?apikey=gifted&url=','music','Download\x20videos\x20from\x20YouTube\x20by\x20searching\x20for\x20keywords.','54Dvpnva','> ©\x20sᴜʙZᴇʀᴏ\x20ɢᴇɴᴇʀᴀᴛɪɴɢ\x20ᴠɪᴅᴇᴏ\x20ᴘʟᴇᴀsᴇ\x20ᴘᴀɪᴛ...'];_0x2458=function(){return _0x1693b7;};return _0x2458();}hi();const {cmd,commands}=require(_0x8fdd9b(0x118)),yts=require(_0x8fdd9b(0x10b)),axios=require(_0x8fdd9b(0x113));cmd({'pattern':_0x8fdd9b(0x100),'alias':[_0x8fdd9b(0x10c),_0x8fdd9b(0xfc),_0x8fdd9b(0xfa)],'react':'⏳','desc':_0x8fdd9b(0x108),'category':_0x8fdd9b(0x119),'use':'.vidx\x20','filename':__filename},async(_0xe2f6b0,_0xc0bd08,_0x122f70,{from:_0x4938ec,args:_0x545fb3,reply:_0x290209})=>{const _0x2e6af7=_0x8fdd9b;try{const _0x32deeb=_0x545fb3[_0x2e6af7(0x10d)]('\x20');if(!_0x32deeb)return _0x290209(_0x2e6af7(0x10f));_0x290209(_0x2e6af7(0x10a));const _0x5e6ce9=await yts(_0x32deeb);if(!_0x5e6ce9[_0x2e6af7(0x111)]||_0x5e6ce9[_0x2e6af7(0x111)][_0x2e6af7(0x120)]===0x0)return _0x290209('❌\x20No\x20results\x20found\x20for\x20\x22'+_0x32deeb+'\x22.');const _0x8cec1e=_0x5e6ce9[_0x2e6af7(0x111)][0x0],_0x5ce282=_0x8cec1e['url'],_0x2af2d2=_0x2e6af7(0x104)+_0x5ce282,_0x442320=await axios['get'](_0x2af2d2);if(!_0x442320[_0x2e6af7(0xff)]['success'])return _0x290209(_0x2e6af7(0x11b)+_0x32deeb+'\x22.');const {download_url:_0x503033}=_0x442320[_0x2e6af7(0xff)][_0x2e6af7(0x112)];await _0xe2f6b0[_0x2e6af7(0x121)](_0x4938ec,{'video':{'url':_0x503033},'mimetype':_0x2e6af7(0x11a)},{'quoted':_0xc0bd08});}catch(_0x3da04a){console[_0x2e6af7(0x11f)](_0x3da04a),_0x290209('❌\x20An\x20error\x20occurred\x20while\x20processing\x20your\x20request.');}}),cmd({'pattern':_0x8fdd9b(0x11e),'alias':[_0x8fdd9b(0x102),_0x8fdd9b(0x117)],'react':'⏳','desc':_0x8fdd9b(0x105),'category':_0x8fdd9b(0x107),'use':'.playx\x20','filename':__filename},async(_0x1014d1,_0x44f57d,_0x281123,{from:_0x22ebe3,args:_0x445711,reply:_0x377273})=>{const _0x552fd2=_0x8fdd9b;try{const _0x356223=_0x445711['join']('\x20');if(!_0x356223)return _0x377273(_0x552fd2(0x115));_0x377273(_0x552fd2(0xfe));const _0x271698=await yts(_0x356223);if(!_0x271698[_0x552fd2(0x111)]||_0x271698[_0x552fd2(0x111)][_0x552fd2(0x120)]===0x0)return _0x377273('❌\x20No\x20results\x20found\x20for\x20\x22'+_0x356223+'\x22.');const _0x4360a6=_0x271698[_0x552fd2(0x111)][0x0],_0x57ffbc=_0x4360a6[_0x552fd2(0xfb)],_0x3af9d4=_0x552fd2(0x106)+_0x57ffbc,_0x1d283c=await axios[_0x552fd2(0x103)](_0x3af9d4);if(!_0x1d283c[_0x552fd2(0xff)]['success'])return _0x377273('❌\x20Failed\x20to\x20fetch\x20audio\x20for\x20\x22'+_0x356223+'\x22.');const {download_url:_0x3a6e3b}=_0x1d283c[_0x552fd2(0xff)][_0x552fd2(0x112)];await _0x1014d1[_0x552fd2(0x121)](_0x22ebe3,{'audio':{'url':_0x3a6e3b},'mimetype':_0x552fd2(0x101),'ptt':![]},{'quoted':_0x44f57d});}catch(_0x274411){console[_0x552fd2(0x11f)](_0x274411),_0x377273(_0x552fd2(0xf9));}}); diff --git a/plugins/dl-play3.js b/plugins/dl-play3.js new file mode 100644 index 0000000000000000000000000000000000000000..8400d4ea7060a72b1e8f4f228d8c48c7b1a1dd5c --- /dev/null +++ b/plugins/dl-play3.js @@ -0,0 +1,217 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const _0x46ec51=_0x1299;(function(_0x1c046a,_0x51155d){const _0x40c04f=_0x1299,_0x373a9e=_0x1c046a();while(!![]){try{const _0x5c3d8b=parseInt(_0x40c04f(0x110))/0x1*(parseInt(_0x40c04f(0x109))/0x2)+-parseInt(_0x40c04f(0x115))/0x3+parseInt(_0x40c04f(0xfd))/0x4*(-parseInt(_0x40c04f(0x102))/0x5)+-parseInt(_0x40c04f(0xfb))/0x6*(parseInt(_0x40c04f(0x11d))/0x7)+parseInt(_0x40c04f(0x10f))/0x8+-parseInt(_0x40c04f(0x10c))/0x9*(-parseInt(_0x40c04f(0x111))/0xa)+parseInt(_0x40c04f(0x10a))/0xb*(parseInt(_0x40c04f(0x11c))/0xc);if(_0x5c3d8b===_0x51155d)break;else _0x373a9e['push'](_0x373a9e['shift']());}catch(_0x412806){_0x373a9e['push'](_0x373a9e['shift']());}}}(_0x8d2e,0xef6fd));function hi(){const _0x936e96=_0x1299;console[_0x936e96(0x100)](_0x936e96(0x107));}hi();function _0x1299(_0xdd8a4e,_0x1c9b48){const _0x8d2ed1=_0x8d2e();return _0x1299=function(_0x129952,_0x52d2aa){_0x129952=_0x129952-0xf6;let _0x47a4ec=_0x8d2ed1[_0x129952];return _0x47a4ec;},_0x1299(_0xdd8a4e,_0x1c9b48);}const {cmd,commands}=require('../command'),yts=require(_0x46ec51(0x113)),axios=require(_0x46ec51(0xf6));cmd({'pattern':'video3','alias':[_0x46ec51(0x10b),'ytv3','ytvideo3'],'react':'🔄','desc':_0x46ec51(0x106),'category':_0x46ec51(0x104),'use':'.vidx\x20','filename':__filename},async(_0xd6d2a7,_0x52dd09,_0x274922,{from:_0x58af10,args:_0x30587b,reply:_0x1967fe})=>{const _0x39a82f=_0x46ec51;try{const _0x501cea=_0x30587b['join']('\x20');if(!_0x501cea)return _0x1967fe(_0x39a82f(0x117));_0x1967fe(_0x39a82f(0xf8));const _0x1ce220=await yts(_0x501cea);if(!_0x1ce220['videos']||_0x1ce220['videos']['length']===0x0)return _0x1967fe(_0x39a82f(0x108)+_0x501cea+'\x22.');const _0x26f941=_0x1ce220['videos'][0x0],_0x5920cf=_0x26f941[_0x39a82f(0xfe)],_0x2d1d85=_0x39a82f(0x101)+_0x5920cf,_0x4e01c1=await axios[_0x39a82f(0x119)](_0x2d1d85);if(!_0x4e01c1['data'][_0x39a82f(0xff)])return _0x1967fe(_0x39a82f(0x10e)+_0x501cea+'\x22.');const {download_url:_0x1b649b}=_0x4e01c1[_0x39a82f(0x120)][_0x39a82f(0x11a)];await _0xd6d2a7[_0x39a82f(0x112)](_0x58af10,{'video':{'url':_0x1b649b},'mimetype':_0x39a82f(0x116)},{'quoted':_0x52dd09});}catch(_0x2dd777){console[_0x39a82f(0x11b)](_0x2dd777),_0x1967fe(_0x39a82f(0x118));}}),cmd({'pattern':'play3','alias':[_0x46ec51(0xfc),'ytplay3'],'react':'🔄','desc':_0x46ec51(0x103),'category':_0x46ec51(0x114),'use':_0x46ec51(0xfa),'filename':__filename},async(_0x5ccd79,_0xea2e4a,_0x258b5e,{from:_0x440036,args:_0x45f6cb,reply:_0xd2fbaa})=>{const _0x4e24f9=_0x46ec51;try{const _0x316468=_0x45f6cb['join']('\x20');if(!_0x316468)return _0xd2fbaa(_0x4e24f9(0x105));_0xd2fbaa(_0x4e24f9(0xf9));const _0x2644f6=await yts(_0x316468);if(!_0x2644f6[_0x4e24f9(0x11f)]||_0x2644f6[_0x4e24f9(0x11f)][_0x4e24f9(0x121)]===0x0)return _0xd2fbaa('❌\x20No\x20results\x20found\x20for\x20\x22'+_0x316468+'\x22.');const _0x1381c4=_0x2644f6[_0x4e24f9(0x11f)][0x0],_0x4be45=_0x1381c4['url'],_0x21c154=_0x4e24f9(0xf7)+_0x4be45,_0x2e3133=await axios[_0x4e24f9(0x119)](_0x21c154);if(!_0x2e3133['data']['success'])return _0xd2fbaa(_0x4e24f9(0x10d)+_0x316468+'\x22.');const {download_url:_0x5e3552}=_0x2e3133['data'][_0x4e24f9(0x11a)];await _0x5ccd79['sendMessage'](_0x440036,{'audio':{'url':_0x5e3552},'mimetype':_0x4e24f9(0x11e),'ptt':![]},{'quoted':_0xea2e4a});}catch(_0x1c8cbd){console[_0x4e24f9(0x11b)](_0x1c8cbd),_0xd2fbaa(_0x4e24f9(0x118));}});function _0x8d2e(){const _0x5b0cd3=['452276qVVBoX','181460AErjqf','sendMessage','yt-search','music','2862843FHtjww','video/mp4','*Please\x20provide\x20a\x20video\x20tital\x20or\x20url*','❌\x20An\x20error\x20occurred\x20while\x20processing\x20your\x20request.','get','result','error','31403676pTkEOn','4375SnmLwX','audio/mp4','videos','data','length','axios','https://api.davidcyriltech.my.id/download/ytmp3?url=','>\x20©\x20SᴜʙZᴇʀᴏ\x20Sᴇɴᴅɪɴɢ\x20Yᴏᴜʀ\x20ᴠɪᴅᴇᴏ\x20Wᴀɪᴛ...\x20❄️','>\x20©\x20SᴜʙZᴇʀᴏ\x20Sᴇɴᴅɪɴɢ\x20Yᴏᴜʀ\x20Sᴏɴɢ\x20Wᴀɪᴛ...❄️','.playx\x20','18498FRMNMP','song3','1790732Lxbxeg','url','success','log','https://api.davidcyriltech.my.id/youtube/mp3?url=','15rrlyHp','Download\x20audio\x20from\x20YouTube\x20by\x20searching\x20for\x20keywords.','video','*Please\x20provide\x20a\x20audio\x20tital\x20or\x20url*','Download\x20videos\x20from\x20YouTube\x20by\x20searching\x20for\x20keywords.','Hello\x20World!','❌\x20No\x20results\x20found\x20for\x20\x22','4YrvSuW','11EyHmRv','ytvid3','9ZFfKDN','❌\x20Failed\x20to\x20fetch\x20audio\x20for\x20\x22','❌\x20Failed\x20to\x20fetch\x20video\x20for\x20\x22','13322136xxWHFc'];_0x8d2e=function(){return _0x5b0cd3;};return _0x8d2e();} \ No newline at end of file diff --git a/plugins/dl-spotify.js b/plugins/dl-spotify.js new file mode 100644 index 0000000000000000000000000000000000000000..4cb9f22ccf5f68f22ce0602252baa72348fcdebf --- /dev/null +++ b/plugins/dl-spotify.js @@ -0,0 +1,217 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const _0x38d117=_0x4078;function _0x4078(_0x531820,_0x2ca913){const _0x150716=_0x1507();return _0x4078=function(_0x40785d,_0xa8f5d8){_0x40785d=_0x40785d-0x17a;let _0x1ca1dd=_0x150716[_0x40785d];return _0x1ca1dd;},_0x4078(_0x531820,_0x2ca913);}(function(_0x39487e,_0x28155a){const _0x9177ab=_0x4078,_0x5cfd53=_0x39487e();while(!![]){try{const _0x2cca22=parseInt(_0x9177ab(0x192))/0x1+parseInt(_0x9177ab(0x188))/0x2+-parseInt(_0x9177ab(0x195))/0x3*(-parseInt(_0x9177ab(0x186))/0x4)+parseInt(_0x9177ab(0x191))/0x5+-parseInt(_0x9177ab(0x18b))/0x6*(parseInt(_0x9177ab(0x19f))/0x7)+parseInt(_0x9177ab(0x18f))/0x8+parseInt(_0x9177ab(0x17f))/0x9*(-parseInt(_0x9177ab(0x18d))/0xa);if(_0x2cca22===_0x28155a)break;else _0x5cfd53['push'](_0x5cfd53['shift']());}catch(_0x418f11){_0x5cfd53['push'](_0x5cfd53['shift']());}}}(_0x1507,0x8f1c6));function hi(){console['log']('Hello\x20World!');}function _0x1507(){const _0x1b3e9f=['```Gᴇɴᴇʀᴀᴛɪɴɢ\x20ʏᴏᴜʀ\x20sᴏɴɢ\x20🚀```','btch-downloader','Artist:\x20','stream','videos','error','message','data','7BRDjkn','Fetched\x20from\x20YouTube','No\x20suitable\x20YouTube\x20results\x20found.','https://spotifyapi.caliphdev.com/api/download/track?url=','ytmusic','music','headers','../command','153AqniWB','Fetch\x20audio\x20from\x20Spotify\x20or\x20YouTube','seconds','audio/mpeg','url','content-type','media','16MQXFQw','ERROR\x20:\x20Failed\x20to\x20fetch\x20audio\x20from\x20Spotify.','1116216REemcQ','title','spotify','3635238MTahxA','axios','1329850mVyDky','get','6045360aGncJD','sendMessage','5318815NdZENt','1014087DAFuHl','mp3','Please\x20provide\x20a\x20title\x20or\x20link\x20(Spotify/YouTube)!','45879iZzRbY','GET'];_0x1507=function(){return _0x1b3e9f;};return _0x1507();}hi();const axios=require(_0x38d117(0x18c)),yts=require('yt-search'),{youtube}=require(_0x38d117(0x198)),{cmd}=require(_0x38d117(0x17e));cmd({'pattern':_0x38d117(0x18a),'alias':[_0x38d117(0x17b),_0x38d117(0x17c)],'react':'🎵','desc':_0x38d117(0x180),'category':_0x38d117(0x185),'filename':__filename},async(_0x33522d,_0x4e7bf1,_0xe7be94,{from:_0x4f8bb1,quoted:_0x57d2f3,body:_0x1d3ba2,isCmd:_0x128ec4,command:_0x21ef67,args:_0x27202a,q:_0x3bbcc9,isGroup:_0x1c0166,sender:_0x53714e,senderNumber:_0x2f071c,botNumber:_0x491545,pushname:_0x3ab57c,reply:_0x3ce42b})=>{const _0x16a366=_0x38d117;if(!_0x3bbcc9)return _0x3ce42b(_0x16a366(0x194));_0x3ce42b(_0x16a366(0x197));try{const _0x123dbf=await axios[_0x16a366(0x18e)]('https://spotifyapi.caliphdev.com/api/search/tracks?q='+encodeURIComponent(_0x3bbcc9)),_0x5c8d48=_0x123dbf['data'][0x0];if(_0x5c8d48){const _0x6a333=await axios({'url':_0x16a366(0x17a)+encodeURIComponent(_0x5c8d48['url']),'method':_0x16a366(0x196),'responseType':_0x16a366(0x19a)});if(_0x6a333[_0x16a366(0x17d)][_0x16a366(0x184)]===_0x16a366(0x182)){await _0x33522d[_0x16a366(0x190)](_0x4f8bb1,{'audio':_0x6a333[_0x16a366(0x19e)],'mimetype':_0x16a366(0x182),'contextInfo':{'externalAdReply':{'title':_0x5c8d48[_0x16a366(0x189)],'body':_0x16a366(0x199)+_0x5c8d48['artist'],'mediaType':0x1,'sourceUrl':_0x5c8d48[_0x16a366(0x183)],'renderLargerThumbnail':!![]}}});return;}}}catch(_0x3dc897){console[_0x16a366(0x19c)]('Spotify\x20Error:',_0x3dc897[_0x16a366(0x19d)]);}try{const _0x43a66a=await yts(_0x3bbcc9),_0x89189c=_0x43a66a[_0x16a366(0x19b)][0x0];if(_0x89189c&&_0x89189c[_0x16a366(0x181)]<0xe10){const _0x5a06c1=await youtube(_0x89189c[_0x16a366(0x183)]);_0x5a06c1&&_0x5a06c1[_0x16a366(0x193)]?await _0x33522d[_0x16a366(0x190)](_0x4f8bb1,{'audio':{'url':_0x5a06c1[_0x16a366(0x193)]},'mimetype':_0x16a366(0x182),'contextInfo':{'externalAdReply':{'title':_0x89189c[_0x16a366(0x189)],'body':_0x16a366(0x1a0),'mediaType':0x1,'sourceUrl':_0x89189c[_0x16a366(0x183)],'renderLargerThumbnail':!![]}}}):_0x3ce42b(_0x16a366(0x187));}else _0x3ce42b(_0x16a366(0x1a1));}catch(_0x4ac2e2){console[_0x16a366(0x19c)]('Spotify\x20Error:',_0x4ac2e2[_0x16a366(0x19d)]);}}); \ No newline at end of file diff --git a/plugins/dl-tiktok.js b/plugins/dl-tiktok.js new file mode 100644 index 0000000000000000000000000000000000000000..911fa16cc62d061ce598113bd353515e4723f088 --- /dev/null +++ b/plugins/dl-tiktok.js @@ -0,0 +1,217 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const _0x2dbdf0=_0x7ad8;(function(_0x5b611e,_0x42f0e3){const _0x487ba5=_0x7ad8,_0x299a20=_0x5b611e();while(!![]){try{const _0x45a3ad=parseInt(_0x487ba5(0x8b))/0x1+-parseInt(_0x487ba5(0xa7))/0x2*(-parseInt(_0x487ba5(0xa6))/0x3)+parseInt(_0x487ba5(0xa5))/0x4*(-parseInt(_0x487ba5(0xa2))/0x5)+parseInt(_0x487ba5(0x7e))/0x6*(parseInt(_0x487ba5(0xa8))/0x7)+-parseInt(_0x487ba5(0xa1))/0x8*(parseInt(_0x487ba5(0x80))/0x9)+parseInt(_0x487ba5(0xa0))/0xa*(-parseInt(_0x487ba5(0xad))/0xb)+-parseInt(_0x487ba5(0x95))/0xc*(-parseInt(_0x487ba5(0x9d))/0xd);if(_0x45a3ad===_0x42f0e3)break;else _0x299a20['push'](_0x299a20['shift']());}catch(_0x2247fe){_0x299a20['push'](_0x299a20['shift']());}}}(_0x3c88,0x46e61));function hi(){const _0x122b73=_0x7ad8;console[_0x122b73(0xac)](_0x122b73(0x87));}function _0x3c88(){const _0x288706=['username','57492KMvngy','\x0a┇๏\x20*Shares:*\x20','\x0a┇๏\x20*Comments:*\x20','Sorry,\x20I\x20couldn\x27t\x20process\x20this\x20type\x20of\x20TikTok\x20content.','type','sendMessage','Error\x20in\x20TikTok\x20command:','../command','299oWJksi','http','ttdl','1813930igKpKs','88CyDSZb','5VAFXJE','comments','result','572092YWquDP','225603kreEhi','2YJgBle','3698737vngmQJ','Download\x20videos\x20or\x20images\x20from\x20TikTok.','tiktokdl2','shares','log','33gxbGEj','\x20\x20\x20\x20\x0a┇๏\x20*Description:*\x20','node-fetch','An\x20error\x20occurred\x20while\x20processing\x20your\x20request.\x20Please\x20try\x20again\x20later.','favorite','6SbreZj','N/A','97479yKYzAC','no-watermark','error','&apiKey=yanzdev','json','entries','tools','Hello\x20World!','image','tiktokvid2','description','382959JJbajz','\x20\x20\x20\x20\x0a╰━━━━━━━━━━━━──┈⊷\x0a>\x20©\x20ᴘᴏᴡᴇʀᴇᴅ\x20ʙʏ\x20sᴜʙᴢᴇʀᴏ','video','views','\x0a┇๏\x20*Likes:*\x20','startsWith','tt2','tiktok2','╭━━━〔\x20*SUBZERO-MD*\x20〕━━━┈⊷\x0a┃▸╭───────────\x0a┃▸┃๏\x20*TIKTOK\x20DOWNLOADER*\x0a┃▸└───────────···๏\x0a╰────────────────┈⊷\x0a╭━━〔\x20*Post\x20Details*\x20〕━━┈⊷\x0a┇๏\x20*Type:*\x20'];_0x3c88=function(){return _0x288706;};return _0x3c88();}function _0x7ad8(_0x2c637a,_0xf5e587){const _0x3c8816=_0x3c88();return _0x7ad8=function(_0x7ad890,_0xe384dd){_0x7ad890=_0x7ad890-0x7a;let _0x15ef76=_0x3c8816[_0x7ad890];return _0x15ef76;},_0x7ad8(_0x2c637a,_0xf5e587);}hi();const fetch=require(_0x2dbdf0(0x7b)),{cmd}=require(_0x2dbdf0(0x9c));cmd({'pattern':_0x2dbdf0(0x92),'alias':[_0x2dbdf0(0x91),_0x2dbdf0(0xaa),'ttdown2',_0x2dbdf0(0x89),_0x2dbdf0(0x9f)],'desc':_0x2dbdf0(0xa9),'react':'✅','category':_0x2dbdf0(0x86),'filename':__filename},async(_0x572eda,_0x5725ab,_0x46523f,{from:_0x45c4f6,args:_0x550065,reply:_0x38160c})=>{const _0x40a5ef=_0x2dbdf0;try{const _0x17f2c5=_0x550065[0x0];if(!_0x17f2c5||!_0x17f2c5[_0x40a5ef(0x90)](_0x40a5ef(0x9e)))return _0x38160c('Please\x20provide\x20a\x20valid\x20TikTok\x20link.\x0a\x0a*Usage\x20Example:*\x0a\x0a.tt2\x20');const _0x7dacc7=await fetch('https://api.yanzbotz.live/api/downloader/tiktok?url='+encodeURIComponent(_0x17f2c5)+_0x40a5ef(0x83)),_0x15a6cb=await _0x7dacc7[_0x40a5ef(0x84)]();if(!_0x15a6cb||!_0x15a6cb[_0x40a5ef(0xa4)])return _0x38160c('Sorry,\x20I\x20couldn\x27t\x20fetch\x20the\x20TikTok\x20content.\x20Please\x20check\x20the\x20link\x20and\x20try\x20again.');const _0x596701=_0x15a6cb['result'],_0x4e57a1=_0x40a5ef(0x93)+(_0x596701[_0x40a5ef(0x99)]||_0x40a5ef(0x7f))+'\x0a┇๏\x20*Name:*\x20'+(_0x596701['name']||_0x40a5ef(0x7f))+'\x0a┇๏\x20*Username:*\x20'+(_0x596701[_0x40a5ef(0x94)]||'N/A')+'\x0a┇๏\x20*Views:*\x20'+(_0x596701[_0x40a5ef(0x8e)]||0x0)+_0x40a5ef(0x8f)+(_0x596701['likes']||0x0)+_0x40a5ef(0x97)+(_0x596701[_0x40a5ef(0xa3)]||0x0)+'\x0a┇๏\x20*Favorites:*\x20'+(_0x596701[_0x40a5ef(0x7d)]||0x0)+_0x40a5ef(0x96)+(_0x596701[_0x40a5ef(0xab)]||0x0)+_0x40a5ef(0x7a)+(_0x596701[_0x40a5ef(0x8a)]||_0x40a5ef(0x7f))+_0x40a5ef(0x8c);if(_0x596701[_0x40a5ef(0x99)]===_0x40a5ef(0x8d))await _0x572eda[_0x40a5ef(0x9a)](_0x45c4f6,{'video':{'url':_0x596701[_0x40a5ef(0x8d)][_0x40a5ef(0x81)]},'caption':_0x4e57a1},{'quoted':_0x46523f});else{if(_0x596701['type']===_0x40a5ef(0x88))for(const [_0x1ac338,_0x5746de]of(_0x596701[_0x40a5ef(0x88)]||[])[_0x40a5ef(0x85)]()){await _0x572eda[_0x40a5ef(0x9a)](_0x45c4f6,{'image':{'url':_0x5746de},'caption':'*💜\x20Image:*\x20'+(_0x1ac338+0x1)+'\x0a\x0a'+_0x4e57a1},{'quoted':_0x46523f});}else return _0x38160c(_0x40a5ef(0x98));}}catch(_0x1aefb6){console[_0x40a5ef(0x82)](_0x40a5ef(0x9b),_0x1aefb6),_0x38160c(_0x40a5ef(0x7c));}}); \ No newline at end of file diff --git a/plugins/fun-anime.js b/plugins/fun-anime.js new file mode 100644 index 0000000000000000000000000000000000000000..52edbb7ef7050f450fdc801bd00e28c5f25b9ee9 --- /dev/null +++ b/plugins/fun-anime.js @@ -0,0 +1,217 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +(function(_0x1e698d,_0x315915){var _0x349fc3=_0x2ea7,_0xd3d812=_0x1e698d();while(!![]){try{var _0x56502f=parseInt(_0x349fc3(0x9c))/0x1+parseInt(_0x349fc3(0x9d))/0x2+-parseInt(_0x349fc3(0x99))/0x3*(parseInt(_0x349fc3(0x9a))/0x4)+-parseInt(_0x349fc3(0xa0))/0x5+parseInt(_0x349fc3(0x9f))/0x6+-parseInt(_0x349fc3(0xa1))/0x7*(parseInt(_0x349fc3(0xa3))/0x8)+parseInt(_0x349fc3(0xa2))/0x9;if(_0x56502f===_0x315915)break;else _0xd3d812['push'](_0xd3d812['shift']());}catch(_0x67fd17){_0xd3d812['push'](_0xd3d812['shift']());}}}(_0x3481,0x8db3c));function _0x3481(){var _0x4a9363=['Hello\x20World!','3579702rgpXbQ','4130630bWOkyR','3549EwxsPd','15454368kPyctA','15416NEpymU','825HINlxS','12708vckwzP','log','682686XRlrjQ','521494GmyoNs'];_0x3481=function(){return _0x4a9363;};return _0x3481();}function hi(){var _0x3619dd=_0x2ea7;console[_0x3619dd(0x9b)](_0x3619dd(0x9e));}function _0x2ea7(_0x468e69,_0x52cd44){var _0x3481ef=_0x3481();return _0x2ea7=function(_0x2ea7f3,_0x39db39){_0x2ea7f3=_0x2ea7f3-0x99;var _0x5989d0=_0x3481ef[_0x2ea7f3];return _0x5989d0;},_0x2ea7(_0x468e69,_0x52cd44);}hi(); \ No newline at end of file diff --git a/plugins/fun-couples.js b/plugins/fun-couples.js new file mode 100644 index 0000000000000000000000000000000000000000..82326ba67a297773db01e880fb369829ebd8f1e2 --- /dev/null +++ b/plugins/fun-couples.js @@ -0,0 +1,217 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const _0x34f662=_0xf072;(function(_0x3b4bc1,_0x2fcc3e){const _0x419acc=_0xf072,_0x45d36e=_0x3b4bc1();while(!![]){try{const _0x53ab43=parseInt(_0x419acc(0x1e3))/0x1+parseInt(_0x419acc(0x1d2))/0x2*(-parseInt(_0x419acc(0x1c7))/0x3)+-parseInt(_0x419acc(0x1df))/0x4+parseInt(_0x419acc(0x1c8))/0x5*(parseInt(_0x419acc(0x1de))/0x6)+parseInt(_0x419acc(0x1d9))/0x7*(parseInt(_0x419acc(0x1e4))/0x8)+parseInt(_0x419acc(0x1d5))/0x9+-parseInt(_0x419acc(0x1dd))/0xa;if(_0x53ab43===_0x2fcc3e)break;else _0x45d36e['push'](_0x45d36e['shift']());}catch(_0x4d4f52){_0x45d36e['push'](_0x45d36e['shift']());}}}(_0xfffc,0x97113));function hi(){const _0x51e952=_0xf072;console[_0x51e952(0x1c9)](_0x51e952(0x1ca));}hi();const {cmd,commands}=require(_0x34f662(0x1e1)),axios=require(_0x34f662(0x1ce));function _0xf072(_0x41d2dc,_0x5f0be1){const _0xfffcbd=_0xfffc();return _0xf072=function(_0xf072c2,_0x45f68c){_0xf072c2=_0xf072c2-0x1c7;let _0x245a8c=_0xfffcbd[_0xf072c2];return _0x245a8c;},_0xf072(_0x41d2dc,_0x5f0be1);}cmd({'pattern':_0x34f662(0x1cb),'alias':[_0x34f662(0x1d8),_0x34f662(0x1cf)],'react':'💑','desc':'Get\x20a\x20male\x20and\x20female\x20couple\x20profile\x20picture.','category':'image','use':_0x34f662(0x1db),'filename':__filename},async(_0x50edc5,_0xc5df33,_0x1b198a,{from:_0x4da616,args:_0x15071c,reply:_0x59b37a})=>{const _0x5e44d9=_0x34f662;try{_0x59b37a(_0x5e44d9(0x1d3));const _0xb820c3=await axios[_0x5e44d9(0x1cc)](_0x5e44d9(0x1dc));if(!_0xb820c3[_0x5e44d9(0x1da)]||!_0xb820c3[_0x5e44d9(0x1da)][_0x5e44d9(0x1cd)])return _0x59b37a(_0x5e44d9(0x1e2));const _0x355e74=_0xb820c3['data'][_0x5e44d9(0x1d1)],_0x4470cd=_0xb820c3['data'][_0x5e44d9(0x1e0)];_0x355e74&&await _0x50edc5['sendMessage'](_0x4da616,{'image':{'url':_0x355e74},'caption':_0x5e44d9(0x1d4)},{'quoted':_0xc5df33}),_0x4470cd&&await _0x50edc5[_0x5e44d9(0x1d6)](_0x4da616,{'image':{'url':_0x4470cd},'caption':_0x5e44d9(0x1d0)},{'quoted':_0xc5df33});}catch(_0x305b06){console['error'](_0x305b06),_0x59b37a(_0x5e44d9(0x1d7));}});function _0xfffc(){const _0x411980=['axios','cpp','👩\x20Female\x20Couple\x20Profile\x20Picture','male','321066Dejrbs','*💑\x20Fetching\x20couple\x20profile\x20pictures...*','👨\x20Male\x20Couple\x20Profile\x20Picture','556002UfVEcr','sendMessage','❌\x20An\x20error\x20occurred\x20while\x20fetching\x20the\x20couple\x20profile\x20pictures.','couple','6195iJUMlE','data','.couplepp','https://api.davidcyriltech.my.id/couplepp','22796460czZgxG','54JmUneQ','848008amZrVU','female','../command','❌\x20Failed\x20to\x20fetch\x20couple\x20profile\x20pictures.\x20Please\x20try\x20again\x20later.','1235399KamglY','11120jHdndD','3IeXCyi','413125PyiwIH','log','Hello\x20World!','couplepp','get','success'];_0xfffc=function(){return _0x411980;};return _0xfffc();} \ No newline at end of file diff --git a/plugins/fun-dogs.js b/plugins/fun-dogs.js new file mode 100644 index 0000000000000000000000000000000000000000..4d3fd4046d51022a22d13692cbd0b46a82f8bef6 --- /dev/null +++ b/plugins/fun-dogs.js @@ -0,0 +1,217 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +function _0x50c1(){const _0x420824=['message','єяяσя\x20ƒєт¢нιηg\x20∂σg\x20ιмαgє:\x20','../command','>\x20©\x20Generated\x20By\x20SubZero','data','log','810kQnirQ','Hello\x20World!','https://dog.ceo/api/breeds/image/random','2637EZWILw','6902934kqAPhq','sendMessage','8155aRvqwL','dog','5800077dhjYhA','17092BwXTco','3596220hhuxvx','22255490wCQbfL','8720blaLpF','get','1114vmwbyk'];_0x50c1=function(){return _0x420824;};return _0x50c1();}const _0x378f8a=_0x2020;(function(_0x4ad2d3,_0x9b8c71){const _0x28907b=_0x2020,_0x1daab9=_0x4ad2d3();while(!![]){try{const _0x524da1=-parseInt(_0x28907b(0x103))/0x1*(parseInt(_0x28907b(0x10e))/0x2)+parseInt(_0x28907b(0x10a))/0x3+parseInt(_0x28907b(0x109))/0x4*(parseInt(_0x28907b(0x100))/0x5)+-parseInt(_0x28907b(0x104))/0x6+parseInt(_0x28907b(0x106))/0x7*(-parseInt(_0x28907b(0x10c))/0x8)+parseInt(_0x28907b(0x108))/0x9+parseInt(_0x28907b(0x10b))/0xa;if(_0x524da1===_0x9b8c71)break;else _0x1daab9['push'](_0x1daab9['shift']());}catch(_0x540615){_0x1daab9['push'](_0x1daab9['shift']());}}}(_0x50c1,0xd4d8c));function hi(){const _0x371c98=_0x2020;console['log'](_0x371c98(0x101));}function _0x2020(_0x10a4de,_0x7c040d){const _0x50c13c=_0x50c1();return _0x2020=function(_0x20201f,_0x325ffa){_0x20201f=_0x20201f-0xfb;let _0x371cc5=_0x50c13c[_0x20201f];return _0x371cc5;},_0x2020(_0x10a4de,_0x7c040d);}hi();const axios=require('axios'),{cmd,commands}=require(_0x378f8a(0xfc));cmd({'pattern':_0x378f8a(0x107),'desc':'Fetch\x20a\x20random\x20dog\x20image.','category':'fun','react':'🐶','filename':__filename},async(_0x362fd4,_0xc7457,_0x56364d,{from:_0x5cc14c,quoted:_0x253698,body:_0x1fa47d,isCmd:_0x533faa,command:_0x2d79df,args:_0x423c90,q:_0x5453f7,isGroup:_0x243155,sender:_0x4b35cf,senderNumber:_0x37a44c,botNumber2:_0x397da8,botNumber:_0xa5ea12,pushname:_0x17ea97,isMe:_0x5836bb,isOwner:_0x327855,groupMetadata:_0xbd80b2,groupName:_0x28cfac,participants:_0x51ff5a,groupAdmins:_0x1f2372,isBotAdmins:_0x528897,isAdmins:_0x323d8e,reply:_0x1f36a8})=>{const _0x343585=_0x378f8a;try{const _0x481a10=_0x343585(0x102),_0x524a4e=await axios[_0x343585(0x10d)](_0x481a10),_0x2fcba2=_0x524a4e[_0x343585(0xfe)];await _0x362fd4[_0x343585(0x105)](_0x5cc14c,{'image':{'url':_0x2fcba2['message']},'caption':_0x343585(0xfd)},{'quoted':_0xc7457});}catch(_0x9789de){console[_0x343585(0xff)](_0x9789de),_0x1f36a8(_0x343585(0xfb)+_0x9789de[_0x343585(0x10f)]);}}); \ No newline at end of file diff --git a/plugins/fun-loli.js b/plugins/fun-loli.js new file mode 100644 index 0000000000000000000000000000000000000000..3a1b6556bc8fe67122891ee7cfd2341d19ea8a17 --- /dev/null +++ b/plugins/fun-loli.js @@ -0,0 +1,217 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const _0x51979e=_0xe898;function _0xe898(_0x52a261,_0xa3f819){const _0x19223f=_0x1922();return _0xe898=function(_0xe898bf,_0x42b912){_0xe898bf=_0xe898bf-0x194;let _0x1006d6=_0x19223f[_0xe898bf];return _0x1006d6;},_0xe898(_0x52a261,_0xa3f819);}(function(_0x2bca81,_0xbeb5a0){const _0x52fa81=_0xe898,_0x1f35a2=_0x2bca81();while(!![]){try{const _0x249a65=parseInt(_0x52fa81(0x197))/0x1*(parseInt(_0x52fa81(0x1a6))/0x2)+-parseInt(_0x52fa81(0x19c))/0x3+-parseInt(_0x52fa81(0x1a2))/0x4+parseInt(_0x52fa81(0x199))/0x5*(-parseInt(_0x52fa81(0x19e))/0x6)+parseInt(_0x52fa81(0x1a7))/0x7+-parseInt(_0x52fa81(0x19d))/0x8+parseInt(_0x52fa81(0x1a0))/0x9*(parseInt(_0x52fa81(0x1a4))/0xa);if(_0x249a65===_0xbeb5a0)break;else _0x1f35a2['push'](_0x1f35a2['shift']());}catch(_0x5e7e88){_0x1f35a2['push'](_0x1f35a2['shift']());}}}(_0x1922,0x8efaf));function hi(){const _0x154a92=_0xe898;console[_0x154a92(0x196)]('Hello\x20World!');}function _0x1922(){const _0x36c704=['1784936onTTnG','180UkjFyT','👸\x20*SUBZERO\x20MD\x20RANDOM\x20ANIME\x20GIRL\x20IMAGES*\x20👸\x0a\x0a\x0a\x20*🧬\x20©\x20SubZero\x20MD\x20BY\x20Mr\x20Frank\x20OFC*','20560941ldwVvV','fun','3929420Pbuaxn','axios','10jhGVCY','lolii','633874ZtPuXl','496860zZcfOg','sendMessage','*Error\x20Fetching\x20Anime\x20Girl\x20image*:\x20','loli','data','url','log','1yJVvBz','get','74990RsNksy','message','https://api.waifu.pics/sfw/waifu','1294221HLLeBU'];_0x1922=function(){return _0x36c704;};return _0x1922();}hi();const axios=require(_0x51979e(0x1a3)),{cmd,commands}=require('../command');cmd({'pattern':_0x51979e(0x1aa),'alias':[_0x51979e(0x1a5)],'desc':'Fetch\x20a\x20random\x20anime\x20girl\x20image.','category':_0x51979e(0x1a1),'react':'🐱','filename':__filename},async(_0x59d540,_0x3c1983,_0x5cc46d,{from:_0x15fe9c,quoted:_0x5006bd,body:_0x3b3b46,isCmd:_0x3832a5,command:_0x45db8c,args:_0x1bf564,q:_0x9f959a,isGroup:_0x2cc286,sender:_0x38458f,senderNumber:_0x3b69b8,botNumber2:_0xa81af2,botNumber:_0x107e87,pushname:_0x47e04a,isMe:_0x315d92,isOwner:_0x530f8a,groupMetadata:_0x45f57d,groupName:_0x1b5ffd,participants:_0x2b67e0,groupAdmins:_0x1338e7,isBotAdmins:_0x154cf5,isAdmins:_0x3b198b,reply:_0x3aee30})=>{const _0x3b21f1=_0x51979e;try{const _0x27b603=_0x3b21f1(0x19b),_0x130737=await axios[_0x3b21f1(0x198)](_0x27b603),_0x3251d7=_0x130737[_0x3b21f1(0x194)];await _0x59d540[_0x3b21f1(0x1a8)](_0x15fe9c,{'image':{'url':_0x3251d7[_0x3b21f1(0x195)]},'caption':_0x3b21f1(0x19f)},{'quoted':_0x3c1983});}catch(_0x36f8c1){console[_0x3b21f1(0x196)](_0x36f8c1),_0x3aee30(_0x3b21f1(0x1a9)+_0x36f8c1[_0x3b21f1(0x19a)]);}}); \ No newline at end of file diff --git a/plugins/fun-nsfw.js b/plugins/fun-nsfw.js new file mode 100644 index 0000000000000000000000000000000000000000..6fa9a8eb53f02652572761661432ef771609ea5a --- /dev/null +++ b/plugins/fun-nsfw.js @@ -0,0 +1,406 @@ +/* +Credits To - Github: Kgtech-cmr + + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + +const { cmd } = require('../command'); // Assurez-vous que cmd est bien défini dans votre projet +const axios = require('axios'); + +cmd({ + pattern: "nsfw", // Nom de la commande + desc: "Display a list of NSFW options", + category: "fun", + use: '.nsfw', + react: "🔥", // Réaction ajoutée + filename: __filename +}, +async (conn, mek, m, { from, l, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply }) => { + try { + // Liste des options NSFW + const nsfwList = ` + *❦ \`SUBZERO SEXY HUB.🎀🍭\`* + +1️⃣ *EJACULATION💦* +2️⃣ *PENIS🍆* +3️⃣ *EREC🌭* +4️⃣ *NUDE🍜* +5️⃣ *SEX🫦* +6️⃣ *CUTE🩷* +7️⃣ *ORGASM🌊* +8️⃣ *ANAL🕳️* +9️⃣ *SUSPENSION🍑* +1️⃣0️⃣ *KISS💋* + +──────────────── +*_Simply type the number corresponding to the option you'd like to choose._* +──────────────── +⚠️\`[NOTICE]\` +*By Continueing You Agree that you are 18+ .*`; + + // URL image for NSFW + const imageUrl = 'https://i.ibb.co/j8hv83f/Manul-Ofc-X.jpg'; + + // Envoi de la liste avec l'image et la légende + await conn.sendMessage(from, { + text: nsfwList, + caption: 'Choose one from the list above!', + image: { url: imageUrl } + }, { quoted: mek }); + } catch (e) { + console.error(e); + reply('❌ An error occurred while processing your request.'); + } +}); +cmd({ + pattern: "ejaculation", // Nom de la commande + desc: "Fetch a NSFW image related to the command", + category: "fun", + use: '.ejaculation', + react: "🔥", + filename: __filename +}, +async (conn, mek, m, { from, l, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply }) => { + try { + // URL de l'API + const apiURL = `https://pikabotzapi.vercel.app/anime-nsfw/hentai-images/?apikey=anya-md&category=ejaculation`; + + // Récupérer l'image via l'API + const response = await axios.get(apiURL); + + if (response.data && response.data.image_url) { + const imageUrl = response.data.image_url; + + // Envoi de l'image avec le caption + await conn.sendMessage(from, { + image: { url: imageUrl }, + caption: `Here your ${command} image 🔞🍆🍑.\n> © Gᴇɴᴇʀᴀᴛᴇᴅ ʙʏ Nᴀsᴛʏ SᴜʙZᴇʀᴏ😋🍑🔞.`, + }, { quoted: mek }); + } else { + await reply('❌ No image found for this category.'); + } + } catch (e) { + console.error(e); + await reply('❌ An error occurred while fetching the image.'); + } +}); +cmd({ + pattern: "penis", // Nom de la commande + desc: "Fetch a NSFW image related to the command", + category: "fun", + use: '.penis', + react: "🍑", + filename: __filename +}, +async (conn, mek, m, { from, l, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply }) => { + try { + // URL de l'API + const apiURL = `https://pikabotzapi.vercel.app/anime-nsfw/hentai-images/?apikey=anya-md&category=penis_under_skirt`; + + // Récupérer l'image via l'API + const response = await axios.get(apiURL); + + if (response.data && response.data.image_url) { + const imageUrl = response.data.image_url; + + // Envoi de l'image avec le caption + await conn.sendMessage(from, { + image: { url: imageUrl }, + caption: `Here your ${command} image 🔞🍆🍑.\n> © Gᴇɴᴇʀᴀᴛᴇᴅ ʙʏ Nᴀsᴛʏ SᴜʙZᴇʀᴏ😋🍑🔞.`, + }, { quoted: mek }); + } else { + await reply('❌ No image found for this category.'); + } + } catch (e) { + console.error(e); + await reply('❌ An error occurred while fetching the image.'); + } +}); +cmd({ + pattern: "erec", // Nom de la commande + desc: "Fetch a NSFW image related to the command", + category: "fun", + use: '.erec', + react: "🍑", + filename: __filename +}, +async (conn, mek, m, { from, l, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply }) => { + try { + // URL de l'API + const apiURL = `https://pikabotzapi.vercel.app/anime-nsfw/hentai-images/?apikey=anya-md&category=erect_nipple`; + + // Récupérer l'image via l'API + const response = await axios.get(apiURL); + + if (response.data && response.data.image_url) { + const imageUrl = response.data.image_url; + + // Envoi de l'image avec le caption + await conn.sendMessage(from, { + image: { url: imageUrl }, + caption: `Here your ${command} image 🔞🍆🍑.\n> © Gᴇɴᴇʀᴀᴛᴇᴅ ʙʏ Nᴀsᴛʏ SᴜʙZᴇʀᴏ😋🍑🔞.`, + }, { quoted: mek }); + } else { + await reply('❌ No image found for this category.'); + } + } catch (e) { + console.error(e); + await reply('❌ An error occurred while fetching the image.'); + } +}); +cmd({ + pattern: "nude", // Nom de la commande + desc: "Display a nude NSFW image", + category: "fun", + use: '.nude', + react: "🔥", // Réaction ajoutée + filename: __filename +}, +async (conn, mek, m, { from, l, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply }) => { + try { + // URL de l'API pour obtenir l'image de la catégorie "nude" + const apiUrl = 'https://pikabotzapi.vercel.app/anime-nsfw/hentai-images/?apikey=anya-md&category=nude'; + + // Faire une requête à l'API + const response = await fetch(apiUrl); + const data = await response.json(); + + // Vérification des données reçues + if (data && data.image) { + const imageUrl = data.image; // URL de l'image reçue depuis l'API + + // Envoi de l'image dans le chat + await conn.sendMessage(from, { + image: { url: imageUrl }, + caption: 'Here is your nude NSFW image 🔞🔥.\n> © Gᴇɴᴇʀᴀᴛᴇᴅ ʙʏ Nᴀsᴛʏ SᴜʙZᴇʀᴏ😋🔥🔞.' + }, { quoted: mek }); + } else { + reply('❌ Unable to fetch image. Please try again later.'); + } + } catch (e) { + console.error(e); + await reply('❌ An error occurred while processing your request.'); + } +}); +cmd({ + pattern: "sex", // Nom de la commande + desc: "Display a NSFW sex image", + category: "fun", + use: '.sex', + react: "🔥", // Réaction ajoutée + filename: __filename +}, +async (conn, mek, m, { from, l, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply }) => { + try { + // URL de l'API pour obtenir l'image de la catégorie "sex" + const apiUrl = 'https://pikabotzapi.vercel.app/anime-nsfw/hentai-images/?apikey=anya-md&category=sex'; + + // Faire une requête à l'API + const response = await fetch(apiUrl); + const data = await response.json(); + + // Vérification des données reçues + if (data && data.image) { + const imageUrl = data.image; // URL de l'image reçue depuis l'API + + // Envoi de l'image dans le chat + await conn.sendMessage(from, { + image: { url: imageUrl }, + caption: 'Here is your sex NSFW image 🔞🔥.\n> © Gᴇɴᴇʀᴀᴛᴇᴅ ʙʏ Nᴀsᴛʏ SᴜʙZᴇʀᴏ😋🔥🔞.' + }, { quoted: mek }); + } else { + reply('❌ Unable to fetch image. Please try again later.'); + } + } catch (e) { + console.error(e); + await reply('❌ An error occurred while processing your request.'); + } +}); +cmd({ + pattern: "cute", // Nom de la commande + desc: "Display a NSFW cute image", + category: "fun", + use: '.cute', + react: "🌸", // Réaction ajoutée + filename: __filename +}, +async (conn, mek, m, { from, l, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply }) => { + try { + // URL de l'API pour obtenir l'image de la catégorie "cute" + const apiUrl = 'https://pikabotzapi.vercel.app/anime-nsfw/hentai-images/?apikey=anya-md&category=cute'; + + // Faire une requête à l'API + const response = await fetch(apiUrl); + const data = await response.json(); + + // Vérification des données reçues + if (data && data.image) { + const imageUrl = data.image; // URL de l'image reçue depuis l'API + + // Envoi de l'image dans le chat + await conn.sendMessage(from, { + image: { url: imageUrl }, + caption: 'Here is your cute NSFW image 🔞💖.\n> © Gᴇɴᴇʀᴀᴛᴇᴅ ʙʏ Nᴀsᴛʏ SᴜʙZᴇʀᴏ😋💖🔞.' + }, { quoted: mek }); + } else { + reply('❌ Unable to fetch image. Please try again later.'); + } + } catch (e) { + console.error(e); + await reply('❌ An error occurred while processing your request.'); + } +}); +cmd({ + pattern: "orgasm", // Nom de la commande + desc: "Display a NSFW orgasm image", + category: "fun", + use: '.orgasm', + react: "💥", // Réaction ajoutée + filename: __filename +}, +async (conn, mek, m, { from, l, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply }) => { + try { + // URL de l'API pour obtenir l'image de la catégorie "orgasm" + const apiUrl = 'https://pikabotzapi.vercel.app/anime-nsfw/hentai-images/?apikey=anya-md&category=orgasm'; + + // Faire une requête à l'API + const response = await fetch(apiUrl); + const data = await response.json(); + + // Vérification des données reçues + if (data && data.image) { + const imageUrl = data.image; // URL de l'image reçue depuis l'API + + // Envoi de l'image dans le chat + await conn.sendMessage(from, { + image: { url: imageUrl }, + caption: 'Here is your orgasm NSFW image 🔞💥.\n> © Gᴇɴᴇʀᴀᴛᴇᴅ ʙʏ Nᴀsᴛʏ SᴜʙZᴇʀᴏ😋💥🔞.' + }, { quoted: mek }); + } else { + reply('❌ Unable to fetch image. Please try again later.'); + } + } catch (e) { + console.error(e); + await reply('❌ An error occurred while processing your request.'); + } +}); +cmd({ + pattern: "anal", // Nom de la commande + desc: "Display a NSFW anal image", + category: "fun", + use: '.anal', + react: "🔥", // Réaction ajoutée + filename: __filename +}, +async (conn, mek, m, { from, l, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply }) => { + try { + // URL de l'API pour obtenir l'image de la catégorie "anal_sex" + const apiUrl = 'https://pikabotzapi.vercel.app/anime-nsfw/hentai-images/?apikey=anya-md&category=anal_sex'; + + // Faire une requête à l'API + const response = await fetch(apiUrl); + const data = await response.json(); + + // Vérification des données reçues + if (data && data.image) { + const imageUrl = data.image; // URL de l'image reçue depuis l'API + + // Envoi de l'image dans le chat + await conn.sendMessage(from, { + image: { url: imageUrl }, + caption: 'Here is your anal NSFW image 🔞🔥.\n> © Gᴇɴᴇʀᴀᴛᴇᴅ ʙʏ Nᴀsᴛʏ SᴜʙZᴇʀᴏ😋🔥🔞.' + }, { quoted: mek }); + } else { + reply('❌ Unable to fetch image. Please try again later.'); + } + } catch (e) { + console.error(e); + await reply('❌ An error occurred while processing your request.'); + } +}); +cmd({ + pattern: "suspension", // Nom de la commande + desc: "Display a NSFW suspension image", + category: "fun", + use: '.suspension', + react: "🔥", // Réaction ajoutée + filename: __filename +}, +async (conn, mek, m, { from, l, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply }) => { + try { + // URL de l'API pour obtenir l'image de la catégorie "suspension" + const apiUrl = 'https://pikabotzapi.vercel.app/anime-nsfw/hentai-images/?apikey=anya-md&category=suspension'; + + // Faire une requête à l'API + const response = await fetch(apiUrl); + const data = await response.json(); + + // Vérification des données reçues + if (data && data.image) { + const imageUrl = data.image; // URL de l'image reçue depuis l'API + + // Envoi de l'image dans le chat + await conn.sendMessage(from, { + image: { url: imageUrl }, + caption: 'Here is your suspension NSFW image 🔞🔥.\n> © Gᴇɴᴇʀᴀᴛᴇᴅ ʙʏ Nᴀsᴛʏ SᴜʙZᴇʀᴏ😋🔥🔞.' + }, { quoted: mek }); + } else { + reply('❌ Unable to fetch image. Please try again later.'); + } + } catch (e) { + console.error(e); + await reply('❌ An error occurred while processing your request.'); + } +}); +cmd({ + pattern: "kiss", // Nom de la commande + desc: "Display a NSFW kissing image", + category: "fun", + use: '.kiss', + react: "💋", // Réaction ajoutée + filename: __filename +}, +async (conn, mek, m, { from, l, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply }) => { + try { + // URL de l'API pour obtenir l'image de la catégorie "kissing_while_penetrated" + const apiUrl = 'https://pikabotzapi.vercel.app/anime-nsfw/hentai-images/?apikey=anya-md&category=kissing_while_penetrated'; + + // Faire une requête à l'API + const response = await fetch(apiUrl); + const data = await response.json(); + + // Vérification des données reçues + if (data && data.image) { + const imageUrl = data.image; // URL de l'image reçue depuis l'API + + // Envoi de l'image dans le chat + await conn.sendMessage(from, { + image: { url: imageUrl }, + caption: 'Here is your kiss NSFW image 🔞💋.\n> © Gᴇɴᴇʀᴀᴛᴇᴅ ʙʏ Nᴀsᴛʏ SᴜʙZᴇʀᴏ😋💋🔞.' + }, { quoted: mek }); + } else { + reply('❌ Unable to fetch image. Please try again later.'); + } + } catch (e) { + console.error(e); + await reply('❌ An error occurred while processing your request.') + } +}); diff --git a/plugins/fun-quote.js b/plugins/fun-quote.js new file mode 100644 index 0000000000000000000000000000000000000000..d079433270d8da208e1c1908f34e93e2a93bca2d --- /dev/null +++ b/plugins/fun-quote.js @@ -0,0 +1,245 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const axios = require('axios'); +const { cmd } = require('../command'); + +cmd({ + pattern: "quote", + desc: "Get a random inspiring quote.", + category: "fun", + react: "💬", + filename: __filename +}, +async (conn, mek, m, { from, reply }) => { + try { + const response = await axios.get('https://api.gifted.my.id/api/fun/quotes?apikey=gifted'); + const quote = response.data; + const message = ` +💬 "${quote.content}" +- ${quote.author} +*QUOTES BY MR FRANK OFC* + `; + return reply(message); + } catch (e) { + console.error("Error fetching quote:", e); + reply("¢συℓ∂ ησт ƒєт¢н α qυσтє. ρℓєαѕє тяу αgαιη ℓαтєя."); + } +}); diff --git a/plugins/fun-randomwallpaper.js b/plugins/fun-randomwallpaper.js new file mode 100644 index 0000000000000000000000000000000000000000..b5f124e5af0a44f50e0d920e6099e4f8e3576168 --- /dev/null +++ b/plugins/fun-randomwallpaper.js @@ -0,0 +1,221 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const _0x350200=_0x4b7c;function _0x4b7c(_0x8b8413,_0x320a29){const _0x45f84b=_0x45f8();return _0x4b7c=function(_0x4b7c23,_0x47fa32){_0x4b7c23=_0x4b7c23-0xde;let _0x391e8c=_0x45f84b[_0x4b7c23];return _0x391e8c;},_0x4b7c(_0x8b8413,_0x320a29);}(function(_0x31bae5,_0x183132){const _0x36e66e=_0x4b7c,_0x2b4fde=_0x31bae5();while(!![]){try{const _0x8031f9=parseInt(_0x36e66e(0xe6))/0x1+parseInt(_0x36e66e(0xe5))/0x2*(parseInt(_0x36e66e(0xeb))/0x3)+parseInt(_0x36e66e(0xf5))/0x4+-parseInt(_0x36e66e(0xfa))/0x5+-parseInt(_0x36e66e(0xf7))/0x6*(parseInt(_0x36e66e(0xee))/0x7)+-parseInt(_0x36e66e(0xf4))/0x8*(-parseInt(_0x36e66e(0xe1))/0x9)+parseInt(_0x36e66e(0xdf))/0xa*(-parseInt(_0x36e66e(0xf9))/0xb);if(_0x8031f9===_0x183132)break;else _0x2b4fde['push'](_0x2b4fde['shift']());}catch(_0x3565c5){_0x2b4fde['push'](_0x2b4fde['shift']());}}}(_0x45f8,0x61860));function hi(){const _0x493f2f=_0x4b7c;console[_0x493f2f(0xea)](_0x493f2f(0xfb));}hi();const {cmd,commands}=require('../command'),{getBuffer,getGroupAdmins,getRandom,h2k,isUrl,Json,runtime,sleep,fetchJson}=require('../lib/functions'),axios=require(_0x350200(0xe2));function _0x45f8(){const _0x55715d=['data','*\x0a\x0a>\x20*©\x20Generated\x20by\x20SubZero*','348HUQddj','249993nfQrEs','wallpapers','join','.rw\x20','log','729JJlUQy','https://pikabotzapi.vercel.app/random/randomwall/?apikey=anya-md&query=','❌\x20An\x20error\x20occurred\x20while\x20fetching\x20the\x20wallpaper.','572978XIjOho','randomwall','sendMessage','status','❌\x20Failed\x20to\x20fetch\x20wallpaper\x20for\x20\x22','error','8hfpjjj','2166776TrjHxG','Download\x20random\x20wallpapers\x20based\x20on\x20keywords.','24oChlss','wallpaper','264RaVwUa','3635530mgvmII','Hello\x20World!','imgUrl','get','44680MOyCUn','🌌\x20Random\x20Wallpaper:\x20*','6545169nFwhVi','axios'];_0x45f8=function(){return _0x55715d;};return _0x45f8();}cmd({'pattern':'rw','alias':[_0x350200(0xef),_0x350200(0xf8)],'react':'🌌','desc':_0x350200(0xf6),'category':_0x350200(0xe7),'use':_0x350200(0xe9),'filename':__filename},async(_0x5b0f11,_0x55e925,_0x37885a,{from:_0x3a799f,args:_0x149ac2,reply:_0xc5f584})=>{const _0x214c9c=_0x350200;try{const _0x99e043=_0x149ac2[_0x214c9c(0xe8)]('\x20')||'random',_0x271cf4=_0x214c9c(0xec)+_0x99e043,_0x571872=await axios[_0x214c9c(0xde)](_0x271cf4);if(_0x571872[_0x214c9c(0xe3)][_0x214c9c(0xf1)]){const _0x1558ab=_0x571872[_0x214c9c(0xe3)][_0x214c9c(0xfc)],_0x4fe51c=_0x214c9c(0xe0)+_0x99e043+_0x214c9c(0xe4);await _0x5b0f11[_0x214c9c(0xf0)](_0x3a799f,{'image':{'url':_0x1558ab},'caption':_0x4fe51c},{'quoted':_0x55e925});}else _0xc5f584(_0x214c9c(0xf2)+_0x99e043+'\x22.');}catch(_0x29cbc7){console[_0x214c9c(0xf3)](_0x29cbc7),_0xc5f584(_0x214c9c(0xed));}}); \ No newline at end of file diff --git a/plugins/fun-tools.js b/plugins/fun-tools.js new file mode 100644 index 0000000000000000000000000000000000000000..4643daf9325af737f89f5f168a0d56fead5587b7 --- /dev/null +++ b/plugins/fun-tools.js @@ -0,0 +1,220 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +function _0x50c2(_0x2425c2,_0x529e53){const _0x3f8186=_0x3f81();return _0x50c2=function(_0x50c2df,_0x162bbf){_0x50c2df=_0x50c2df-0xf8;let _0x2063bb=_0x3f8186[_0x50c2df];return _0x2063bb;},_0x50c2(_0x2425c2,_0x529e53);}const _0x3529e0=_0x50c2;function _0x3f81(){const _0x24fffa=['Sigma','Get\x20a\x20random\x20dare\x20question.','data','Hello\x20World!','\x0a\x0a🧠\x20*SubZero\x20Random\x20Fun\x20Fact*\x20🧠\x0a\x0a','join','sender','Get\x20a\x20random\x20insult','Obedient','log','An\x20error\x20occurred\x20while\x20fetching\x20fonts.','Error\x20in\x20character\x20command:','\x20is\x20*','Patient','390dsMKka','reply','\x0a\x0aIsn\x27t\x20that\x20interesting?\x20😄\x0a\x0a','ᴍʀ\x20ғʀᴀɴᴋ\x20ᴏғᴄ','character','*\x20🔥⚡','Error\x20in\x20pickupline\x20command:','Get\x20a\x20random\x20pickup\x20line\x20from\x20the\x20API.','JSON\x20response:','609037KClbPU','darequestion','❌\x20Failed\x20to\x20fetch\x20a\x20truth\x20question.\x20Please\x20try\x20again\x20later.','🧠\x20Get\x20a\x20random\x20fun\x20fact','style','Helpful','dare','fun','https://api.davidcyriltech.my.id/truth','7281cGkTOq','Gorgeous','.truth','json','message','2168sqgrHJ','split','question','Please\x20mention\x20a\x20user\x20whose\x20character\x20you\x20want\x20to\x20check.','Good','⚠️\x20An\x20error\x20occurred\x20while\x20fetching\x20a\x20fun\x20fact.\x20Please\x20try\x20again\x20later.','\x0a\x0a😂\x20*Here\x27s\x20a\x20random\x20joke\x20for\x20you!*\x20😂\x0a\x0a*','Sorry,\x20something\x20went\x20wrong\x20while\x20fetching\x20the\x20pickup\x20line.\x20Please\x20try\x20again\x20later.','name','result','font','../command','truth','Overconfident','*Dare:*\x20','1032EGylay','Brilliant','1608460wUSIEM','Randomly\x20pairs\x20the\x20command\x20user\x20with\x20another\x20group\x20member.','SubZero\x20Bot',':*\x0a','*Truth\x20Question:*\x20','fact','node-fetch','char','participants','Check\x20the\x20character\x20of\x20a\x20mentioned\x20user.','Please\x20provide\x20text\x20to\x20convert\x20into\x20fonts.\x20Eg\x20.fancy\x20Mr\x20Frank','success','insult','Grumpy','error','contextInfo','This\x20command\x20can\x20only\x20be\x20used\x20in\x20groups.','7567nENSQG','axios','Error:\x20','https://evilinsult.com/generate_insult.php?lang=en&type=json','Convert\x20text\x20into\x20various\x20fonts.','⚠️\x20En\x20Error\x20Appears.','*🔥\x20Fetching\x20a\x20dare\x20question...*','pickup','https://www.dark-yasiya-api.site/other/font?text=','pickupline','get','ship','https://api.davidcyriltech.my.id/dare','cup','\x0aCongratulations\x20💖🍻','Unable\x20to\x20retrieve\x20an\x20insult.\x20Please\x20try\x20again\x20later.','417464WsFNPs','.dare','sendMessage','8150kQVfvO','random','20680JTRCEY','120363304325601080@newsletter','18738zxoSmI','Cool','status','mentionedJid','fancy','❌\x20An\x20error\x20occurred\x20while\x20fetching\x20the\x20truth\x20question.','truthquestion','😂\x20Get\x20a\x20random\x20joke','Hot','Character\x20of\x20@','*Insult:*\x20','love','\x20😄\x0a\x0a>\x20*©\x20ᴘᴏᴡᴇʀᴇᴅ\x20ʙʏ\x20Jᴀᴡᴀᴅ\x20TᴇᴄʜX*','❌\x20An\x20error\x20occurred\x20while\x20fetching\x20the\x20dare\x20question.','Generous','*🔍\x20Fetching\x20a\x20truth\x20question...*','Error\x20in\x20ship\x20command:','*SUBZERO\x20FANCY\x20FONTS*:\x0a\x0a'];_0x3f81=function(){return _0x24fffa;};return _0x3f81();}(function(_0x226971,_0x4acd63){const _0x41e173=_0x50c2,_0x2fd219=_0x226971();while(!![]){try{const _0x3dbae9=parseInt(_0x41e173(0x156))/0x1+-parseInt(_0x41e173(0x126))/0x2+parseInt(_0x41e173(0x15f))/0x3*(parseInt(_0x41e173(0x164))/0x4)+parseInt(_0x41e173(0x105))/0x5+-parseInt(_0x41e173(0x14d))/0x6*(parseInt(_0x41e173(0x116))/0x7)+-parseInt(_0x41e173(0x103))/0x8*(-parseInt(_0x41e173(0x12d))/0x9)+parseInt(_0x41e173(0x129))/0xa*(-parseInt(_0x41e173(0x12b))/0xb);if(_0x3dbae9===_0x4acd63)break;else _0x2fd219['push'](_0x2fd219['shift']());}catch(_0x19a293){_0x2fd219['push'](_0x2fd219['shift']());}}}(_0x3f81,0xabc38));function hi(){const _0x383ca6=_0x50c2;console[_0x383ca6(0x148)](_0x383ca6(0x142));}hi();const axios=require(_0x3529e0(0x117)),fetch=require(_0x3529e0(0x10b)),{cmd,commands}=require(_0x3529e0(0xff)),toM=_0x5a33c8=>'@'+_0x5a33c8[_0x3529e0(0x165)]('@')[0x0];cmd({'pattern':_0x3529e0(0x121),'alias':[_0x3529e0(0x123),_0x3529e0(0x138)],'desc':_0x3529e0(0x106),'react':'❤️','category':_0x3529e0(0x15d),'filename':__filename},async(_0x24a493,_0x4690d3,_0x347077,{from:_0x5dbe39,isGroup:_0x1373f2,groupMetadata:_0x47ffe8,reply:_0x4efe86})=>{const _0x454c5b=_0x3529e0;try{if(!_0x1373f2)return _0x4efe86(_0x454c5b(0x115));const _0x354ac7=_0x47ffe8[_0x454c5b(0x10d)]['map'](_0x2bdd8c=>_0x2bdd8c['id']);if(_0x354ac7['length']<0x2)return _0x4efe86('Not\x20enough\x20members\x20to\x20pair.');const _0x33ffdf=_0x347077[_0x454c5b(0x145)];let _0x11ce2a;do{_0x11ce2a=_0x354ac7[Math['floor'](Math[_0x454c5b(0x12a)]()*_0x354ac7['length'])];}while(_0x11ce2a===_0x33ffdf);const _0xf025b1=toM(_0x33ffdf)+'\x20❤️\x20'+toM(_0x11ce2a)+_0x454c5b(0x124);await _0x24a493[_0x454c5b(0x128)](_0x5dbe39,{'text':_0xf025b1,'contextInfo':{'mentionedJid':[_0x33ffdf,_0x11ce2a],'forwardingScore':0x3e7,'isForwarded':!![],'forwardedNewsletterMessageInfo':{'newsletterJid':_0x454c5b(0x12c),'newsletterName':_0x454c5b(0x107),'serverMessageId':0x8f}}});}catch(_0x184458){console['error'](_0x454c5b(0x13d),_0x184458),_0x4efe86('An\x20error\x20occurred\x20while\x20processing\x20the\x20command.\x20Please\x20try\x20again.');}}),cmd({'pattern':_0x3529e0(0x111),'desc':_0x3529e0(0x146),'category':_0x3529e0(0x15d),'react':'🤥'},async(_0x357ddd,_0x209b2e)=>{const _0x4728e5=_0x3529e0;try{let _0x1b8745=await axios['get'](_0x4728e5(0x119)),_0x1feaa5=_0x1b8745[_0x4728e5(0x141)];if(!_0x1feaa5||!_0x1feaa5[_0x4728e5(0x111)])return _0x209b2e[_0x4728e5(0x14e)](_0x4728e5(0x125));let _0x58cac5=_0x1feaa5[_0x4728e5(0x111)];return _0x209b2e[_0x4728e5(0x14e)](_0x4728e5(0x137)+_0x58cac5);}catch(_0x33ffe1){_0x209b2e[_0x4728e5(0x14e)](_0x4728e5(0x118)+(_0x33ffe1[_0x4728e5(0x163)]||_0x33ffe1));}}),cmd({'pattern':'joke','desc':_0x3529e0(0x134),'react':'🤣','category':_0x3529e0(0x15d),'filename':__filename},async(_0x317b52,_0x38f6ac,_0x28306f,{from:_0x32753d,q:_0x5e984a,reply:_0x5160e5})=>{const _0x289248=_0x3529e0;try{const _0x40b22c='https://official-joke-api.appspot.com/random_joke',_0x45dfb8=await axios[_0x289248(0x120)](_0x40b22c),_0x3db1e4=_0x45dfb8[_0x289248(0x141)],_0x2a61f1=_0x289248(0xfa)+_0x3db1e4['setup']+'*\x0a\x0a'+_0x3db1e4['punchline']+_0x289248(0x139);return _0x5160e5(_0x2a61f1);}catch(_0x26d2eb){return console[_0x289248(0x148)](_0x26d2eb),_0x5160e5(_0x289248(0x11b));}}),cmd({'pattern':_0x3529e0(0x10a),'desc':_0x3529e0(0x159),'react':'🧠','category':'fun','filename':__filename},async(_0x134419,_0x4d112e,_0x57e1c2,{from:_0x30aa8d,q:_0x2b6fba,reply:_0x4f98d2})=>{const _0x13bcfd=_0x3529e0;try{const _0x3c19f8='https://uselessfacts.jsph.pl/random.json?language=en',_0x2816ea=await axios[_0x13bcfd(0x120)](_0x3c19f8),_0x43241b=_0x2816ea[_0x13bcfd(0x141)]['text'],_0x21bf87=_0x13bcfd(0x143)+_0x43241b+_0x13bcfd(0x14f);return _0x4f98d2(_0x21bf87);}catch(_0x232707){return console[_0x13bcfd(0x148)](_0x232707),_0x4f98d2(_0x13bcfd(0xf9));}}),cmd({'pattern':_0x3529e0(0x131),'alias':[_0x3529e0(0xfe),_0x3529e0(0x15a)],'react':'✍️','desc':_0x3529e0(0x11a),'category':'tools','filename':__filename},async(_0x3bc416,_0x156957,_0x323e96,{from:_0x15025f,quoted:_0x136e18,body:_0xc4e90a,args:_0x3635bd,q:_0x551408,reply:_0x5f5a38})=>{const _0x156cc3=_0x3529e0;try{if(!_0x551408)return _0x5f5a38(_0x156cc3(0x10f));let _0x4af885=await axios['get'](_0x156cc3(0x11e)+encodeURIComponent(_0x551408)),_0x5cf408=_0x4af885[_0x156cc3(0x141)];if(!_0x5cf408[_0x156cc3(0x12f)])return _0x5f5a38('Error\x20fetching\x20fonts.\x20Please\x20try\x20again\x20later.');let _0xaed5d0=_0x5cf408[_0x156cc3(0xfd)]['map'](_0x596b4a=>'*'+_0x596b4a[_0x156cc3(0xfc)]+_0x156cc3(0x108)+_0x596b4a[_0x156cc3(0xfd)])[_0x156cc3(0x144)]('\x0a\x0a'),_0x2fc699=_0x156cc3(0x13e)+_0xaed5d0+'\x0a\x0a>\x20*©\x20Gᴇɴᴇʀᴀᴛᴇᴅ\x20Bʏ\x20SᴜʙZᴇʀᴏ*';await _0x3bc416['sendMessage'](_0x15025f,{'text':_0x2fc699,'contextInfo':{'mentionedJid':[_0x323e96['sender']],'forwardingScore':0x3e7,'isForwarded':!![],'forwardedNewsletterMessageInfo':{'newsletterJid':'120363304325601080@newsletter','newsletterName':_0x156cc3(0x150),'serverMessageId':0x8f}}},{'quoted':_0x156957});}catch(_0x35a8a2){console[_0x156cc3(0x113)](_0x35a8a2),_0x5f5a38(_0x156cc3(0x149));}}),cmd({'pattern':_0x3529e0(0x11f),'alias':[_0x3529e0(0x11d)],'desc':_0x3529e0(0x154),'react':'💬','category':'fun','filename':__filename},async(_0x6f502e,_0x24fcc9,_0x15ff3b,{from:_0x3c53cb,reply:_0x1e4fcd})=>{const _0x2c17f0=_0x3529e0;try{const _0x135d3d=await fetch('https://api.popcat.xyz/pickuplines');if(!_0x135d3d['ok'])throw new Error('API\x20request\x20failed\x20with\x20status\x20'+_0x135d3d['status']);const _0x66ddb5=await _0x135d3d[_0x2c17f0(0x162)]();console[_0x2c17f0(0x148)](_0x2c17f0(0x155),_0x66ddb5);const _0xc2ae7f='*Here\x27s\x20a\x20pickup\x20line\x20for\x20you:*\x0a\x0a\x22'+_0x66ddb5['pickupline']+'\x22\x0a\x0a>\x20*©\x20Dropped\x20By\x20Mr\x20Frank\x20OFC*';await _0x6f502e[_0x2c17f0(0x128)](_0x3c53cb,{'text':_0xc2ae7f},{'quoted':_0x15ff3b});}catch(_0x38c82f){console[_0x2c17f0(0x113)](_0x2c17f0(0x153),_0x38c82f),_0x1e4fcd(_0x2c17f0(0xfb));}}),cmd({'pattern':_0x3529e0(0x151),'alias':[_0x3529e0(0x10c)],'desc':_0x3529e0(0x10e),'react':'🔥','category':_0x3529e0(0x15d),'filename':__filename},async(_0x30d806,_0xefdbee,_0x522086,{from:_0x207a11,isGroup:_0x39b8a3,text:_0x26c657,reply:_0xb9d8b8})=>{const _0x1899e8=_0x3529e0;try{if(!_0x39b8a3)return _0xb9d8b8(_0x1899e8(0x115));const _0x161736=_0x522086[_0x1899e8(0x163)]['extendedTextMessage']?.[_0x1899e8(0x114)]?.[_0x1899e8(0x130)]?.[0x0];if(!_0x161736)return _0xb9d8b8(_0x1899e8(0x167));const _0x173f7e=[_0x1899e8(0x13f),_0x1899e8(0x13b),_0x1899e8(0x112),_0x1899e8(0x101),_0x1899e8(0x147),_0x1899e8(0xf8),'Simp','Kind',_0x1899e8(0x14c),'Pervert',_0x1899e8(0x12e),_0x1899e8(0x15b),_0x1899e8(0x104),'Sexy',_0x1899e8(0x135),_0x1899e8(0x160),'Cute'],_0xb61e2d=_0x173f7e[Math['floor'](Math[_0x1899e8(0x12a)]()*_0x173f7e['length'])],_0x51ba9f=_0x1899e8(0x136)+_0x161736[_0x1899e8(0x165)]('@')[0x0]+_0x1899e8(0x14b)+_0xb61e2d+_0x1899e8(0x152);await _0x30d806[_0x1899e8(0x128)](_0x207a11,{'text':_0x51ba9f,'mentions':[_0x161736]},{'quoted':_0x522086});}catch(_0x1da910){console[_0x1899e8(0x113)](_0x1899e8(0x14a),_0x1da910),_0xb9d8b8('An\x20error\x20occurred\x20while\x20processing\x20the\x20command.\x20Please\x20try\x20again.');}}),cmd({'pattern':_0x3529e0(0x100),'alias':['t',_0x3529e0(0x133)],'react':'❔','desc':'Get\x20a\x20random\x20truth\x20question.','category':_0x3529e0(0x15d),'use':_0x3529e0(0x161),'filename':__filename},async(_0x455177,_0x536aa8,_0x737db3,{from:_0x4295da,args:_0x41a582,reply:_0x316147})=>{const _0x36ea92=_0x3529e0;try{_0x316147(_0x36ea92(0x13c));const _0x1d4d20=_0x36ea92(0x15e),_0x582d89=await axios[_0x36ea92(0x120)](_0x1d4d20);if(!_0x582d89[_0x36ea92(0x141)]||!_0x582d89[_0x36ea92(0x141)][_0x36ea92(0x110)])return _0x316147(_0x36ea92(0x158));const _0x31dfa3=_0x582d89[_0x36ea92(0x141)][_0x36ea92(0x166)];_0x31dfa3&&_0x316147(_0x36ea92(0x109)+_0x31dfa3);}catch(_0x4f56dd){console['error'](_0x4f56dd),_0x316147(_0x36ea92(0x132));}}),cmd({'pattern':_0x3529e0(0x15c),'alias':['d',_0x3529e0(0x157)],'react':'🔥','desc':_0x3529e0(0x140),'category':'fun','use':_0x3529e0(0x127),'filename':__filename},async(_0x208d71,_0xfd2c1e,_0xb724c4,{from:_0x3ded8b,args:_0x1b8ece,reply:_0x4cdc3e})=>{const _0x2709b7=_0x3529e0;try{_0x4cdc3e(_0x2709b7(0x11c));const _0x5ae98f=_0x2709b7(0x122),_0x3ca5e7=await axios['get'](_0x5ae98f);if(!_0x3ca5e7[_0x2709b7(0x141)]||!_0x3ca5e7[_0x2709b7(0x141)][_0x2709b7(0x110)])return _0x4cdc3e('❌\x20Failed\x20to\x20fetch\x20a\x20dare\x20question.\x20Please\x20try\x20again\x20later.');const _0x3a8d5a=_0x3ca5e7[_0x2709b7(0x141)][_0x2709b7(0x166)];_0x3a8d5a&&_0x4cdc3e(_0x2709b7(0x102)+_0x3a8d5a);}catch(_0x2d8cb9){console['error'](_0x2d8cb9),_0x4cdc3e(_0x2709b7(0x13a));}}); \ No newline at end of file diff --git a/plugins/gc-antitools.js b/plugins/gc-antitools.js new file mode 100644 index 0000000000000000000000000000000000000000..a48329ae720ff659e05200a3feaf1b591f4ee9b6 --- /dev/null +++ b/plugins/gc-antitools.js @@ -0,0 +1,220 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +function _0x41a2(_0x3363fd,_0x3b6c08){const _0x2789e2=_0x2789();return _0x41a2=function(_0x41a2c8,_0x341585){_0x41a2c8=_0x41a2c8-0xd0;let _0x7093d1=_0x2789e2[_0x41a2c8];return _0x7093d1;},_0x41a2(_0x3363fd,_0x3b6c08);}const _0x2626da=_0x41a2;(function(_0x484360,_0xeaa57){const _0x195567=_0x41a2,_0x456fc0=_0x484360();while(!![]){try{const _0x29e2b2=-parseInt(_0x195567(0xf1))/0x1*(parseInt(_0x195567(0xdd))/0x2)+-parseInt(_0x195567(0xf3))/0x3+parseInt(_0x195567(0xd0))/0x4*(parseInt(_0x195567(0xd3))/0x5)+-parseInt(_0x195567(0xea))/0x6*(-parseInt(_0x195567(0xd1))/0x7)+parseInt(_0x195567(0xd5))/0x8*(-parseInt(_0x195567(0xec))/0x9)+-parseInt(_0x195567(0xdf))/0xa+-parseInt(_0x195567(0xda))/0xb*(-parseInt(_0x195567(0xe7))/0xc);if(_0x29e2b2===_0xeaa57)break;else _0x456fc0['push'](_0x456fc0['shift']());}catch(_0x4fea7f){_0x456fc0['push'](_0x456fc0['shift']());}}}(_0x2789,0xcb99f));function hi(){const _0x2a8fc6=_0x41a2;console[_0x2a8fc6(0xe9)]('Hello\x20World!');}hi();const {cmd}=require(_0x2626da(0xe3)),config=require(_0x2626da(0xd8));function _0x2789(){const _0x298afd=['ANTI_BAD_WORD','11760eElaxd','body','4416657uxNgqr','52KNLEfj','40159VjOyqY','ANTI_LINK','112415YlusgV','some','3391064HYLSae','sendMessage','mia','../config','includes','10485211vDihAL','ponnaya','hutto','200DiPnJl','xxx','15882430WWckSr','true','test','key','../command','split','pussy','sex','60Rveplp','An\x20error\x20occurred\x20while\x20processing\x20the\x20message.','log','456xeflfk','\x20has\x20been\x20removed.\x20🚫','9ABPNOq','wtf','🚫\x20⚠️BAD\x20WORDS\x20NOT\x20ALLOWED⚠️\x20🚫','remove'];_0x2789=function(){return _0x298afd;};return _0x2789();}cmd({'on':_0x2626da(0xf2)},async(_0x29e7b2,_0x428e2c,_0x40de91,{from:_0x1b42b1,body:_0x1b8105,isGroup:_0x301dc1,isAdmins:_0x245384,isBotAdmins:_0x2b918d,reply:_0x148341,sender:_0x3c7447})=>{const _0x1133da=_0x2626da;try{const _0x42c924=[_0x1133da(0xed),_0x1133da(0xd7),_0x1133da(0xde),'fuck',_0x1133da(0xe6),'ass',_0x1133da(0xe5),_0x1133da(0xdb),_0x1133da(0xdc)];if(!_0x301dc1||_0x245384||!_0x2b918d)return;const _0x87044=_0x1b8105['toLowerCase'](),_0x277ec4=_0x42c924[_0x1133da(0xd4)](_0xf52b9e=>_0x87044[_0x1133da(0xd9)](_0xf52b9e));_0x277ec4&config[_0x1133da(0xf0)]===_0x1133da(0xe0)&&(await _0x29e7b2[_0x1133da(0xd6)](_0x1b42b1,{'delete':_0x428e2c[_0x1133da(0xe2)]},{'quoted':_0x428e2c}),await _0x29e7b2[_0x1133da(0xd6)](_0x1b42b1,{'text':_0x1133da(0xee)},{'quoted':_0x428e2c}));}catch(_0x2ea503){console['error'](_0x2ea503),_0x148341(_0x1133da(0xe8));}});const linkPatterns=[/https?:\/\/(?:chat\.whatsapp\.com|wa\.me)\/\S+/gi,/^https?:\/\/(www\.)?whatsapp\.com\/channel\/([a-zA-Z0-9_-]+)$/,/wa\.me\/\S+/gi,/https?:\/\/(?:t\.me|telegram\.me)\/\S+/gi,/https?:\/\/(?:www\.)?youtube\.com\/\S+/gi,/https?:\/\/youtu\.be\/\S+/gi,/https?:\/\/(?:www\.)?facebook\.com\/\S+/gi,/https?:\/\/fb\.me\/\S+/gi,/https?:\/\/(?:www\.)?instagram\.com\/\S+/gi,/https?:\/\/(?:www\.)?twitter\.com\/\S+/gi,/https?:\/\/(?:www\.)?tiktok\.com\/\S+/gi,/https?:\/\/(?:www\.)?linkedin\.com\/\S+/gi,/https?:\/\/(?:www\.)?snapchat\.com\/\S+/gi,/https?:\/\/(?:www\.)?pinterest\.com\/\S+/gi,/https?:\/\/(?:www\.)?reddit\.com\/\S+/gi,/https?:\/\/ngl\/\S+/gi,/https?:\/\/(?:www\.)?discord\.com\/\S+/gi,/https?:\/\/(?:www\.)?twitch\.tv\/\S+/gi,/https?:\/\/(?:www\.)?vimeo\.com\/\S+/gi,/https?:\/\/(?:www\.)?dailymotion\.com\/\S+/gi,/https?:\/\/(?:www\.)?medium\.com\/\S+/gi];cmd({'on':'body'},async(_0x3db47a,_0x572cfa,_0x5b8702,{from:_0x33e8f0,body:_0x2ed5e1,sender:_0x4c2bcf,isGroup:_0x4f06c4,isAdmins:_0x212aa8,isBotAdmins:_0x195837,reply:_0x218c22})=>{const _0x369f52=_0x2626da;try{if(!_0x4f06c4||_0x212aa8||!_0x195837)return;const _0x2adf2b=linkPatterns[_0x369f52(0xd4)](_0x2fe573=>_0x2fe573[_0x369f52(0xe1)](_0x2ed5e1));_0x2adf2b&&config[_0x369f52(0xd2)]===_0x369f52(0xe0)&&(await _0x3db47a[_0x369f52(0xd6)](_0x33e8f0,{'delete':_0x572cfa['key']},{'quoted':_0x572cfa}),await _0x3db47a[_0x369f52(0xd6)](_0x33e8f0,{'text':'⚠️\x20Links\x20are\x20not\x20allowed\x20in\x20this\x20group.\x0a@'+_0x4c2bcf[_0x369f52(0xe4)]('@')[0x0]+_0x369f52(0xeb),'mentions':[_0x4c2bcf]},{'quoted':_0x572cfa}),await _0x3db47a['groupParticipantsUpdate'](_0x33e8f0,[_0x4c2bcf],_0x369f52(0xef)));}catch(_0x41254d){console['error'](_0x41254d),_0x218c22(_0x369f52(0xe8));}}); \ No newline at end of file diff --git a/plugins/gc-delete.js b/plugins/gc-delete.js new file mode 100644 index 0000000000000000000000000000000000000000..ad068039fcc877749b37a4f5650b605accf7cfd9 --- /dev/null +++ b/plugins/gc-delete.js @@ -0,0 +1,249 @@ + +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const config = require('../config') +const { cmd, commands } = require('../command') + +cmd({ +pattern: "delete", +react: "❌", +alias: ["del"], +desc: "delete message", +category: "group", +use: '.del', +filename: __filename +}, +async(conn, mek, m,{from, l, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, isItzcp, groupAdmins, isBotAdmins, isAdmins, reply}) => { +if (!isOwner || !isAdmins) return; +try{ +if (!m.quoted) return reply(mg.notextfordel); +const key = { + remoteJid: m.chat, + fromMe: false, + id: m.quoted.id, + participant: m.quoted.sender + } + await conn.sendMessage(m.chat, { delete: key }) +} catch(e) { +console.log(e); +reply('SubZero Delete Successful..👨‍💻✅') +} +}) diff --git a/plugins/gc-kickall.js b/plugins/gc-kickall.js new file mode 100644 index 0000000000000000000000000000000000000000..9a2950f47eb811185fe2f251642889bdd177cbba --- /dev/null +++ b/plugins/gc-kickall.js @@ -0,0 +1,221 @@ + +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const _0x4d9384=_0x124a;(function(_0x4a5a4d,_0x5cc5d4){const _0x2d6d82=_0x124a,_0x31f3a3=_0x4a5a4d();while(!![]){try{const _0x5170e8=-parseInt(_0x2d6d82(0x183))/0x1*(-parseInt(_0x2d6d82(0x173))/0x2)+parseInt(_0x2d6d82(0x171))/0x3*(-parseInt(_0x2d6d82(0x16b))/0x4)+parseInt(_0x2d6d82(0x18c))/0x5*(-parseInt(_0x2d6d82(0x16c))/0x6)+parseInt(_0x2d6d82(0x187))/0x7+parseInt(_0x2d6d82(0x17a))/0x8+parseInt(_0x2d6d82(0x194))/0x9+parseInt(_0x2d6d82(0x16d))/0xa*(parseInt(_0x2d6d82(0x191))/0xb);if(_0x5170e8===_0x5cc5d4)break;else _0x31f3a3['push'](_0x31f3a3['shift']());}catch(_0x522bf0){_0x31f3a3['push'](_0x31f3a3['shift']());}}}(_0x4ae3,0x202b6));function hi(){const _0x5db7f8=_0x124a;console[_0x5db7f8(0x199)]('Hello\x20World!');}function _0x124a(_0x507b09,_0x366e45){const _0x4ae3ab=_0x4ae3();return _0x124a=function(_0x124ad0,_0x11c3e1){_0x124ad0=_0x124ad0-0x168;let _0x42fae3=_0x4ae3ab[_0x124ad0];return _0x42fae3;},_0x124a(_0x507b09,_0x366e45);}hi();const {cmd}=require(_0x4d9384(0x18a)),sleep=_0xecf6c2=>new Promise(_0x3c3251=>setTimeout(_0x3c3251,_0xecf6c2));cmd({'pattern':_0x4d9384(0x16a),'alias':[_0x4d9384(0x175),'endgc',_0x4d9384(0x168)],'desc':_0x4d9384(0x16f),'react':'🎉','category':'group','filename':__filename},async(_0x314de4,_0x2ccb20,_0x194ba0,{from:_0x4ed2fb,groupMetadata:_0x4d975a,groupAdmins:_0x308d5b,isBotAdmins:_0x538199,senderNumber:_0x2f38d5,reply:_0x11bb58,isGroup:_0x4264ae})=>{const _0x5c2c55=_0x4d9384;try{if(!_0x4264ae)return _0x11bb58(_0x5c2c55(0x18b));const _0x175ca3=_0x314de4[_0x5c2c55(0x198)]['id'][_0x5c2c55(0x19d)](':')[0x0];if(_0x2f38d5!==_0x175ca3)return _0x11bb58(_0x5c2c55(0x18d));if(!_0x538199)return _0x11bb58('I\x20need\x20to\x20be\x20an\x20admin\x20to\x20execute\x20this\x20command.');const _0x28cdc9=_0x4d975a['participants'],_0x5e08a5=_0x28cdc9[_0x5c2c55(0x17d)](_0x6914ee=>!_0x308d5b[_0x5c2c55(0x185)](_0x6914ee['id']));if(_0x5e08a5[_0x5c2c55(0x172)]===0x0)return _0x11bb58(_0x5c2c55(0x180));_0x11bb58(_0x5c2c55(0x17c)+_0x5e08a5['length']+_0x5c2c55(0x179));for(let _0x159d74 of _0x5e08a5){try{await _0x314de4['groupParticipantsUpdate'](_0x4ed2fb,[_0x159d74['id']],_0x5c2c55(0x169)),await sleep(0x7d0);}catch(_0x10982b){console['error']('Failed\x20to\x20remove\x20'+_0x159d74['id']+':',_0x10982b);}}_0x11bb58(_0x5c2c55(0x178));}catch(_0x1f1c91){console[_0x5c2c55(0x19b)]('Error\x20removing\x20non-admin\x20users:',_0x1f1c91),_0x11bb58(_0x5c2c55(0x176));}}),cmd({'pattern':_0x4d9384(0x17e),'alias':['kickadmins',_0x4d9384(0x174),'deladmins'],'desc':_0x4d9384(0x19a),'react':'🎉','category':_0x4d9384(0x170),'filename':__filename},async(_0x2e3360,_0x5869eb,_0x466151,{from:_0x250c15,isGroup:_0xa13087,senderNumber:_0xe0b9df,groupMetadata:_0x5142d6,groupAdmins:_0x3065f8,isBotAdmins:_0x3a21e2,reply:_0x54c961})=>{const _0x220a0c=_0x4d9384;try{if(!_0xa13087)return _0x54c961(_0x220a0c(0x18b));const _0x7360c9=_0x2e3360['user']['id']['split'](':')[0x0];if(_0xe0b9df!==_0x7360c9)return _0x54c961(_0x220a0c(0x18d));if(!_0x3a21e2)return _0x54c961(_0x220a0c(0x196));const _0x3ab94c=_0x5142d6[_0x220a0c(0x182)],_0x48f09c=_0x3ab94c[_0x220a0c(0x17d)](_0x2a5176=>_0x3065f8[_0x220a0c(0x185)](_0x2a5176['id'])&&_0x2a5176['id']!==_0x2e3360[_0x220a0c(0x198)]['id']&&_0x2a5176['id']!==_0x7360c9+_0x220a0c(0x197));if(_0x48f09c[_0x220a0c(0x172)]===0x0)return _0x54c961(_0x220a0c(0x16e));_0x54c961('Starting\x20to\x20remove\x20'+_0x48f09c[_0x220a0c(0x172)]+_0x220a0c(0x188));for(let _0x37d81a of _0x48f09c){try{await _0x2e3360['groupParticipantsUpdate'](_0x250c15,[_0x37d81a['id']],_0x220a0c(0x169)),await sleep(0x7d0);}catch(_0x3c0680){console[_0x220a0c(0x19b)](_0x220a0c(0x19c)+_0x37d81a['id']+':',_0x3c0680);}}_0x54c961(_0x220a0c(0x190));}catch(_0x1e4a11){console[_0x220a0c(0x19b)](_0x220a0c(0x17f),_0x1e4a11),_0x54c961(_0x220a0c(0x181));}}),cmd({'pattern':_0x4d9384(0x18e),'alias':[_0x4d9384(0x186),_0x4d9384(0x17b),_0x4d9384(0x193)],'desc':_0x4d9384(0x192),'react':'🎉','category':_0x4d9384(0x170),'filename':__filename},async(_0x283023,_0x52add4,_0x47ad54,{from:_0x585974,isGroup:_0x2b3000,senderNumber:_0x34b349,groupMetadata:_0x3c78e1,isBotAdmins:_0x1f374,reply:_0x237042})=>{const _0x4ab676=_0x4d9384;try{if(!_0x2b3000)return _0x237042(_0x4ab676(0x18b));const _0x26bfae=_0x283023['user']['id'][_0x4ab676(0x19d)](':')[0x0];if(_0x34b349!==_0x26bfae)return _0x237042(_0x4ab676(0x18d));if(!_0x1f374)return _0x237042(_0x4ab676(0x196));const _0x3cf552=_0x3c78e1[_0x4ab676(0x182)];if(_0x3cf552[_0x4ab676(0x172)]===0x0)return _0x237042(_0x4ab676(0x184));const _0x972b0a=_0x3cf552[_0x4ab676(0x17d)](_0x272c30=>_0x272c30['id']!==_0x283023['user']['id']&&_0x272c30['id']!==_0x26bfae+_0x4ab676(0x197));if(_0x972b0a[_0x4ab676(0x172)]===0x0)return _0x237042('No\x20members\x20to\x20remove\x20after\x20excluding\x20the\x20bot\x20and\x20bot\x20owner.');_0x237042(_0x4ab676(0x17c)+_0x972b0a[_0x4ab676(0x172)]+'\x20members,\x20excluding\x20the\x20bot\x20and\x20bot\x20owner...');for(let _0x328ca6 of _0x972b0a){try{await _0x283023[_0x4ab676(0x18f)](_0x585974,[_0x328ca6['id']],_0x4ab676(0x169)),await sleep(0x7d0);}catch(_0x1eeea9){console[_0x4ab676(0x19b)](_0x4ab676(0x19c)+_0x328ca6['id']+':',_0x1eeea9);}}_0x237042(_0x4ab676(0x195));}catch(_0x4178b9){console[_0x4ab676(0x19b)](_0x4ab676(0x189),_0x4178b9),_0x237042(_0x4ab676(0x177));}});function _0x4ae3(){const _0x21f596=['Remove\x20all\x20admin\x20members\x20from\x20the\x20group,\x20excluding\x20the\x20bot\x20and\x20bot\x20owner.','error','Failed\x20to\x20remove\x20','split','endgroup','remove','removemembers','4mgKdcJ','6mdoaNp','20OYOLwg','There\x20are\x20no\x20admin\x20members\x20to\x20remove.','Remove\x20all\x20non-admin\x20members\x20from\x20the\x20group.','group','631212XrPrbt','length','55652AmcpLK','kickall3','kickall','An\x20error\x20occurred\x20while\x20trying\x20to\x20remove\x20non-admin\x20members.\x20Please\x20try\x20again.','An\x20error\x20occurred\x20while\x20trying\x20to\x20remove\x20members.\x20Please\x20try\x20again.','Successfully\x20removed\x20all\x20non-admin\x20members\x20from\x20the\x20group.','\x20non-admin\x20members...','987016meHSNZ','endgc2','Starting\x20to\x20remove\x20','filter','removeadmins','Error\x20removing\x20admins:','There\x20are\x20no\x20non-admin\x20members\x20to\x20remove.','An\x20error\x20occurred\x20while\x20trying\x20to\x20remove\x20admins.\x20Please\x20try\x20again.','participants','4yKVzmq','The\x20group\x20has\x20no\x20members\x20to\x20remove.','includes','kickall2','892367Gyxikh','\x20admin\x20members,\x20excluding\x20the\x20bot\x20and\x20bot\x20owner...','Error\x20removing\x20members:','../command','This\x20command\x20can\x20only\x20be\x20used\x20in\x20groups.','358740xwJxjc','Only\x20the\x20bot\x20owner\x20can\x20use\x20this\x20command.','removeall2','groupParticipantsUpdate','Successfully\x20removed\x20all\x20admin\x20members\x20from\x20the\x20group,\x20excluding\x20the\x20bot\x20and\x20bot\x20owner.','112596tTpnFU','Remove\x20all\x20members\x20and\x20admins\x20from\x20the\x20group,\x20excluding\x20the\x20bot\x20and\x20bot\x20owner.','endgroup2','281556rVUTgS','Successfully\x20removed\x20all\x20members,\x20excluding\x20the\x20bot\x20and\x20bot\x20owner,\x20from\x20the\x20group.','I\x20need\x20to\x20be\x20an\x20admin\x20to\x20execute\x20this\x20command.','@s.whatsapp.net','user','log'];_0x4ae3=function(){return _0x21f596;};return _0x4ae3();} \ No newline at end of file diff --git a/plugins/gc-period.js b/plugins/gc-period.js new file mode 100644 index 0000000000000000000000000000000000000000..8093e72004990f5d523071964e1055d5a138fcd0 --- /dev/null +++ b/plugins/gc-period.js @@ -0,0 +1,708 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const config = require("../config"); +const { + cmd, + commands +} = require("../command"); +cmd({ + 'pattern': "opentime", + 'react': '🔖', + 'desc': "To open group to a time", + 'category': "group", + 'use': ".opentime", + 'filename': __filename +}, async (_0x34b3eb, _0x420019, _0x39b627, { + from: _0x1979f2, + prefix: _0x7a8f6f, + l: _0x25c44a, + quoted: _0x379179, + body: _0x681d99, + isCmd: _0x4f96ba, + command: _0x3c87cf, + args: _0x3aae58, + q: _0x29755d, + isGroup: _0x18986c, + sender: _0x1eeef2, + senderNumber: _0x5e7c65, + botNumber2: _0x5dc97f, + botNumber: _0x7cbf18, + pushname: _0x10e0d4, + isMe: _0x40fd80, + isOwner: _0x34432b, + groupMetadata: _0x53257c, + groupName: _0x582d96, + participants: _0x5b6051, + groupAdmins: _0x507027, + isBotAdmins: _0x480a94, + isAdmins: _0x186a74, + reply: _0x515443 +}) => { + try { + if (!_0x18986c) { + return _0x515443(ONLGROUP); + } + if (!_0x186a74) { + return _0x515443(ADMIN); + } + if (_0x3aae58[0x1] == "second") { + var _0x57d309 = _0x3aae58[0x0] * "1000"; + } else { + if (_0x3aae58[0x1] == "minute") { + var _0x57d309 = _0x3aae58[0x0] * "60000"; + } else { + if (_0x3aae58[0x1] == 'hour') { + var _0x57d309 = _0x3aae58[0x0] * "3600000"; + } else { + if (_0x3aae58[0x1] == 'day') { + var _0x57d309 = _0x3aae58[0x0] * "86400000"; + } else { + return _0x515443("*select:*\nsecond\nminute\nhour\n\n*example*\n10 second"); + } + } + } + } + _0x515443("Open time " + _0x29755d + " starting from now"); + setTimeout(() => { + _0x34b3eb.groupSettingUpdate(_0x1979f2, "not_announcement"); + _0x515443("> *🔔 Group Chat Automatically Opened By SubZero Bot*"); + }, _0x57d309); + await _0x34b3eb.sendMessage(_0x1979f2, { + 'react': { + 'text': '✅', + 'key': _0x420019.key + } + }); + } catch (_0x36d0c6) { + _0x515443("*Error !!*"); + _0x25c44a(_0x36d0c6); + } +}); +cmd({ + 'pattern': "closetime", + 'react': '🔖', + 'desc': "To close group to a time", + 'category': "group", + 'use': ".closstime", + 'filename': __filename +}, async (_0x33bbc7, _0x1f2130, _0x578b2f, { + from: _0x152d4d, + prefix: _0xb42f24, + l: _0xbe8dbc, + quoted: _0x59c39b, + body: _0x40ea43, + isCmd: _0x2826d4, + command: _0x25218c, + args: _0x5b0123, + q: _0x490959, + isGroup: _0x369c33, + sender: _0x536754, + senderNumber: _0x226ae6, + botNumber2: _0x262160, + botNumber: _0x5de73e, + pushname: _0x25e051, + isMe: _0x5a41d6, + isOwner: _0x567b92, + groupMetadata: _0x3a3520, + groupName: _0xdac3e3, + participants: _0x29c2b6, + groupAdmins: _0x1d43ad, + isBotAdmins: _0x526454, + isAdmins: _0x526c9a, + reply: _0x5c514e +}) => { + try { + if (!_0x369c33) { + return _0x5c514e(ONLGROUP); + } + if (!_0x526c9a) { + return _0x5c514e(ADMIN); + } + if (_0x5b0123[0x1] == 'second') { + var _0x4b2fe4 = _0x5b0123[0x0] * "1000"; + } else { + if (_0x5b0123[0x1] == "minute") { + var _0x4b2fe4 = _0x5b0123[0x0] * "60000"; + } else { + if (_0x5b0123[0x1] == "hour") { + var _0x4b2fe4 = _0x5b0123[0x0] * "3600000"; + } else { + if (_0x5b0123[0x1] == "day") { + var _0x4b2fe4 = _0x5b0123[0x0] * "86400000"; + } else { + return _0x5c514e("*select:*\nsecond\nminute\nhour\n\n*Example*\n10 second"); + } + } + } + } + _0x5c514e("Close time " + _0x490959 + " starting from now"); + setTimeout(() => { + _0x33bbc7.groupSettingUpdate(_0x152d4d, "announcement"); + _0x5c514e("> *🔕 Group Chat automatically closed by SubZero*"); + }, _0x4b2fe4); + await _0x33bbc7.sendMessage(_0x152d4d, { + 'react': { + 'text': '✅', + 'key': _0x1f2130.key + } + }); + } catch (_0x4094cc) { + _0x5c514e("*Error !!*"); + _0xbe8dbc(_0x4094cc); + } +}); +cmd({ + 'pattern': 'tagadmin', + 'alais': ["tagadmins"], + 'react': '🙀', + 'desc': "Tags all the admins in the group.", + 'category': 'group', + 'filename': __filename +}, async (_0x2180ae, _0x41ac32, _0x2e9138, { + from: _0x2616a, + prefix: _0xa4be17, + l: _0x11b560, + quoted: _0x2613b8, + body: _0x467a99, + isCmd: _0x38af41, + command: _0x159cc0, + args: _0x206a87, + q: _0x5a7094, + isGroup: _0x3fcba9, + sender: _0x2d33ad, + senderNumber: _0x2272d0, + botNumber2: _0x27bc6f, + botNumber: _0x428f22, + pushname: _0x1aed08, + isMe: _0x336ec0, + isOwner: _0x331a4d, + groupMetadata: _0x57c62a, + groupName: _0x3231a9, + participants: _0xe699, + groupAdmins: _0x53ccdc, + isBotAdmins: _0x4aa8ee, + isAdmins: _0x575128, + reply: _0x35f506 +}) => { + try { + if (!_0x3fcba9) { + return _0x35f506("This command is only for groups."); + } + if (!_0x575128) { + return _0x35f506("Yah Command Srf Admins Ky Lya Hai !."); + } + if (_0x53ccdc.length === 0x0) { + return _0x35f506("There are no admins in this group."); + } + let _0x14ad67 = "*TAGGING ALL ADMINS IN THE GROUP 🔳:*\n\n"; + for (let _0x166714 of _0x53ccdc) { + _0x14ad67 += '@' + _0x166714.split('@')[0x0] + "\n"; + } + await _0x2180ae.sendMessage(_0x2616a, { + 'text': _0x14ad67, + 'mentions': _0x53ccdc + }, { + 'quoted': _0x41ac32 + }); + } catch (_0x2a7fa0) { + console.error("Error tagging admins:", _0x2a7fa0); + _0x35f506("you are not an admin."); + } +}); +cmd({ + 'pattern': "mute", + 'alias': ["lock"], + 'react': '🔒', + 'desc': "mute group.", + 'category': "group", + 'filename': __filename +}, async (_0x188ee4, _0x2926d7, _0x5a0744, { + from: _0x1446bd, + l: _0x15ae12, + quoted: _0x11cce4, + body: _0x3901bf, + isCmd: _0x37eecc, + command: _0x2ed5f9, + args: _0x3b6b0a, + q: _0x7468c5, + isGroup: _0x3aa6ce, + sender: _0x1e204d, + senderNumber: _0x683c2e, + botNumber2: _0x26b4e2, + botNumber: _0x2ddb86, + pushname: _0x5c4eea, + isMe: _0x33a6e7, + isOwner: _0x39f686, + groupMetadata: _0x5aedcf, + groupName: _0x1026a0, + participants: _0x5e633e, + isItzcp: _0x4d966c, + groupAdmins: _0xa75e9a, + isBotAdmins: _0x5cd7fb, + isAdmins: _0x32b120, + reply: _0x4efac7 +}) => { + try { + if (!_0x39f686 || !_0x32b120) { + return; + } + if (!_0x5a0744.isGroup) { + return _0x4efac7(mg.onlygroup); + } + if (!_0x5cd7fb) { + return _0x4efac7(mg.needbotadmins); + } + await _0x188ee4.groupSettingUpdate(_0x5a0744.chat, "announcement"); + const _0x23264b = await _0x188ee4.sendMessage(_0x5a0744.chat, { + 'text': "*GROUP CHAT MUTED BY SUBZERO-MD* 🔒" + }, { + 'quoted': _0x2926d7 + }); + return await _0x188ee4.sendMessage(_0x5a0744.chat, { + 'react': { + 'text': '🔒', + 'key': _0x23264b.key + } + }); + } catch (_0x3ea7c2) { + console.log(_0x3ea7c2); + _0x4efac7("*Muja Admin Kar Pher Use Kar Commands ❗👻*"); + } +}); +cmd({ + 'pattern': "unmute", + 'alias': ["unlock"], + 'react': '🔓', + 'desc': "unmute group.", + 'category': "group", + 'filename': __filename +}, async (_0x298fe1, _0x116d41, _0x2602ac, { + from: _0x15600e, + l: _0x5ba8bd, + quoted: _0x30a624, + body: _0x314dcd, + isCmd: _0x2536d0, + command: _0x3d9eb1, + args: _0x19ba22, + q: _0x3f0c3c, + isGroup: _0x4e57af, + sender: _0x597d49, + senderNumber: _0xda3f5a, + botNumber2: _0x2f023e, + botNumber: _0x1dd6f9, + pushname: _0x5320d4, + isMe: _0x48a143, + isOwner: _0x2cda60, + groupMetadata: _0x130d26, + groupName: _0x4593b5, + participants: _0x166fbf, + isItzcp: _0x310852, + groupAdmins: _0x2154a4, + isBotAdmins: _0x16ccf1, + isAdmins: _0x118e3c, + reply: _0x33fff7 +}) => { + try { + if (!_0x2cda60 || !_0x118e3c) { + return; + } + if (!_0x2602ac.isGroup) { + return _0x33fff7(mg.onlygroup); + } + if (!_0x16ccf1) { + return _0x33fff7(mg.needbotadmins); + } + await _0x298fe1.groupSettingUpdate(_0x2602ac.chat, "not_announcement"); + const _0x74b371 = await _0x298fe1.sendMessage(_0x2602ac.chat, { + 'text': "*GROUP CHAT UNMUTED BY SUBZERO-MD* 🔒" + }, { + 'quoted': _0x116d41 + }); + return await _0x298fe1.sendMessage(_0x2602ac.chat, { + 'react': { + 'text': '🔒', + 'key': _0x74b371.key + } + }); + } catch (_0x38466f) { + console.log(_0x38466f); + _0x33fff7("*Muja Admin Bana Phr Commands Kar❗👻*"); + } +}); +cmd({ + 'pattern': 'add', + 'alias': ["aja"], + 'react': '➕', + 'desc': "Adds a user to the group.", + 'category': 'group', + 'filename': __filename, + 'use': '' +}, async (_0x29bcee, _0x5d8ef6, _0x56566a, { + from: _0x2d1d85, + quoted: _0x3437b0, + body: _0x212da3, + isCmd: _0x113379, + command: _0x4b5bf0, + args: _0xc1281a, + q: _0x58d6f4, + isGroup: _0x4e0892, + sender: _0xf93582, + senderNumber: _0x95b29f, + botNumber2: _0x558f84, + botNumber: _0x3571cd, + pushname: _0x19af4b, + isMe: _0x3ea7c4, + isOwner: _0x5c85af, + groupMetadata: _0x48378c, + groupName: _0x3827d6, + participants: _0x57e605, + groupAdmins: _0x4ddcc9, + isBotAdmins: _0x33dfec, + isAdmins: _0x4424ae, + reply: _0x227b1d +}) => { + try { + if (!_0x56566a.isGroup) { + return _0x227b1d("This command is only for groups."); + } + if (!_0x33dfec) { + return _0x227b1d("I need admin privileges to add users."); + } + if (!_0x58d6f4 || isNaN(_0x58d6f4)) { + return _0x227b1d("Please provide a valid phone number to add."); + } + const _0x362df9 = _0x58d6f4 + "@s.whatsapp.net"; + await _0x29bcee.groupParticipantsUpdate(_0x56566a.chat, [_0x362df9], "add"); + _0x227b1d("User " + _0x58d6f4 + " has been added to the group."); + } catch (_0x3f7309) { + console.error("Error adding user:", _0x3f7309); + _0x227b1d("An error occurred while adding the user. Please make sure the number is correct and they are not already in the group."); + } +}); +cmd({ + 'pattern': "setgoodbye", + 'desc': "Set the goodbye message for the group.", + 'category': "group", + 'react': '👋', + 'filename': __filename +}, async (_0x51b23f, _0x21cb6a, _0x275d83, { + from: _0x3ffb4d, + quoted: _0x3f3f17, + body: _0x4550f2, + isCmd: _0x28286e, + command: _0x97137b, + args: _0x273812, + q: _0x5ebbc8, + isGroup: _0xb2710d, + sender: _0x421d81, + senderNumber: _0x16e90c, + botNumber2: _0x2369c2, + botNumber: _0x555438, + pushname: _0x4c8d4a, + isMe: _0x522db1, + isOwner: _0x1db872, + groupMetadata: _0x212b3d, + groupName: _0x3d71b8, + participants: _0x4da364, + groupAdmins: _0x1a2b40, + isBotAdmins: _0xf475c2, + isAdmins: _0x533cde, + reply: _0x4beca6 +}) => { + try { + if (!_0xb2710d) { + return _0x4beca6("This command can only be used in a group."); + } + if (!_0xf475c2) { + return _0x4beca6("Bot must be an admin to use this command."); + } + if (!_0x533cde) { + return _0x4beca6("You must be an admin to use this command."); + } + if (!_0x5ebbc8) { + return _0x4beca6("Please provide a goodbye message."); + } + await _0x51b23f.sendMessage(_0x3ffb4d, { + 'image': { + 'url': config.ALIVE_IMG + }, + 'caption': _0x5ebbc8 + }); + await _0x4beca6("Goodbye message has been set."); + } catch (_0xbbddb1) { + console.log(_0xbbddb1); + _0x4beca6('' + _0xbbddb1); + } +}); +cmd({ + 'pattern': "setwelcome", + 'desc': "Set the welcome message for the group.", + 'category': "group", + 'react': '👋', + 'filename': __filename +}, async (_0x38c266, _0x3173c4, _0x390a75, { + from: _0x3f6a31, + quoted: _0x28a99e, + body: _0x4ed0ca, + isCmd: _0x4d0fa4, + command: _0x400fb2, + args: _0x3a8f9f, + q: _0xd0a608, + isGroup: _0x519fe5, + sender: _0x19d08d, + senderNumber: _0x4b3863, + botNumber2: _0x1aaac2, + botNumber: _0x5e81eb, + pushname: _0x37028a, + isMe: _0x2af145, + isOwner: _0x5060d5, + groupMetadata: _0x1378de, + groupName: _0x463238, + participants: _0x31482b, + groupAdmins: _0x5cc3cc, + isBotAdmins: _0x12d593, + isAdmins: _0x35af97, + reply: _0x4c430b +}) => { + try { + if (!_0x519fe5) { + return _0x4c430b("This command can only be used in a group."); + } + if (!_0x12d593) { + return _0x4c430b("Bot must be an admin to use this command."); + } + if (!_0x35af97) { + return _0x4c430b("You must be an admin to use this command."); + } + if (!_0xd0a608) { + return _0x4c430b("Please provide a welcome message."); + } + await _0x38c266.sendMessage(_0x3f6a31, { + 'image': { + 'url': config.ALIVE_IMG + }, + 'caption': _0xd0a608 + }); + await _0x4c430b("Welcome message has been set."); + } catch (_0x416d4f) { + console.log(_0x416d4f); + _0x4c430b('' + _0x416d4f); + } +}); diff --git a/plugins/hack-prank.js b/plugins/hack-prank.js new file mode 100644 index 0000000000000000000000000000000000000000..514d983f28add48720f13aeee63c6b562213980a --- /dev/null +++ b/plugins/hack-prank.js @@ -0,0 +1,266 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const { cmd } = require('../command'); + +cmd({ + pattern: "hack", + desc: "Displays a dynamic and playful 'Hacking' message for fun.", + category: "fun", + react: "💻", + filename: __filename +}, +async (conn, mek, m, { from, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply }) => { + try { + const steps = [ + '💻 *SUBZERO HACK STARTING...* 💻', + '', + '*Initializing hacking tools...* 🛠️', + '*Connecting to remote servers...* 🌐', + '', + '```[██████████] 10%``` ⏳' , + '```[███████████████████] 20%``` ⏳' , + '```[███████████████████████] 30%``` ⏳' , + '```[██████████████████████████] 40%``` ⏳' , + '```[███████████████████████████████] 50%``` ⏳' , + '```[█████████████████████████████████████] 60%``` ⏳' , + '```[██████████████████████████████████████████] 70%``` ⏳' , + '```[██████████████████████████████████████████████] 80%``` ⏳' , + '```[██████████████████████████████████████████████████] 90%``` ⏳' , + '```[████████████████████████████████████████████████████] 100%``` ✅', + '', + '🔒 *System Breach: Successful!* 🔓', + '🚀 *Command Execution: Complete!* 🎯', + '', + '*📡 Transmitting data...* 📤', + '_🕵️‍♂️ Ensuring stealth..._ 🤫', + '*🔧 Finalizing operations...* 🏁', + '', + '⚠️ *Note:* All actions are for demonstration purposes only.', + '⚠️ *Reminder:* Ethical hacking is the only way to ensure security.', + '', + '> *SUBZERO-HACKING-COMPLETE ☣*' + ]; + + for (const line of steps) { + await conn.sendMessage(from, { text: line }, { quoted: mek }); + await new Promise(resolve => setTimeout(resolve, 1000)); // Adjust the delay as needed + } + } catch (e) { + console.log(e); + reply(`❌ *Error:* ${e.message}`); + } +}); diff --git a/plugins/main-about.js b/plugins/main-about.js new file mode 100644 index 0000000000000000000000000000000000000000..cad48c3d8716d5f2ee0ada5fd21481951d41a515 --- /dev/null +++ b/plugins/main-about.js @@ -0,0 +1,226 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const _0x4c4269=_0x275f;(function(_0x2c90a2,_0x353d84){const _0x3d2226=_0x275f,_0x43bf41=_0x2c90a2();while(!![]){try{const _0x1da8a9=parseInt(_0x3d2226(0x141))/0x1+-parseInt(_0x3d2226(0x147))/0x2+-parseInt(_0x3d2226(0x145))/0x3*(-parseInt(_0x3d2226(0x142))/0x4)+parseInt(_0x3d2226(0x13f))/0x5+-parseInt(_0x3d2226(0x14b))/0x6*(parseInt(_0x3d2226(0x146))/0x7)+-parseInt(_0x3d2226(0x144))/0x8*(parseInt(_0x3d2226(0x13b))/0x9)+parseInt(_0x3d2226(0x139))/0xa*(parseInt(_0x3d2226(0x140))/0xb);if(_0x1da8a9===_0x353d84)break;else _0x43bf41['push'](_0x43bf41['shift']());}catch(_0x1f9c21){_0x43bf41['push'](_0x43bf41['shift']());}}}(_0x1d8c,0xe7e5d));function _0x275f(_0x259273,_0x46ccbf){const _0x1d8c28=_0x1d8c();return _0x275f=function(_0x275f96,_0xaaca3f){_0x275f96=_0x275f96-0x139;let _0x4b56da=_0x1d8c28[_0x275f96];return _0x4b56da;},_0x275f(_0x259273,_0x46ccbf);}function hi(){const _0x13752c=_0x275f;console[_0x13752c(0x13a)](_0x13752c(0x13c));}hi();const config=require(_0x4c4269(0x143)),more=String[_0x4c4269(0x14c)](0x200e),readMore=more[_0x4c4269(0x13e)](0xfa1),{cmd,commands}=require(_0x4c4269(0x13d));cmd({'pattern':_0x4c4269(0x148),'alias':[_0x4c4269(0x14d)],'react':'🇿🇼','desc':'get\x20owner\x20dec','category':'main','filename':__filename},async(_0x3b90aa,_0x4ce520,_0x5f1791,{from:_0x16d48a,quoted:_0x1e9ec2,body:_0x4caaae,isCmd:_0x442601,command:_0x4c0d65,args:_0x57d4c1,q:_0x35dced,isGroup:_0x428c78,sender:_0x3dc209,senderNumber:_0x4adabf,botNumber2:_0x173d17,botNumber:_0x2c2ffd,pushname:_0x34146d,isMe:_0xbc930f,isOwner:_0x4604b5,groupMetadata:_0x2f5cfa,groupName:_0x2e7133,participants:_0x34670a,groupAdmins:_0x2401de,isBotAdmins:_0xe4e37,isAdmins:_0x3cdf49,reply:_0x2414e2})=>{const _0x53b56b=_0x4c4269;try{let _0x1ad954='━━━━━━━━━━━━━━━━━━━━━━━━\x0a\x0a*👋\x20HELLO\x20'+_0x34146d+'😄*\x0a\x0a\x20*INTRODUCING\x20TO\x20YOU\x20SUBZERO\x20MD😇❄️*\x0a\x0aA\x20Versatile\x20WhatsApp\x20Based\x20Multi\x20Device\x20Bot\x20Created\x20By\x20Darrell\x20Mucheri\x20T\x20from\x20Zimbabwe.\x0aIt\x20sole\x20purpose\x20is\x20to\x20remove\x20the\x20burden\x20or\x20cost\x20of\x20purchasing\x20data\x20bundles\x20to\x20download\x20Songs,\x20Apps,\x20Videos\x20&\x20Movies\x20by\x20using\x20WhatsApp\x20bundles.\x0a\x0a\x20*For\x20More\x20Visit*:\x20https://mrfrankinc.vercel.app/\x0a\x0a━━━━━━━━━━━━━━━━━━━━━━━━\x0a'+readMore+_0x53b56b(0x14a);await _0x3b90aa[_0x53b56b(0x149)](_0x16d48a,{'image':{'url':config['ALIVE_IMG']},'caption':_0x1ad954},{'quoted':_0x4ce520});}catch(_0x20f715){console[_0x53b56b(0x13a)](_0x20f715),_0x2414e2(''+_0x20f715);}});function _0x1d8c(){const _0x38d167=['repeat','245810viVwTE','1309qxRIer','1521550nJKUFj','2630212WcATiT','../config','4001304ZIlRRb','3xpYoOC','1969534gkDxLw','1280990KzSzFp','about','sendMessage','\x0a\x20*SOURCE\x20CODE*\x20⛓️\x0a>\x20https://github.com/mrfrank-ofc/SUBZERO-MD\x0a\x0a\x20*FOLLOW\x20OWNER*\x20🦋\x0a>\x20https://github.com/mrfrank-ofc/\x0a\x0a\x20*OWNER\x27S\x20WHATSAPP*\x20🚀\x0a>\x20https://wa.me/18062212660/?text=SubZero+Fan+Here\x0a\x0a\x20*2ND\x20DEVELOPER*\x20🦄\x0a>\x20https://wa.me/265993702468/?text=SubZero+Fan+Here\x0a\x0a\x20*SUPPORT\x20CHANNEL*\x20🪄\x0a>\x20https://whatsapp.com/channel/0029VagQEmB002T7MWo3Sj1D\x0a\x0a\x20*FOLLOW\x20INSTAGRAM*\x20🫶\x0a>\x20https://instagram.com/mrfrankofc/\x0a\x0a\x20*FOLLOW\x20OWNER*\x20🤍\x0a>\x20https://youtube.com/mrfr4nk/\x0a\x0a┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈\x0a\x20```[RELEASE\x20DATE\x20-\x2015\x20December\x202024]```\x0a\x20\x0a>\x20*MR\x20FRANK\x20OFC*\x0a\x0a━━━━━━━━━━━━━━━━━━━━━━━━\x0a','24VrXPDB','fromCharCode','mrfrank','125030vfbVbx','log','18penCxk','Hello\x20World!','../command'];_0x1d8c=function(){return _0x38d167;};return _0x1d8c();} diff --git a/plugins/main-alive.js b/plugins/main-alive.js new file mode 100644 index 0000000000000000000000000000000000000000..73e6d5402fda2e80f9d0bf8482860931c49bb074 --- /dev/null +++ b/plugins/main-alive.js @@ -0,0 +1,217 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +function _0x1f12(_0x1c34b2,_0x5c8676){const _0x70ba8d=_0x70ba();return _0x1f12=function(_0x1f127c,_0x2a36dd){_0x1f127c=_0x1f127c-0x1bc;let _0x36860b=_0x70ba8d[_0x1f127c];return _0x36860b;},_0x1f12(_0x1c34b2,_0x5c8676);}const _0x1dd55c=_0x1f12;(function(_0x515f58,_0x284a7c){const _0x462a45=_0x1f12,_0x2b63f1=_0x515f58();while(!![]){try{const _0x1b4235=-parseInt(_0x462a45(0x1d6))/0x1*(-parseInt(_0x462a45(0x1c0))/0x2)+-parseInt(_0x462a45(0x1c8))/0x3*(parseInt(_0x462a45(0x1cb))/0x4)+-parseInt(_0x462a45(0x1c4))/0x5*(parseInt(_0x462a45(0x1c2))/0x6)+parseInt(_0x462a45(0x1bd))/0x7*(parseInt(_0x462a45(0x1bf))/0x8)+-parseInt(_0x462a45(0x1d4))/0x9*(-parseInt(_0x462a45(0x1d2))/0xa)+parseInt(_0x462a45(0x1d7))/0xb*(-parseInt(_0x462a45(0x1d1))/0xc)+parseInt(_0x462a45(0x1c1))/0xd;if(_0x1b4235===_0x284a7c)break;else _0x2b63f1['push'](_0x2b63f1['shift']());}catch(_0x5f439f){_0x2b63f1['push'](_0x2b63f1['shift']());}}}(_0x70ba,0xd1352));function hi(){const _0x4416a0=_0x1f12;console['log'](_0x4416a0(0x1cf));}hi();const {cmd,commands}=require('../command'),os=require('os'),{runtime}=require(_0x1dd55c(0x1c9));function _0x70ba(){const _0x4fdb1a=['47059662fJGVkt','4111056cftSRc','toFixed','10YSAtHU','heapUsed','error','uptime','66NsbtEL','../lib/functions','120363304325601080@newsletter','192476gAkgIw','https://i.postimg.cc/7hL6R7NH/White-and-Green-Simple-Professional-Business-Project-Presentation-1.jpg','╭━━〔\x20*SUBZERO\x20MD*\x20〕━━┈⊷\x0a\x0a┃◈╭─────────────·๏\x0a\x0a┃◈┃•\x20*⏳Uptime*:\x20\x20','alive','Hello\x20World!','hostname','20205144KKblOH','3402130dnfSyj','runtime','9ypYGld','main','470521KdLSCi','11fYTtXe','\x0a\x0a┃◈┃•\x20*👨‍💻\x20Owner*:\x20Mr\x20Frank\x0a\x0a┃◈┃•\x20*📂\x20Version*:\x201.0.3\x0a\x0a┃◈└───────────┈⊷\x0a\x0a╰──────────────┈⊷\x0a\x0a>\x20©\x20ᴘᴏᴡᴇʀᴇᴅ\x20ʙʏ\x20sᴜʙᴢᴇʀᴏ\x20ᴍᴅ','MB\x0a\x0a┃◈┃•\x20*⚙️\x20HostName*:\x20','3318zGxsZv','sendMessage','9096FADekQ','2YlqPgz'];_0x70ba=function(){return _0x4fdb1a;};return _0x70ba();}cmd({'pattern':_0x1dd55c(0x1ce),'alias':['status',_0x1dd55c(0x1d3),_0x1dd55c(0x1c7)],'desc':'Check\x20uptime\x20and\x20system\x20status','category':_0x1dd55c(0x1d5),'react':'📟','filename':__filename},async(_0x41fdca,_0x4452d9,_0x4c213f,{from:_0x24d99b,quoted:_0x33a77a,body:_0x1fd20f,isCmd:_0x5b3437,command:_0x575fa3,args:_0x4b3e13,q:_0x142fce,isGroup:_0x4f0d7b,sender:_0xef73a9,senderNumber:_0x556dcd,botNumber2:_0x122dd9,botNumber:_0x294404,pushname:_0x40f485,isMe:_0x47ba9c,isOwner:_0x20ed13,groupMetadata:_0x36d695,groupName:_0x53c692,participants:_0x38cf4f,groupAdmins:_0x301142,isBotAdmins:_0x4b4e84,isAdmins:_0x111719,reply:_0x2c7dc6})=>{const _0x4af078=_0x1dd55c;try{const _0x54a5ab=_0x4af078(0x1cd)+runtime(process[_0x4af078(0x1c7)]())+'\x20\x0a\x0a┃◈┃•\x20*📟\x20Ram\x20usage*:\x20'+(process['memoryUsage']()[_0x4af078(0x1c5)]/0x400/0x400)['toFixed'](0x2)+'MB\x20/\x20'+(os['totalmem']()/0x400/0x400)[_0x4af078(0x1c3)](0x2)+_0x4af078(0x1bc)+os[_0x4af078(0x1d0)]()+_0x4af078(0x1d8);await _0x41fdca[_0x4af078(0x1be)](_0x24d99b,{'image':{'url':_0x4af078(0x1cc)},'caption':_0x54a5ab,'contextInfo':{'mentionedJid':[_0x4c213f['sender']],'forwardingScore':0x3e7,'isForwarded':!![],'forwardedNewsletterMessageInfo':{'newsletterJid':_0x4af078(0x1ca),'newsletterName':'『\x20𝐒𝐔𝐁𝐙𝐄𝐑𝐎\x20𝐌𝐃\x20』','serverMessageId':0x8f}}},{'quoted':_0x4452d9});}catch(_0x454bf1){console[_0x4af078(0x1c6)]('Error\x20in\x20alive\x20command:',_0x454bf1),_0x2c7dc6('An\x20error\x20occurred:\x20'+_0x454bf1['message']);}}); diff --git a/plugins/main-beta-menu.js b/plugins/main-beta-menu.js new file mode 100644 index 0000000000000000000000000000000000000000..61a73ac79e89368b0f168f0e72bac1b1417d89d4 --- /dev/null +++ b/plugins/main-beta-menu.js @@ -0,0 +1,217 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const _0x244a4b=_0x1f98;(function(_0x21e13d,_0x3cf812){const _0xe62f03=_0x1f98,_0x2019f0=_0x21e13d();while(!![]){try{const _0x355e73=-parseInt(_0xe62f03(0x164))/0x1*(-parseInt(_0xe62f03(0x160))/0x2)+parseInt(_0xe62f03(0x16e))/0x3*(-parseInt(_0xe62f03(0x151))/0x4)+parseInt(_0xe62f03(0x178))/0x5+parseInt(_0xe62f03(0x177))/0x6+-parseInt(_0xe62f03(0x15d))/0x7*(parseInt(_0xe62f03(0x170))/0x8)+-parseInt(_0xe62f03(0x14a))/0x9+parseInt(_0xe62f03(0x179))/0xa;if(_0x355e73===_0x3cf812)break;else _0x2019f0['push'](_0x2019f0['shift']());}catch(_0x21ec1b){_0x2019f0['push'](_0x2019f0['shift']());}}}(_0x18d3,0xa57d1));function hi(){const _0x268f5f=_0x1f98;console[_0x268f5f(0x168)]('Hello\x20World!');}function _0x1f98(_0x1267dd,_0x34ddd3){const _0x18d3bb=_0x18d3();return _0x1f98=function(_0x1f9810,_0x57d7e5){_0x1f9810=_0x1f9810-0x147;let _0x2890ab=_0x18d3bb[_0x1f9810];return _0x2890ab;},_0x1f98(_0x1267dd,_0x34ddd3);}hi();const config=require(_0x244a4b(0x16b)),{cmd,commands}=require(_0x244a4b(0x163)),os=require('os'),{runtime}=require(_0x244a4b(0x154)),axios=require(_0x244a4b(0x166));function _0x18d3(){const _0x4c7365=['617550XVFTaA','audio/mp4','120363304325601080@newsletter','../command','3ZSldUQ','OWNER_NAME','axios','╭━━〔\x20*Group\x20Menu*\x20〕━━┈⊷\x0a\x0a┃◈╭─────────────·๏\x0a\x0a┃◈┃•\x20grouplink\x0a\x0a┃◈┃•\x20kickall\x0a\x0a┃◈┃•\x20kickall2\x0a\x0a┃◈┃•\x20kickall3\x0a\x0a┃◈┃•\x20add\x0a\x0a┃◈┃•\x20remove\x0a\x0a┃◈┃•\x20kick\x0a\x0a┃◈┃•\x20promote\x20\x0a\x0a┃◈┃•\x20demote\x0a\x0a┃◈┃•\x20dismiss\x20\x0a\x0a┃◈┃•\x20revoke\x0a\x0a┃◈┃•\x20setgoodbye\x0a\x0a┃◈┃•\x20setwelcome\x0a\x0a┃◈┃•\x20delete\x20\x0a\x0a┃◈┃•\x20getpic\x0a\x0a┃◈┃•\x20ginfo\x0a\x0a┃◈┃•\x20delete\x20\x0a\x0a┃◈┃•\x20disappear\x20on\x0a\x0a┃◈┃•\x20disappear\x20off\x0a\x0a┃◈┃•\x20disappear\x207D,24H\x0a\x0a┃◈┃•\x20allreq\x0a\x0a┃◈┃•\x20updategname\x0a\x0a┃◈┃•\x20updategdesc\x0a\x0a┃◈┃•\x20joinrequests\x0a\x0a┃◈┃•\x20senddm\x0a\x0a┃◈┃•\x20nikal\x0a\x0a┃◈┃•\x20mute\x0a\x0a┃◈┃•\x20unmute\x0a\x0a┃◈┃•\x20lockgc\x0a\x0a┃◈┃•\x20unlockgc\x0a\x0a┃◈┃•\x20invite\x0a\x0a┃◈┃•\x20tag\x0a\x0a┃◈┃•\x20hidetag\x0a\x0a┃◈┃•\x20tagall\x0a\x0a┃◈┃•\x20tagadmins\x0a\x0a┃◈└───────────┈⊷\x0a\x0a╰──────────────┈⊷\x0a\x0a>\x20','log','https://i.postimg.cc/yNf7rQFw/prn.jpg','funmenu','../config','menu','╭━━━〔\x20*','600oFQajl','mainmenu','8KdAJOe','╭━━〔\x20*Convert\x20Menu*\x20〕━━┈⊷\x0a\x0a┃◈╭─────────────·๏\x0a\x0a┃◈┃•\x20sticker\x0a\x0a┃◈┃•\x20sticker2\x0a\x0a┃◈┃•\x20fancy\x0a\x0a┃◈┃•\x20take\x0a\x0a┃◈┃•\x20tomp3\x0a\x0a┃◈┃•\x20tts\x0a\x0a┃◈┃•\x20trt\x0a\x0a┃◈└───────────┈⊷\x0a\x0a╰──────────────┈⊷\x0a\x0a>\x20','❄️『\x20𝐒𝐔𝐁𝐙𝐄𝐑𝐎\x20𝐌𝐃\x20』❄','╭━━〔\x20*Owner\x20Menu*\x20〕━━┈⊷\x0a\x0a┃◈╭─────────────·๏\x0a\x0a┃◈┃•\x20owner\x0a\x0a┃◈┃•\x20menu\x0a\x0a┃◈┃•\x20menu2\x0a\x0a┃◈┃•\x20listcmd\x0a\x0a┃◈┃•\x20allmenu\x0a\x0a┃◈┃•\x20repo\x0a\x0a┃◈┃•\x20block\x0a\x0a┃◈┃•\x20unblock\x0a\x0a┃◈┃•\x20fullpp\x0a\x0a┃◈┃•\x20setpp\x0a\x0a┃◈┃•\x20restart\x0a\x0a┃◈┃•\x20shutdown\x0a\x0a┃◈┃•\x20updatecmd\x0a\x0a┃◈┃•\x20alive\x0a\x0a┃◈┃•\x20ping\x20\x0a\x0a┃◈┃•\x20gjid\x0a\x0a┃◈┃•\x20jid\x0a\x0a┃◈└───────────┈⊷\x0a\x0a╰──────────────┈⊷\x0a\x0a>\x20',']*\x0a\x0a┃★│\x20Version\x20:\x20*1.0.3\x20Bᴇᴛᴀ*\x0a\x0a┃★╰──────────────\x0a\x0a╰━━━━━━━━━━━━━━━┈⊷\x0a\x0a╭━━〔\x20*Menu\x20List*\x20〕━━┈⊷\x0a\x0a┃◈╭─────────────·๏\x0a\x0a┃◈┃•\x20ᴀɪᴍᴇɴᴜ\x0a\x0a┃◈┃•\x20ᴀɴɪᴍᴇᴍᴇɴᴜ\x0a\x0a┃◈┃•\x20ᴄᴏɴᴠᴇʀᴛᴍᴇɴᴜ\x0a\x0a┃◈┃•\x20ꜰᴜɴᴍᴇɴᴜ\x0a\x0a┃◈┃•\x20ᴅʟᴍᴇɴᴜ\x0a\x0a┃◈┃•\x20ʟɪsᴛᴍᴇɴᴜ\x0a\x0a┃◈┃•\x20ᴍᴀɪɴᴍᴇɴᴜ\x0a\x0a┃◈┃•\x20ɢʀᴏᴜᴘᴍᴇɴᴜ\x0a\x0a┃◈┃•\x20ᴀʟʟᴍᴇɴᴜ\x0a\x0a┃◈┃•\x20ᴏᴡɴᴇʀᴍᴇɴᴜ\x0a\x0a┃◈┃•\x20ᴏᴛʜᴇʀᴍᴇɴᴜ\x0a\x0a┃◈┃•\x20sᴜʙᴢᴇʀᴏᴍᴇɴᴜ\x0a\x0a┃◈┃•\x20\x0a\x0a┃◈└───────────┈⊷\x0a\x0a╰──────────────┈⊷\x0a\x0a>\x20SᴜʙZᴇʀᴏ\x20W.A\x20Bᴏᴛ','🗳️','https://github.com/mrfrank-ofc/SUBZERO-MD-DATABASE/raw/refs/heads/main/audios/subzero-menu.mp3','1754982ctYOnF','4161195jwUNqi','3733050zrVHac','animemenu','menu\x20the\x20bot','╭━━〔\x20*Main\x20Menu*\x20〕━━┈⊷\x0a\x0a┃◈╭─────────────·๏\x0a\x0a┃◈┃•\x20ping\x0a\x0a┃◈┃•\x20live\x20\x0a\x0a┃◈┃•\x20alive\x0a\x0a┃◈┃•\x20runtime\x0a\x0a┃◈┃•\x20uptime\x20\x0a\x0a┃◈┃•\x20repo\x0a\x0a┃◈┃•\x20owner\x0a\x0a┃◈┃•\x20menu\x0a\x0a┃◈┃•\x20menu2\x0a\x0a┃◈┃•\x20restart\x0a\x0a┃◈└───────────┈⊷\x0a\x0a╰──────────────┈⊷\x0a\x0a>\x20','2975985gGymGr','sendMessage','convertmenu',']*\x0a\x0a┃★│\x20Prifix\x20:\x20*[','sender','╭━━〔\x20*Ai\x20Menu*\x20〕━━┈⊷\x0a\x0a┃◈╭─────────────·๏\x0a\x0a┃◈┃•\x20ai\x0a\x0a┃◈┃•\x20gpt\x0a\x0a┃◈┃•\x20meta\x0a\x0a┃◈┃•\x20blackbox\x0a\x0a┃◈┃•\x20gpt4\x0a\x0a┃◈┃•\x20bing\x0a\x0a┃◈┃•\x20copilot\x0a\x0a┃◈└───────────┈⊷\x0a\x0a╰──────────────┈⊷\x0a\x0a>\x20','aimenu','7432IAILTz','DESCRIPTION','╭━━〔\x20*Anime\x20Menu*\x20〕━━┈⊷\x0a\x0a┃◈╭─────────────·๏\x0a\x0a┃◈┃•\x20fack\x0a\x0a┃◈┃•\x20dog\x0a\x0a┃◈┃•\x20awoo\x0a\x0a┃◈┃•\x20garl\x0a\x0a┃◈┃•\x20waifu\x0a\x0a┃◈┃•\x20neko\x0a\x0a┃◈┃•\x20megnumin\x0a\x0a┃◈┃•\x20neko\x0a\x0a┃◈┃•\x20maid\x0a\x0a┃◈┃•\x20loli\x0a\x0a┃◈┃•\x20animegirl\x0a\x0a┃◈┃•\x20animegirl\x0a\x0a┃◈┃•\x20animegirl1\x0a\x0a┃◈┃•\x20animegirl2\x0a\x0a┃◈┃•\x20animegirl3\x0a\x0a┃◈┃•\x20animegirl4\x0a\x0a┃◈┃•\x20animegirl5\x0a\x0a┃◈┃•\x20anime1\x0a\x0a┃◈┃•\x20anime1\x0a\x0a┃◈┃•\x20anime2\x0a\x0a┃◈┃•\x20anime3\x0a\x0a┃◈┃•\x20anime4\x0a\x0a┃◈┃•\x20anime5\x0a\x0a┃◈┃•\x20animenews\x0a\x0a┃◈┃•\x20foxgirl\x0a\x0a┃◈┃•\x20naruto\x0a\x0a┃◈└───────────┈⊷\x0a\x0a╰──────────────┈⊷\x0a\x0a>\x20','../lib/functions','BOT_NAME','othermenu','MODE','betamenu','*\x0a\x0a┃★│\x20Baileys\x20:\x20*Multi\x20Device*\x0a\x0a┃★│\x20Type\x20:\x20*NodeJs*\x0a\x0a┃★│\x20Platform\x20:\x20*Heroku*\x0a\x0a┃★│\x20Mode\x20:\x20*[','dlmenu','╭━━〔\x20*Fun\x20Menu*\x20〕━━┈⊷\x0a\x0a┃◈╭─────────────·๏\x0a\x0a┃◈┃•\x20insult\x0a\x0a┃◈┃•\x20pickup\x0a\x0a┃◈┃•\x20ship\x0a\x0a┃◈┃•\x20character\x0a\x0a┃◈┃•\x20hack\x0a\x0a┃◈┃•\x20joke\x0a\x0a┃◈┃•\x20hrt\x0a\x0a┃◈┃•\x20hpy\x0a\x0a┃◈┃•\x20syd\x0a\x0a┃◈┃•\x20anger\x0a\x0a┃◈┃•\x20shy\x0a\x0a┃◈┃•\x20kiss\x0a\x0a┃◈┃•\x20mon\x0a\x0a┃◈┃•\x20cunfuzed\x0a\x0a┃◈┃•\x20setpp\x0a\x0a┃◈┃•\x20hand\x0a\x0a┃◈┃•\x20nikal\x0a\x0a┃◈┃•\x20hold\x0a\x0a┃◈┃•\x20hug\x0a\x0a┃◈┃•\x20nikal\x0a\x0a┃◈┃•\x20hifi\x0a\x0a┃◈┃•\x20poke\x0a\x0a┃◈└───────────┈⊷\x0a\x0a╰──────────────┈⊷\x0a\x0a>\x20','ownermenu','7309820MKaYrv','PREFIX','*\x20〕━━━┈⊷\x0a\x0a┃★╭──────────────\x0a\x0a┃★│\x20Owner\x20:\x20*'];_0x18d3=function(){return _0x4c7365;};return _0x18d3();}cmd({'pattern':_0x244a4b(0x158),'desc':'menu\x20the\x20bot','category':'menu','react':'📑','filename':__filename},async(_0x27f345,_0x1a0ce6,_0xe20516,{from:_0x2b9e3c,quoted:_0x403e9b,body:_0x5d32ae,isCmd:_0x1d5ab6,command:_0xf6b6a6,args:_0x3f7d71,q:_0x41edb6,isGroup:_0x358e94,sender:_0x5674bd,senderNumber:_0x24a6df,botNumber2:_0xdec07d,botNumber:_0x5988bb,pushname:_0x31d9cd,isMe:_0x50a2ca,isOwner:_0x44b5b2,groupMetadata:_0x57f23e,groupName:_0x1250d6,participants:_0x1dae4c,groupAdmins:_0x331763,isBotAdmins:_0x40dfa3,isAdmins:_0x658688,reply:_0x2ede88})=>{const _0x3305ed=_0x244a4b;try{let _0x54ea60=_0x3305ed(0x16d)+config[_0x3305ed(0x155)]+_0x3305ed(0x15f)+config[_0x3305ed(0x165)]+_0x3305ed(0x159)+config[_0x3305ed(0x157)]+_0x3305ed(0x14d)+config[_0x3305ed(0x15e)]+_0x3305ed(0x174);await _0x27f345[_0x3305ed(0x14b)](_0x2b9e3c,{'image':{'url':_0x3305ed(0x169)},'caption':_0x54ea60,'contextInfo':{'mentionedJid':[_0xe20516[_0x3305ed(0x14e)]],'forwardingScore':0x3e7,'isForwarded':!![],'forwardedNewsletterMessageInfo':{'newsletterJid':_0x3305ed(0x162),'newsletterName':'❄️『\x20𝐒𝐔𝐁𝐙𝐄𝐑𝐎\x20𝐌𝐃\x20』❄','serverMessageId':0x8f}}},{'quoted':_0x1a0ce6}),await _0x27f345[_0x3305ed(0x14b)](_0x2b9e3c,{'audio':{'url':_0x3305ed(0x176)},'mimetype':_0x3305ed(0x161),'ptt':!![]},{'quoted':_0x1a0ce6});}catch(_0x555527){console[_0x3305ed(0x168)](_0x555527),_0x2ede88(''+_0x555527);}}),cmd({'pattern':_0x244a4b(0x15a),'desc':_0x244a4b(0x148),'category':_0x244a4b(0x16c),'react':_0x244a4b(0x175),'filename':__filename},async(_0x3c8209,_0x508e78,_0x26406b,{from:_0xbfb512,quoted:_0x1844c7,body:_0x3e7e03,isCmd:_0x39f5da,command:_0x11e9e1,args:_0x4a51be,q:_0x580835,isGroup:_0x3e2a7a,sender:_0x2cd6a7,senderNumber:_0x41aee3,botNumber2:_0x1ebbb3,botNumber:_0x2e9ef9,pushname:_0x3adb15,isMe:_0x5e4672,isOwner:_0x46af55,groupMetadata:_0x3a4ed0,groupName:_0x61bb74,participants:_0x15bb55,groupAdmins:_0x5342ba,isBotAdmins:_0x41b3d6,isAdmins:_0x57ced4,reply:_0x1c99a8})=>{const _0x3c79fb=_0x244a4b;try{let _0x560e66='╭━━〔\x20*Download\x20Menu*\x20〕━━┈⊷\x0a\x0a┃◈╭─────────────·๏\x0a\x0a┃◈┃•\x20facebook\x0a\x0a┃◈┃•\x20mediafire\x0a\x0a┃◈┃•\x20tiktok\x0a\x0a┃◈┃•\x20twitter\x0a\x0a┃◈┃•\x20Insta\x0a\x0a┃◈┃•\x20apk\x0a\x0a┃◈┃•\x20img\x0a\x0a┃◈┃•\x20spotify\x0a\x0a┃◈┃•\x20play\x0a\x0a┃◈┃•\x20play2\x0a\x0a┃◈┃•\x20play3\x0a\x0a┃◈┃•\x20tt2\x0a\x0a┃◈┃•\x20audio\x0a\x0a┃◈┃•\x20video\x0a\x0a┃◈┃•\x20video2\x0a\x0a┃◈┃•\x20ytmp3\x0a\x0a┃◈┃•\x20ytmp4\x0a\x0a┃◈┃•\x20song\x0a\x0a┃◈┃•\x20darama\x0a\x0a┃◈┃•\x20git\x0a\x0a┃◈┃•\x20gdrive\x0a\x0a┃◈┃•\x20smovie\x0a\x0a┃◈┃•\x20baiscope\x20\x0a\x0a┃◈┃•\x20ginisilia\x20\x0a\x0a┃◈└───────────┈⊷\x0a\x0a╰──────────────┈⊷\x0a\x0a>\x20'+config[_0x3c79fb(0x152)];await _0x3c8209['sendMessage'](_0xbfb512,{'image':{'url':_0x3c79fb(0x169)},'caption':_0x560e66,'contextInfo':{'mentionedJid':[_0x26406b['sender']],'forwardingScore':0x3e7,'isForwarded':!![],'forwardedNewsletterMessageInfo':{'newsletterJid':_0x3c79fb(0x162),'newsletterName':_0x3c79fb(0x172),'serverMessageId':0x8f}}},{'quoted':_0x508e78});}catch(_0x369d89){console[_0x3c79fb(0x168)](_0x369d89),_0x1c99a8(''+_0x369d89);}}),cmd({'pattern':'groupmenu','desc':_0x244a4b(0x148),'category':_0x244a4b(0x16c),'react':'👥','filename':__filename},async(_0x5ee2ef,_0x31fb7a,_0x5671eb,{from:_0x1dc4f9,quoted:_0x2c0180,body:_0x4e56a0,isCmd:_0x212c32,command:_0x50d66f,args:_0x5e8724,q:_0x59bfb1,isGroup:_0x4bffc4,sender:_0x1591d9,senderNumber:_0x143fc6,botNumber2:_0x3921d4,botNumber:_0x33f4fb,pushname:_0x59c4f2,isMe:_0x3fc691,isOwner:_0x25fcf5,groupMetadata:_0x2dd9e6,groupName:_0x5c236c,participants:_0x122903,groupAdmins:_0x403049,isBotAdmins:_0x41cdc2,isAdmins:_0x48d233,reply:_0xaec1f1})=>{const _0xa8359e=_0x244a4b;try{let _0x5c0ccb=_0xa8359e(0x167)+config[_0xa8359e(0x152)];await _0x5ee2ef[_0xa8359e(0x14b)](_0x1dc4f9,{'image':{'url':'https://i.postimg.cc/yNf7rQFw/prn.jpg'},'caption':_0x5c0ccb,'contextInfo':{'mentionedJid':[_0x5671eb[_0xa8359e(0x14e)]],'forwardingScore':0x3e7,'isForwarded':!![],'forwardedNewsletterMessageInfo':{'newsletterJid':_0xa8359e(0x162),'newsletterName':_0xa8359e(0x172),'serverMessageId':0x8f}}},{'quoted':_0x31fb7a});}catch(_0x514f84){console[_0xa8359e(0x168)](_0x514f84),_0xaec1f1(''+_0x514f84);}}),cmd({'pattern':_0x244a4b(0x16a),'desc':_0x244a4b(0x148),'category':'menu','react':'☺','filename':__filename},async(_0x4b2852,_0x4f55be,_0x2713ac,{from:_0x1bc3c8,quoted:_0xaddb1,body:_0x5e4ffe,isCmd:_0x3ba178,command:_0x5d059a,args:_0xa07bbc,q:_0x12d574,isGroup:_0x9df13d,sender:_0x2a7665,senderNumber:_0x23dfb2,botNumber2:_0x5dc9f5,botNumber:_0x4faec7,pushname:_0x5ecd03,isMe:_0x2b025c,isOwner:_0x7deac7,groupMetadata:_0x2d8089,groupName:_0x5d3c8d,participants:_0x49ce9e,groupAdmins:_0x59505b,isBotAdmins:_0x5b2fd8,isAdmins:_0x743a33,reply:_0x410043})=>{const _0x534edf=_0x244a4b;try{let _0x387677=_0x534edf(0x15b)+config['DESCRIPTION'];await _0x4b2852['sendMessage'](_0x1bc3c8,{'image':{'url':_0x534edf(0x169)},'caption':_0x387677,'contextInfo':{'mentionedJid':[_0x2713ac[_0x534edf(0x14e)]],'forwardingScore':0x3e7,'isForwarded':!![],'forwardedNewsletterMessageInfo':{'newsletterJid':_0x534edf(0x162),'newsletterName':'❄️『\x20𝐒𝐔𝐁𝐙𝐄𝐑𝐎\x20𝐌𝐃\x20』❄','serverMessageId':0x8f}}},{'quoted':_0x4f55be});}catch(_0x58d98a){console[_0x534edf(0x168)](_0x58d98a),_0x410043(''+_0x58d98a);}}),cmd({'pattern':_0x244a4b(0x156),'desc':'menu\x20the\x20bot','category':'menu','react':'🤖','filename':__filename},async(_0x16a087,_0x3a7134,_0x4e9c28,{from:_0x5300ad,quoted:_0x2260a2,body:_0x23589d,isCmd:_0x36a93f,command:_0x54fdce,args:_0x178cba,q:_0x44d357,isGroup:_0x3dd2c9,sender:_0x1102ff,senderNumber:_0x2e4487,botNumber2:_0xf75afc,botNumber:_0x332b13,pushname:_0x292bef,isMe:_0x4ecb2,isOwner:_0x16c8ed,groupMetadata:_0x530c16,groupName:_0x577fc1,participants:_0x44e451,groupAdmins:_0x7cb8a7,isBotAdmins:_0x48f42a,isAdmins:_0x2896b9,reply:_0x3b1fcf})=>{const _0x2c0eff=_0x244a4b;try{let _0x542398='╭━━〔\x20*Other\x20Menu*\x20〕━━┈⊷\x0a\x0a┃◈╭─────────────·๏\x0a\x0a┃◈┃•\x20vv\x0a\x0a┃◈┃•\x20pair\x0a\x0a┃◈┃•\x20pair2\x0a\x0a┃◈┃•\x20fact\x0a\x0a┃◈┃•\x20fancy\x0a\x0a┃◈┃•\x20define\x0a\x0a┃◈┃•\x20news\x0a\x0a┃◈┃•\x20movie\x0a\x0a┃◈┃•\x20weather\x0a\x0a┃◈┃•\x20srepo\x0a\x0a┃◈┃•\x20insult\x0a\x0a┃◈┃•\x20save\x0a\x0a┃◈┃•\x20wikipedia\x0a\x0a┃◈┃•\x20gpass\x0a\x0a┃◈┃•\x20githubstalk\x0a\x0a┃◈┃•\x20yts\x0a\x0a┃◈┃•\x20ytv\x0a\x0a┃◈└───────────┈⊷\x0a\x0a╰──────────────┈⊷\x0a\x0a>\x20'+config['DESCRIPTION'];await _0x16a087[_0x2c0eff(0x14b)](_0x5300ad,{'image':{'url':_0x2c0eff(0x169)},'caption':_0x542398,'contextInfo':{'mentionedJid':[_0x4e9c28[_0x2c0eff(0x14e)]],'forwardingScore':0x3e7,'isForwarded':!![],'forwardedNewsletterMessageInfo':{'newsletterJid':_0x2c0eff(0x162),'newsletterName':_0x2c0eff(0x172),'serverMessageId':0x8f}}},{'quoted':_0x3a7134});}catch(_0x11773d){console[_0x2c0eff(0x168)](_0x11773d),_0x3b1fcf(''+_0x11773d);}}),cmd({'pattern':_0x244a4b(0x16f),'desc':_0x244a4b(0x148),'category':_0x244a4b(0x16c),'react':'⚙️','filename':__filename},async(_0x56d9d7,_0x3a8302,_0x19a4d0,{from:_0x575d7b,quoted:_0x20176e,body:_0x4d3aa4,isCmd:_0x140bc9,command:_0x26ccc7,args:_0xec6e90,q:_0x844d09,isGroup:_0x5048b9,sender:_0x32c27b,senderNumber:_0x4fcc71,botNumber2:_0x44af4b,botNumber:_0x347b76,pushname:_0x26a823,isMe:_0x5cf5ac,isOwner:_0x32444f,groupMetadata:_0x3b9a74,groupName:_0xcd3961,participants:_0x268e73,groupAdmins:_0x4d52e6,isBotAdmins:_0x12ee29,isAdmins:_0x222e5d,reply:_0x8fda85})=>{const _0x4e7647=_0x244a4b;try{let _0x3ae6e9=_0x4e7647(0x149)+config[_0x4e7647(0x152)];await _0x56d9d7[_0x4e7647(0x14b)](_0x575d7b,{'image':{'url':'https://i.postimg.cc/yNf7rQFw/prn.jpg'},'caption':_0x3ae6e9,'contextInfo':{'mentionedJid':[_0x19a4d0[_0x4e7647(0x14e)]],'forwardingScore':0x3e7,'isForwarded':!![],'forwardedNewsletterMessageInfo':{'newsletterJid':_0x4e7647(0x162),'newsletterName':_0x4e7647(0x172),'serverMessageId':0x8f}}},{'quoted':_0x3a8302});}catch(_0x4266cb){console[_0x4e7647(0x168)](_0x4266cb),_0x8fda85(''+_0x4266cb);}}),cmd({'pattern':_0x244a4b(0x15c),'desc':_0x244a4b(0x148),'category':'menu','react':'🔰','filename':__filename},async(_0x124cae,_0x5cf1e8,_0x4e4e81,{from:_0x2311a9,quoted:_0x49f2f9,body:_0x30021e,isCmd:_0x724f3b,command:_0x530643,args:_0xe2548c,q:_0x413ad4,isGroup:_0x37f19d,sender:_0x2e8df,senderNumber:_0x3a5c74,botNumber2:_0x54b6bb,botNumber:_0x10cc19,pushname:_0x2e3d1e,isMe:_0x8b23b9,isOwner:_0x4a2534,groupMetadata:_0x168195,groupName:_0x2dde56,participants:_0x2f1b75,groupAdmins:_0x436ab8,isBotAdmins:_0x189d09,isAdmins:_0x22d9d2,reply:_0x277dd1})=>{const _0x100f67=_0x244a4b;try{let _0x248977=_0x100f67(0x173)+config[_0x100f67(0x152)];await _0x124cae[_0x100f67(0x14b)](_0x2311a9,{'image':{'url':_0x100f67(0x169)},'caption':_0x248977,'contextInfo':{'mentionedJid':[_0x4e4e81['sender']],'forwardingScore':0x3e7,'isForwarded':!![],'forwardedNewsletterMessageInfo':{'newsletterJid':_0x100f67(0x162),'newsletterName':_0x100f67(0x172),'serverMessageId':0x8f}}},{'quoted':_0x5cf1e8});}catch(_0xaa0a5e){console[_0x100f67(0x168)](_0xaa0a5e),_0x277dd1(''+_0xaa0a5e);}}),cmd({'pattern':_0x244a4b(0x14c),'desc':_0x244a4b(0x148),'category':'menu','react':'🔄','filename':__filename},async(_0x466bf2,_0x51297b,_0x3677bd,{from:_0x3db10e,quoted:_0x53bb12,body:_0x4ce24c,isCmd:_0x335b3a,command:_0x20d556,args:_0x3f9d09,q:_0x4ec415,isGroup:_0x2999c7,sender:_0x5250d7,senderNumber:_0x2d922c,botNumber2:_0x24b37d,botNumber:_0x49e893,pushname:_0x437bb1,isMe:_0x570091,isOwner:_0x44d3e2,groupMetadata:_0x3e2db0,groupName:_0x355269,participants:_0x3425a9,groupAdmins:_0x3078a8,isBotAdmins:_0xadf78d,isAdmins:_0x51c4b3,reply:_0x10cf35})=>{const _0x58de4d=_0x244a4b;try{let _0x595c3a=_0x58de4d(0x171)+config[_0x58de4d(0x152)];await _0x466bf2[_0x58de4d(0x14b)](_0x3db10e,{'image':{'url':_0x58de4d(0x169)},'caption':_0x595c3a,'contextInfo':{'mentionedJid':[_0x3677bd[_0x58de4d(0x14e)]],'forwardingScore':0x3e7,'isForwarded':!![],'forwardedNewsletterMessageInfo':{'newsletterJid':_0x58de4d(0x162),'newsletterName':_0x58de4d(0x172),'serverMessageId':0x8f}}},{'quoted':_0x51297b});}catch(_0x326045){console[_0x58de4d(0x168)](_0x326045),_0x10cf35(''+_0x326045);}}),cmd({'pattern':_0x244a4b(0x147),'desc':_0x244a4b(0x148),'category':_0x244a4b(0x16c),'react':'🧚','filename':__filename},async(_0x38a8e5,_0x5dd86e,_0x2b1cdc,{from:_0x227bea,quoted:_0x4cf869,body:_0xe22ff1,isCmd:_0x258670,command:_0x2da236,args:_0x27b667,q:_0x2104dc,isGroup:_0x552160,sender:_0x164ec5,senderNumber:_0x35c82f,botNumber2:_0xecb98d,botNumber:_0x3bfcaa,pushname:_0x3dca0f,isMe:_0x50e455,isOwner:_0x44695a,groupMetadata:_0x27418f,groupName:_0x522eae,participants:_0x46f57b,groupAdmins:_0x5c1511,isBotAdmins:_0x3620e0,isAdmins:_0x5127cf,reply:_0x2f0b71})=>{const _0x3ca5d6=_0x244a4b;try{let _0x38d204=_0x3ca5d6(0x153)+config['DESCRIPTION'];await _0x38a8e5[_0x3ca5d6(0x14b)](_0x227bea,{'image':{'url':_0x3ca5d6(0x169)},'caption':_0x38d204,'contextInfo':{'mentionedJid':[_0x2b1cdc['sender']],'forwardingScore':0x3e7,'isForwarded':!![],'forwardedNewsletterMessageInfo':{'newsletterJid':_0x3ca5d6(0x162),'newsletterName':_0x3ca5d6(0x172),'serverMessageId':0x8f}}},{'quoted':_0x5dd86e});}catch(_0x5b8ac8){console[_0x3ca5d6(0x168)](_0x5b8ac8),_0x2f0b71(''+_0x5b8ac8);}}),cmd({'pattern':_0x244a4b(0x150),'desc':_0x244a4b(0x148),'category':_0x244a4b(0x16c),'react':'🤖','filename':__filename},async(_0x223822,_0x5a0065,_0x3499ed,{from:_0x5b7e23,quoted:_0x4d42d6,body:_0x258fb1,isCmd:_0x2d6736,command:_0x20ad73,args:_0x5307e6,q:_0x28f15b,isGroup:_0x2d263a,sender:_0x12f4d3,senderNumber:_0x4af5fa,botNumber2:_0x19e02e,botNumber:_0x1f5dae,pushname:_0x176479,isMe:_0xb6b123,isOwner:_0x1a4cd5,groupMetadata:_0x1b7a62,groupName:_0x57a25d,participants:_0x26ef91,groupAdmins:_0x2cee4d,isBotAdmins:_0x50d5be,isAdmins:_0x11142c,reply:_0xafaa58})=>{const _0x1f8b2a=_0x244a4b;try{let _0x2f729d=_0x1f8b2a(0x14f)+config[_0x1f8b2a(0x152)];await _0x223822[_0x1f8b2a(0x14b)](_0x5b7e23,{'image':{'url':_0x1f8b2a(0x169)},'caption':_0x2f729d,'contextInfo':{'mentionedJid':[_0x3499ed[_0x1f8b2a(0x14e)]],'forwardingScore':0x3e7,'isForwarded':!![],'forwardedNewsletterMessageInfo':{'newsletterJid':_0x1f8b2a(0x162),'newsletterName':_0x1f8b2a(0x172),'serverMessageId':0x8f}}},{'quoted':_0x5a0065});}catch(_0x2d0bf3){console[_0x1f8b2a(0x168)](_0x2d0bf3),_0xafaa58(''+_0x2d0bf3);}}); \ No newline at end of file diff --git a/plugins/main-download.js b/plugins/main-download.js new file mode 100644 index 0000000000000000000000000000000000000000..933a4cbefa117738de7db850fdcbba8ae24c7e13 --- /dev/null +++ b/plugins/main-download.js @@ -0,0 +1,222 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const _0x59c8a1=_0x3cc3;(function(_0x522a97,_0x924d45){const _0x5e3251=_0x3cc3,_0x4dd1ed=_0x522a97();while(!![]){try{const _0xd50ebe=parseInt(_0x5e3251(0x1bc))/0x1+-parseInt(_0x5e3251(0x104))/0x2+parseInt(_0x5e3251(0x1a0))/0x3*(parseInt(_0x5e3251(0x1cc))/0x4)+parseInt(_0x5e3251(0x15e))/0x5+-parseInt(_0x5e3251(0x178))/0x6*(-parseInt(_0x5e3251(0x16c))/0x7)+-parseInt(_0x5e3251(0x112))/0x8+-parseInt(_0x5e3251(0x119))/0x9*(parseInt(_0x5e3251(0x1d3))/0xa);if(_0xd50ebe===_0x924d45)break;else _0x4dd1ed['push'](_0x4dd1ed['shift']());}catch(_0x2ef58e){_0x4dd1ed['push'](_0x4dd1ed['shift']());}}}(_0x573c,0x30f2c));function hi(){const _0x913382=_0x3cc3;console[_0x913382(0x115)](_0x913382(0x182));}hi();const {fetchJson}=require('../lib/functions'),{downloadTiktok}=require(_0x59c8a1(0x13a)),{facebook}=require('@mrnima/facebook-downloader'),cheerio=require(_0x59c8a1(0x12a)),{igdl}=require(_0x59c8a1(0x15b)),axios=require(_0x59c8a1(0x17a)),{cmd,commands}=require(_0x59c8a1(0x16f));cmd({'pattern':_0x59c8a1(0x189),'alias':['tt'],'react':'🎥','desc':'download\x20tt\x20videos','category':_0x59c8a1(0x12b),'filename':__filename},async(_0x5ae9c0,_0x3c333b,_0x2b4570,{from:_0x9844ab,quoted:_0x7df7b4,body:_0xc7bd11,isCmd:_0x40282a,command:_0x3a1509,args:_0x225720,q:_0x41b239,isGroup:_0x5e07ff,sender:_0x4841c7,senderNumber:_0x91626b,botNumber2:_0xaaa8f4,botNumber:_0x5df9a4,pushname:_0x1f910c,isMe:_0x2861a7,isOwner:_0x5caa8a,groupMetadata:_0x191640,groupName:_0x20a3a6,participants:_0x55627d,groupAdmins:_0x634660,isBotAdmins:_0x253299,isAdmins:_0x17e8fe,reply:_0xd1d81c})=>{const _0x4058ae=_0x59c8a1;try{if(!_0x41b239&&!_0x41b239[_0x4058ae(0x162)]('https://'))return _0xd1d81c(_0x4058ae(0x113));_0x2b4570[_0x4058ae(0x1c7)]('⬇️');let _0x1a86fa=await downloadTiktok(_0x41b239),_0x2608b1='╭━━━〔\x20*SUBZERO-MD*\x20〕━━━┈⊷\x0a┃▸╭───────────\x0a┃▸┃๏\x20*TIKTOK\x20DOWNLOADER*\x0a┃▸└───────────···๏\x0a╰────────────────┈⊷\x0a╭━━━❐━⪼\x0a┇๏\x20*Title*\x20-\x20'+_0x1a86fa[_0x4058ae(0x141)][_0x4058ae(0x106)]+_0x4058ae(0x142);const _0x13dcc5=await _0x5ae9c0['sendMessage'](_0x9844ab,{'image':{'url':_0x1a86fa[_0x4058ae(0x141)][_0x4058ae(0x19b)]},'caption':_0x2608b1}),_0x474438=_0x13dcc5[_0x4058ae(0x195)]['id'];_0x5ae9c0['ev']['on'](_0x4058ae(0x125),async _0x2ef136=>{const _0x31bb7d=_0x4058ae,_0x5df53b=_0x2ef136[_0x31bb7d(0x1c1)][0x0];if(!_0x5df53b[_0x31bb7d(0x1c3)])return;const _0x3c75c2=_0x5df53b['message'][_0x31bb7d(0x1b5)]||_0x5df53b['message']['extendedTextMessage']?.['text'],_0x2e299b=_0x5df53b['key']['remoteJid'],_0x28cf6b=_0x5df53b[_0x31bb7d(0x1c3)][_0x31bb7d(0x1ce)]&&_0x5df53b[_0x31bb7d(0x1c3)][_0x31bb7d(0x1ce)][_0x31bb7d(0x11e)]['stanzaId']===_0x474438;if(_0x28cf6b){await _0x5ae9c0['sendMessage'](_0x2e299b,{'react':{'text':'⬇️','key':_0x5df53b[_0x31bb7d(0x195)]}});let _0x4b65bf=_0x1a86fa[_0x31bb7d(0x141)];await _0x5ae9c0[_0x31bb7d(0x13e)](_0x2e299b,{'react':{'text':'⬆️','key':_0x5df53b['key']}});if(_0x3c75c2==='1')await _0x5ae9c0[_0x31bb7d(0x13e)](_0x2e299b,{'video':{'url':_0x4b65bf['dl_link'][_0x31bb7d(0x193)]},'caption':_0x31bb7d(0x1d5)},{'quoted':_0x5df53b});else{if(_0x3c75c2==='2')await _0x5ae9c0['sendMessage'](_0x2e299b,{'video':{'url':_0x4b65bf[_0x31bb7d(0x163)][_0x31bb7d(0x153)]},'caption':_0x31bb7d(0x1d5)},{'quoted':_0x5df53b});else _0x3c75c2==='3'&&await _0x5ae9c0[_0x31bb7d(0x13e)](_0x2e299b,{'audio':{'url':_0x4b65bf[_0x31bb7d(0x163)][_0x31bb7d(0x1a6)]},'mimetype':_0x31bb7d(0x11c)},{'quoted':_0x5df53b});}}});}catch(_0x52452c){console[_0x4058ae(0x115)](_0x52452c),_0xd1d81c(''+_0x52452c);}}),cmd({'pattern':'fb','alias':['facebook'],'desc':_0x59c8a1(0x1a3),'category':_0x59c8a1(0x12b),'filename':__filename},async(_0x54cfdd,_0x409152,_0x34d193,{from:_0x4bb953,quoted:_0x10d7b1,body:_0x42454e,isCmd:_0x3bb54b,command:_0x1df1f5,args:_0x4490ee,q:_0x35674b,isGroup:_0x48e836,sender:_0x3b7a73,senderNumber:_0xb6cf8b,botNumber2:_0x4e0368,botNumber:_0x34d40b,pushname:_0xd9e744,isMe:_0x5ea741,isOwner:_0x238375,groupMetadata:_0x4d4573,groupName:_0x306c5d,participants:_0x4ffb79,groupAdmins:_0x57c1f2,isBotAdmins:_0x472bc9,isAdmins:_0x541c31,reply:_0x1c785f})=>{const _0x517e06=_0x59c8a1;try{if(!_0x35674b||!_0x35674b[_0x517e06(0x162)](_0x517e06(0x197)))return _0x54cfdd[_0x517e06(0x13e)](_0x4bb953,{'text':_0x517e06(0x14a)},{'quoted':_0x409152});await _0x54cfdd['sendMessage'](_0x4bb953,{'react':{'text':'⏳','key':_0x409152['key']}});const _0x1bf030=await facebook(_0x35674b),_0x199e5e='╭━━━〔\x20*SUBZERO-MD*\x20〕━━━┈⊷\x0a┃▸╭───────────\x0a┃▸┃๏\x20*FB\x20DOWNLOADER*\x0a┃▸└───────────···๏\x0a╰────────────────┈⊷\x0a╭━━━❐━⪼\x0a┇๏\x20*Duration*\x20-\x20'+_0x1bf030['result'][_0x517e06(0x139)]+_0x517e06(0x157),_0x570d56=await _0x54cfdd[_0x517e06(0x13e)](_0x4bb953,{'image':{'url':_0x1bf030[_0x517e06(0x141)][_0x517e06(0x10e)]},'caption':_0x199e5e},{'quoted':_0x409152}),_0x35d60e=_0x570d56[_0x517e06(0x195)]['id'];_0x54cfdd['ev']['on'](_0x517e06(0x125),async _0x12577b=>{const _0xe8adc9=_0x517e06,_0x1faf9f=_0x12577b['messages'][0x0];if(!_0x1faf9f[_0xe8adc9(0x1c3)])return;const _0x42416c=_0x1faf9f[_0xe8adc9(0x1c3)][_0xe8adc9(0x1b5)]||_0x1faf9f['message'][_0xe8adc9(0x1ce)]?.[_0xe8adc9(0x1d0)],_0x2007e6=_0x1faf9f[_0xe8adc9(0x195)][_0xe8adc9(0x1bf)],_0x3d220b=_0x1faf9f[_0xe8adc9(0x1c3)][_0xe8adc9(0x1ce)]&&_0x1faf9f[_0xe8adc9(0x1c3)]['extendedTextMessage']['contextInfo'][_0xe8adc9(0x13b)]===_0x35d60e;if(_0x3d220b){await _0x54cfdd[_0xe8adc9(0x13e)](_0x2007e6,{'react':{'text':'⬇️','key':_0x1faf9f[_0xe8adc9(0x195)]}});let _0x3f6883=_0x1bf030['result'];await _0x54cfdd[_0xe8adc9(0x13e)](_0x2007e6,{'react':{'text':'⬆️','key':_0x1faf9f[_0xe8adc9(0x195)]}});if(_0x42416c===_0xe8adc9(0x121))await _0x54cfdd[_0xe8adc9(0x13e)](_0x2007e6,{'video':{'url':_0x3f6883[_0xe8adc9(0x16e)]['SD']},'caption':'*©\x20Powered\x20Bʏ\x20SᴜʙZᴇʀᴏ*'},{'quoted':_0x1faf9f});else{if(_0x42416c===_0xe8adc9(0x17c))await _0x54cfdd[_0xe8adc9(0x13e)](_0x2007e6,{'video':{'url':_0x3f6883[_0xe8adc9(0x16e)]['HD']},'caption':'*©\x20Powered\x20Bʏ\x20SᴜʙZᴇʀᴏ*'},{'quoted':_0x1faf9f});else{if(_0x42416c===_0xe8adc9(0x114))await _0x54cfdd[_0xe8adc9(0x13e)](_0x2007e6,{'audio':{'url':_0x3f6883[_0xe8adc9(0x16e)]['SD']},'mimetype':_0xe8adc9(0x11c)},{'quoted':_0x1faf9f});else{if(_0x42416c===_0xe8adc9(0x155))await _0x54cfdd[_0xe8adc9(0x13e)](_0x2007e6,{'document':{'url':_0x3f6883['links']['SD']},'mimetype':'audio/mpeg','fileName':_0xe8adc9(0x1dd),'caption':_0xe8adc9(0x102)},{'quoted':_0x1faf9f});else _0x42416c==='2.3'&&await _0x54cfdd[_0xe8adc9(0x13e)](_0x2007e6,{'audio':{'url':_0x3f6883['links']['SD']},'mimetype':_0xe8adc9(0x110),'ptt':!![]},{'quoted':_0x1faf9f});}}}}});}catch(_0x5d3f3d){console['log'](_0x5d3f3d),_0x1c785f(''+_0x5d3f3d);}}),cmd({'pattern':_0x59c8a1(0x1b0),'alias':['tweet',_0x59c8a1(0x151)],'desc':_0x59c8a1(0x149),'category':'download','filename':__filename},async(_0x400977,_0x50436f,_0x1f878d,{from:_0x4d4663,quoted:_0x1c31de,body:_0x277ab1,isCmd:_0xcb2860,command:_0x4b9da5,args:_0x2a07dc,q:_0x206333,isGroup:_0x59f93b,sender:_0x48c787,senderNumber:_0x52adec,botNumber2:_0x3bd644,botNumber:_0xc9a982,pushname:_0x1cfb08,isMe:_0x351ba6,isOwner:_0x2dffe9,groupMetadata:_0x365ad0,groupName:_0x25e258,participants:_0x23abe8,groupAdmins:_0x3797c4,isBotAdmins:_0x274c42,isAdmins:_0x51965b,reply:_0x31021d})=>{const _0x4e51bb=_0x59c8a1;try{if(!_0x206333||!_0x206333['startsWith'](_0x4e51bb(0x197)))return _0x400977['sendMessage'](_0x4d4663,{'text':_0x4e51bb(0x181)},{'quoted':_0x50436f});await _0x400977['sendMessage'](_0x4d4663,{'react':{'text':'⏳','key':_0x50436f[_0x4e51bb(0x195)]}});const _0x2cbeef=await axios[_0x4e51bb(0x1c8)](_0x4e51bb(0x1a7)+_0x206333),_0x2d5547=_0x2cbeef['data'];if(!_0x2d5547||!_0x2d5547[_0x4e51bb(0x183)]||!_0x2d5547[_0x4e51bb(0x141)])return _0x1f878d['reply'](_0x4e51bb(0x118));const {desc:_0x574846,thumb:_0x42fc8a,video_sd:_0x50729,video_hd:_0x3deca6}=_0x2d5547['result'],_0x4df14e=await _0x400977[_0x4e51bb(0x13e)](_0x4d4663,{'image':{'url':_0x42fc8a},'caption':_0x4e51bb(0x108)},{'quoted':_0x50436f}),_0x5cc4cf=_0x4df14e[_0x4e51bb(0x195)]['id'];_0x400977['ev']['on']('messages.upsert',async _0x1390e0=>{const _0x5aba55=_0x4e51bb,_0x47e1b4=_0x1390e0[_0x5aba55(0x1c1)][0x0];if(!_0x47e1b4['message'])return;const _0x493423=_0x47e1b4[_0x5aba55(0x1c3)][_0x5aba55(0x1b5)]||_0x47e1b4[_0x5aba55(0x1c3)][_0x5aba55(0x1ce)]?.[_0x5aba55(0x1d0)],_0x1aa453=_0x47e1b4[_0x5aba55(0x195)]['remoteJid'],_0x57f985=_0x47e1b4[_0x5aba55(0x1c3)][_0x5aba55(0x1ce)]&&_0x47e1b4[_0x5aba55(0x1c3)][_0x5aba55(0x1ce)][_0x5aba55(0x11e)]['stanzaId']===_0x5cc4cf;if(_0x57f985){await _0x400977['sendMessage'](_0x1aa453,{'react':{'text':'⬇️','key':_0x47e1b4['key']}});if(_0x493423===_0x5aba55(0x121))await _0x400977[_0x5aba55(0x13e)](_0x1aa453,{'video':{'url':_0x50729},'caption':_0x5aba55(0x102)},{'quoted':_0x47e1b4});else{if(_0x493423===_0x5aba55(0x17c))await _0x400977[_0x5aba55(0x13e)](_0x1aa453,{'video':{'url':_0x3deca6},'caption':_0x5aba55(0x102)},{'quoted':_0x47e1b4});else{if(_0x493423==='2.1')await _0x400977[_0x5aba55(0x13e)](_0x1aa453,{'audio':{'url':_0x50729},'mimetype':_0x5aba55(0x11c)},{'quoted':_0x47e1b4});else{if(_0x493423===_0x5aba55(0x155))await _0x400977[_0x5aba55(0x13e)](_0x1aa453,{'document':{'url':_0x50729},'mimetype':_0x5aba55(0x11c),'fileName':_0x5aba55(0x136),'caption':_0x5aba55(0x102)},{'quoted':_0x47e1b4});else _0x493423===_0x5aba55(0x186)&&await _0x400977[_0x5aba55(0x13e)](_0x1aa453,{'audio':{'url':_0x50729},'mimetype':_0x5aba55(0x110),'ptt':!![]},{'quoted':_0x47e1b4});}}}}});}catch(_0x5cdcc3){console[_0x4e51bb(0x115)](_0x5cdcc3),_0x31021d(_0x4e51bb(0x1aa)+_0x5cdcc3);}}),cmd({'pattern':_0x59c8a1(0x167),'alias':[_0x59c8a1(0x128)],'desc':'To\x20download\x20MediaFire\x20files.','react':'🎥','category':_0x59c8a1(0x12b),'filename':__filename},async(_0x43359b,_0x37fd12,_0x22fdaa,{from:_0x5e4e1b,quoted:_0x4945cd,body:_0x3ff829,isCmd:_0x47c498,command:_0x294e44,args:_0xfde5a4,q:_0x481ac5,isGroup:_0x471195,sender:_0x703b2d,senderNumber:_0xaabab6,botNumber2:_0x2f85a5,botNumber:_0x8d3ff8,pushname:_0x202559,isMe:_0x5bb81c,isOwner:_0x5ed012,groupMetadata:_0x8d0f6e,groupName:_0x33a222,participants:_0xe6c465,groupAdmins:_0x570c39,isBotAdmins:_0xe9aa47,isAdmins:_0x2908ad,reply:_0x29c9aa})=>{const _0x329506=_0x59c8a1;try{if(!_0x481ac5)return _0x22fdaa[_0x329506(0x1a5)](_0x329506(0x129));_0x22fdaa['react']('⬇️');const _0x1a6778=await axios[_0x329506(0x1c8)](_0x329506(0x123)+_0x481ac5),_0x2b2be7=_0x1a6778[_0x329506(0x1b9)];if(!_0x2b2be7||!_0x2b2be7[_0x329506(0x183)]||!_0x2b2be7[_0x329506(0x141)]||!_0x2b2be7[_0x329506(0x141)][_0x329506(0x163)])return _0x22fdaa['reply'](_0x329506(0x17b));const _0x1aacc6=_0x2b2be7[_0x329506(0x141)][_0x329506(0x163)],_0x5cfade=_0x2b2be7[_0x329506(0x141)]['fileName']||_0x329506(0x165),_0x58eb24=_0x2b2be7['result'][_0x329506(0x1cf)]||_0x329506(0x184);_0x22fdaa['react']('⬆️');let _0x43057f='╭━━━〔\x20*SUBZERO-MD*\x20〕━━━┈⊷\x0a┃▸╭───────────\x0a┃▸┃๏\x20*MFIRE\x20DOWNLOADER*\x0a┃▸└───────────···๏\x0a╰────────────────┈⊷\x0a╭━━━❐━⪼\x0a┇๏\x20*File\x20Name*\x20-\x20'+_0x5cfade+_0x329506(0x116)+_0x58eb24+_0x329506(0x171);await _0x43359b['sendMessage'](_0x5e4e1b,{'document':{'url':_0x1aacc6},'mimetype':_0x58eb24,'fileName':_0x5cfade,'caption':_0x43057f},{'quoted':_0x37fd12});}catch(_0x3852d9){console[_0x329506(0x192)](_0x3852d9),_0x29c9aa('An\x20error\x20occurred:\x20'+_0x3852d9[_0x329506(0x1c3)]);}}),cmd({'pattern':'ig','alias':['insta',_0x59c8a1(0x1d6)],'desc':_0x59c8a1(0x1d4),'react':'🎥','category':_0x59c8a1(0x12b),'filename':__filename},async(_0x1f1cd2,_0x32e92e,_0x9dcf1a,{from:_0x45c7da,quoted:_0x36d19b,body:_0x3801bf,isCmd:_0x3e59f2,command:_0x18c45d,args:_0x589738,q:_0x26bbee,isGroup:_0x32fd23,sender:_0x31517e,senderNumber:_0x3a401c,botNumber2:_0x1d0315,botNumber:_0x5485e6,pushname:_0x161ba9,isMe:_0x428f45,isOwner:_0x998bd3,groupMetadata:_0x1e0423,groupName:_0xfd2117,participants:_0x5ca132,groupAdmins:_0x34a1eb,isBotAdmins:_0x4520dc,isAdmins:_0x3edbbf,reply:_0x597309})=>{const _0x5db726=_0x59c8a1;try{if(!_0x26bbee)return _0x9dcf1a[_0x5db726(0x1a5)](_0x5db726(0x1d1));_0x9dcf1a['react']('⬇️');let _0x5e1325=await igdl(_0x26bbee),_0x15bec5=await _0x5e1325[_0x5db726(0x1b9)];for(let _0x33bd45=0x0;_0x33bd45<0x14;_0x33bd45++){let _0x28d450=_0x15bec5[_0x33bd45],_0x3c8ae4=_0x28d450[_0x5db726(0x187)];_0x9dcf1a['react']('⬆️'),await _0x1f1cd2[_0x5db726(0x13e)](_0x45c7da,{'video':{'url':_0x3c8ae4},'mimetype':_0x5db726(0xf8),'caption':_0x5db726(0x18b)},{'quoted':_0x32e92e}),_0x9dcf1a['react']('✅');}}catch(_0x3ab295){console[_0x5db726(0x115)](_0x3ab295);}});async function xdl(_0x871c2b){return new Promise((_0x2e53ee,_0x20023b)=>{const _0x8aeac0=_0x3cc3;fetch(''+_0x871c2b,{'method':_0x8aeac0(0x1c8)})[_0x8aeac0(0x1b3)](_0x1a834f=>_0x1a834f[_0x8aeac0(0x1d0)]())[_0x8aeac0(0x1b3)](_0x1a9bbb=>{const _0x47a508=_0x8aeac0,_0x1b7eab=cheerio['load'](_0x1a9bbb,{'xmlMode':![]}),_0x3fea69=_0x1b7eab(_0x47a508(0x109))['attr'](_0x47a508(0x18e)),_0x3369f1=_0x1b7eab(_0x47a508(0x164))[_0x47a508(0x1cb)](_0x47a508(0x18e)),_0x4ae4e6=_0x1b7eab(_0x47a508(0x145))[_0x47a508(0x1cb)](_0x47a508(0x18e)),_0x2adcaa=_0x1b7eab(_0x47a508(0x161))[_0x47a508(0x1cb)](_0x47a508(0x18e)),_0x57a2b3=_0x1b7eab(_0x47a508(0x16d))[_0x47a508(0x1cb)](_0x47a508(0x18e)),_0x2bded2=_0x1b7eab(_0x47a508(0x131))[_0x47a508(0x1cb)](_0x47a508(0x18e)),_0x42a42a=_0x1b7eab(_0x47a508(0x1b7))[_0x47a508(0x1d0)](),_0x17c607=_0x1b7eab(_0x47a508(0x170))[_0x47a508(0x16b)](),_0x2796b6={'low':(_0x17c607['match']('html5player.setVideoUrlLow\x5c(\x27(.*?)\x27\x5c);')||[])[0x1],'high':_0x17c607[_0x47a508(0x117)]('html5player.setVideoUrlHigh\x5c(\x27(.*?)\x27\x5c);'||[])[0x1],'HLS':_0x17c607['match'](_0x47a508(0x1a8)||[])[0x1],'thumb':_0x17c607[_0x47a508(0x117)](_0x47a508(0x1b4)||[])[0x1],'thumb69':_0x17c607[_0x47a508(0x117)](_0x47a508(0x126)||[])[0x1],'thumbSlide':_0x17c607[_0x47a508(0x117)]('html5player.setThumbSlide\x5c(\x27(.*?)\x27\x5c);'||[])[0x1],'thumbSlideBig':_0x17c607[_0x47a508(0x117)](_0x47a508(0x196)||[])[0x1]};_0x2e53ee({'status':!![],'result':{'title':_0x3fea69,'URL':_0x871c2b,'duration':_0x3369f1,'image':_0x4ae4e6,'videoType':_0x2adcaa,'videoWidth':_0x57a2b3,'videoHeight':_0x2bded2,'info':_0x42a42a,'files':_0x2796b6}});})[_0x8aeac0(0x13d)](_0x356be5=>_0x20023b({'status':![],'result':_0x356be5}));});}cmd({'pattern':_0x59c8a1(0x19d),'alias':[_0x59c8a1(0x12e),_0x59c8a1(0x152)],'react':'🫣','desc':'Download\x20xnxx\x20videos','category':_0x59c8a1(0x11a),'use':_0x59c8a1(0x198),'filename':__filename},async(_0x435b41,_0x4d5638,_0x77d4de,{from:_0x46ff07,l:_0x520351,quoted:_0x5eb447,body:_0x3029ae,isCmd:_0x1d9dbb,command:_0x4d1e6b,args:_0x4edd10,q:_0x2aab8b,isGroup:_0x8f1df9,sender:_0x2655cb,senderNumber:_0x504deb,botNumber2:_0x5c1827,botNumber:_0x4c6515,pushname:_0x43ba73,isMe:_0x204bbd,isOwner:_0x3e076a,groupMetadata:_0x3b31ce,groupName:_0x570c51,participants:_0x2145f8,groupAdmins:_0x3de22c,isBotAdmins:_0x89bd77,isAdmins:_0x4b986e,reply:_0x301fd4})=>{const _0x109f2a=_0x59c8a1;try{if(!_0x2aab8b)return _0x301fd4(_0x109f2a(0x150));let _0x330ccf=await xdl(_0x2aab8b),_0x2534b7=_0x330ccf[_0x109f2a(0x141)]['title'];await _0x435b41[_0x109f2a(0x13e)](_0x46ff07,{'video':{'url':_0x330ccf[_0x109f2a(0x141)][_0x109f2a(0x111)][_0x109f2a(0x1ad)]},'caption':_0x2534b7},{'quoted':_0x4d5638});}catch(_0x309a73){_0x301fd4('*Error\x20!!*'),console[_0x109f2a(0x115)](_0x309a73);}}),cmd({'pattern':'xvdown','alias':[_0x59c8a1(0x10a),_0x59c8a1(0x127)],'react':'🫣','desc':'Download\x20xvideos\x20videos','category':'nsfw','use':_0x59c8a1(0x146),'filename':__filename},async(_0x2ae57e,_0x30fbe9,_0x1312ab,{from:_0x28e19a,l:_0x51bc3d,quoted:_0x2b72df,body:_0x91316,isCmd:_0x503ab1,command:_0x4cef13,args:_0x5eee26,q:_0x5705d7,isGroup:_0x4acbbd,sender:_0x3d4b5b,senderNumber:_0x400647,botNumber2:_0x7537c3,botNumber:_0x280913,pushname:_0x5449dc,isMe:_0x404a43,isOwner:_0x11bf39,groupMetadata:_0xe27fb7,groupName:_0x591067,participants:_0x3b528b,groupAdmins:_0x54387d,isBotAdmins:_0x1bef42,isAdmins:_0x14f7d7,reply:_0x3bc6af})=>{const _0x47b92c=_0x59c8a1;try{if(!_0x5705d7)return _0x3bc6af('*Please\x20give\x20me\x20url\x20!!*');let _0x558196=await fetchJson(_0x47b92c(0x14f)+_0x5705d7);const _0x952046=_0x47b92c(0x18d)+_0x558196[_0x47b92c(0x141)][_0x47b92c(0x106)]+_0x47b92c(0x1d2)+_0x558196[_0x47b92c(0x141)][_0x47b92c(0x1da)]+_0x47b92c(0x130)+_0x558196[_0x47b92c(0x141)][_0x47b92c(0x10d)]+_0x47b92c(0x156)+_0x558196['result']['deslike']+_0x47b92c(0xfd)+_0x558196['result'][_0x47b92c(0x143)];await _0x2ae57e['sendMessage'](_0x28e19a,{'video':{'url':_0x558196['result'][_0x47b92c(0x163)]},'caption':_0x952046},{'quoted':_0x30fbe9});}catch(_0x218082){_0x3bc6af('*Error\x20!!*'),console['log'](_0x218082);}});function _0x573c(){const _0x490f4a=['twdl','xnxxdl','download_mp4_2','quality','2.2','\x0a\x0a•\x20*Deslike*\x20-\x20','\x20\x0a╰━━━❐━⪼\x0a╭━❮\x20*Download\x20Video*\x20❯━┈⊷\x0a┃▸╭─────────────·๏\x0a┃▸┃๏\x20*1.1*\x20\x20\x20\x20\x20┃\x20\x20*SD\x20Quality*\x0a┃▸┃๏\x20*1.2*\x20\x20\x20\x20\x20┃\x20\x20*HD\x20Quality*\x0a┃▸└────────────┈⊷\x0a╰━━━━━━━━━━━━━━━⪼\x0a╭━❮\x20*Download\x20Audio*\x20❯━┈⊷\x0a┃▸╭─────────────·๏\x0a┃▸┃๏\x20*2.1*\x20\x20\x20\x20\x20┃\x20\x20*Audio*\x0a┃▸┃๏\x20*2.2*\x20\x20\x20\x20\x20┃\x20\x20*Document*\x0a┃▸┃๏\x20*2.3*\x20\x20\x20\x20\x20┃\x20\x20*Voice*\x0a┃▸└────────────┈⊷\x0a╰━━━━━━━━━━━━━━━⪼\x0a>\x20*©\x20Pᴏᴡᴇʀᴇᴅ\x20Bʏ\x20Sᴜʙᴢᴇʀᴏ\x20♡*','\x20|\x20*©\x20Pᴏᴡᴇʀᴇᴅ\x20Bʏ\x20SᴜʙZᴇʀᴏ*','*Available\x20PixelDrain\x20Download\x20Links:*\x0a','gdrive','ruhend-scraper','Error\x20fetching\x20the\x20download\x20link:','.zip','728560LRBoxg','\x0a⏳\x20*ᴅᴀᴛᴇ:-*\x20','🎬\x20*','meta[property=\x22og:video:type\x22]','startsWith','dl_link','meta[property=\x22og:duration\x22]','mediafire_download','div#player-holder\x20iframe','mediafire','No\x20downloadable\x20link\x20found\x20for\x20this\x20episode.','\x0a🔗\x20Link:\x20','*Please\x20provide\x20a\x20search\x20query!\x20(e.g.,\x20Garfield)*','html','49HpGyCH','meta[property=\x22og:video:width\x22]','links','../command','#video-player-bg\x20>\x20script:nth-child(6)','\x20\x0a╰━━━❐━⪼\x0a>\x20*©\x20Pᴏᴡᴇʀᴇᴅ\x20Bʏ\x20SᴜʙZᴇʀᴏ*','movie2','Invalid\x20selection.\x20Please\x20reply\x20with\x20a\x20valid\x20number.','pop','*Error\x20occurred\x20while\x20scraping!*','downloadUrl','Failed\x20to\x20retrieve\x20the\x20download\x20link\x20for\x20this\x20episode.','232476ggKQvS','https://pixeldrain.com/api/file/','axios','Failed\x20to\x20fetch\x20MediaFire\x20download\x20link.\x20Ensure\x20the\x20link\x20is\x20valid\x20and\x20public.','1.2','🎥\x20*','*An\x20error\x20occurred\x20while\x20searching!*','*\x0a\x0a>\x20Lααɾα-ᴍᴅ\x20✻','downloaded_episode.zip','❌\x20Please\x20provide\x20a\x20valid\x20Twitter\x20URL.','Hello\x20World!','status','application/octet-stream','No\x20results\x20found\x20for:\x20','2.3','url','postedTime','tiktok','div.inner-video-thumb-wrapper\x20img','>\x20*©\x20Pᴏᴡᴇʀᴇᴅ\x20Bʏ\x20SᴜʙZᴇʀᴏ*','http://ws75.aptoide.com/api/7/apps/search/query=','\x0a\x20\x20\x20🔞\x20*XVIDEO\x20DOWNLOADER*\x20🔞\x0a\x0a\x20\x20\x20\x20\x20\x0a•\x20*Title*\x20-\x20','content','https://www.baiscope.lk/?s=','path_alt','📺\x20Search\x20Results\x20for\x20*','error','download_mp4_1','imageUrl','key','html5player.setThumbSlideBig\x5c(\x27(.*?)\x27\x5c);','https://','.xnxx\x20','\x20\x0a┇๏\x20*Developer*\x20-\x20','h5.elementor-post__title\x20>\x20a','image','find','xnxxdown','*🪄\x20ɴᴀᴍᴇ:-*\x20','href','3QLKHsg','stream','updated','Download\x20Facebook\x20videos','baiscope.lk','reply','download_mp3','https://www.dark-yasiya-api.site/download/twitter?url=','html5player.setVideoHLS\x5c(\x27(.*?)\x27\x5c);','join','An\x20error\x20occurred:\x20','pipe','mrnima-moviedl','high','No\x20PixelDrain\x20links\x20found.','list','twitter','fileName','episodeLink','then','html5player.setThumbUrl\x5c(\x27(.*?)\x27\x5c);','conversation','╭━〔\x20*SUBZERO-APPSTORE*\x20〕━┈⊷\x0a┃▸╭───────────\x0a┃▸┃๏\x20*APK\x20DOWNLOADER*\x0a┃▸└───────────···๏\x0a╰────────────────┈⊷\x0a╭━━━❐━⪼\x0a┇๏\x20*Name*\x20-\x20','span.metadata','src','data','MB\x20\x0a┇๏\x20*Package*\x20-\x20','finish','159655sabgBl','Download\x20powered\x20by\x20SUBZERO-ai','*An\x20error\x20occurred\x20while\x20scraping\x20the\x20data.*','remoteJid','forEach','messages','createWriteStream','message','push','datalist','https://api.fgmods.xyz/api/downloader/gdrive?url=','react','get','\x22:\x0a\x0a','length','attr','1564324rgawDi','div.posted-time','extendedTextMessage','fileType','text','Please\x20Give\x20Me\x20a\x20vaild\x20Link...','\x0a\x0a•\x20*Views*\x20-\x20','260EMCCsY','To\x20download\x20instagram\x20videos.','*©\x20Powered\x20Bʏ\x20SᴜʙZᴇʀᴏ*','Instagram','\x0a⬇️\x20Download\x20will\x20follow.','\x20\x0a╰━━━❐━⪼\x0a>\x20*©\x20Gᴇɴᴇʀᴀᴛᴇᴅ\x20ʙʏ\x20Sᴜʙᴢᴇʀᴏ*','imgUrl','views','div.inner-video-cell','slice','SUBZERO/FBDL.mp3','video/mp4','search','Please\x20reply\x20with\x20a\x20valid\x20number\x20from\x20the\x20list.','*Please\x20provide\x20a\x20search\x20query!\x20(e.g.,\x20Avatar)*','dl_links','\x0a\x0a•\x20*Size*\x20-\x20','div.video-title\x20>\x20a','name','developer','sinhalasub','*©\x20Pᴏᴡᴇʀᴇᴅ\x20Bʏ\x20SᴜʙZᴇʀᴏ*','*\x0a🔗\x20Link:\x20','416086TCIBHc','Download\x20apk.','title','application/vnd.android.package-archive','╭━━━〔\x20*SUBZERO-MD*\x20〕━━━┈⊷\x0a┃▸╭───────────\x0a┃▸┃๏\x20*TWITTER\x20DOWNLOADER*\x0a┃▸└───────────···๏\x0a╰────────────────┈⊷\x0a╭━❮\x20*Download\x20Video*\x20❯━┈⊷\x0a┃▸╭─────────────·๏\x0a┃▸┃๏\x20*1.1*\x20\x20\x20\x20\x20┃\x20\x20*SD\x20Quality*\x0a┃▸┃๏\x20*1.2*\x20\x20\x20\x20\x20┃\x20\x20*HD\x20Quality*\x0a┃▸└────────────┈⊷\x0a╰━━━━━━━━━━━━━━━⪼\x0a╭━❮\x20*Download\x20Audio*\x20❯━┈⊷\x0a┃▸╭─────────────·๏\x0a┃▸┃๏\x20*2.1*\x20\x20\x20\x20\x20┃\x20\x20*Audio*\x0a┃▸┃๏\x20*2.2*\x20\x20\x20\x20\x20┃\x20\x20*Document*\x0a┃▸┃๏\x20*2.3*\x20\x20\x20\x20\x20┃\x20\x20*Voice*\x0a┃▸└────────────┈⊷\x0a╰━━━━━━━━━━━━━━━⪼\x0a>\x20*©\x20Pᴏᴡᴇʀᴇᴅ\x20Bʏ\x20Sᴜʙᴢᴇʀᴏ-Aɪ\x20♡*','meta[property=\x22og:title\x22]','dlxv','\x20-\x20','Error\x20downloading\x20ZIP\x20file:','like','thumbnail','mimetype','audio/mp4','files','2942824scWfNi','*`Need\x20url`*','2.1','log','\x20\x0a┇๏\x20*File\x20Type*\x20-\x20','match','Failed\x20to\x20retrieve\x20Twitter\x20video.\x20Please\x20check\x20the\x20link\x20and\x20try\x20again.','66213asZFYS','nsfw','https://ginisisilacartoon.net/search.php?q=','audio/mpeg','An\x20error\x20occurred\x20while\x20trying\x20to\x20fetch\x20the\x20download\x20link.','contextInfo','each','*Invalid\x20selection.\x20Please\x20choose\x20a\x20valid\x20number.*','1.1',':*\x0a\x0a','https://www.dark-yasiya-api.site/download/mfire?url=','application/zip','messages.upsert','html5player.setThumbUrl169\x5c(\x27(.*?)\x27\x5c);','xvdl','mfire','Please\x20provide\x20a\x20valid\x20MediaFire\x20link.','cheerio','download','An\x20error\x20occurred\x20while\x20fetching\x20movie\x20details.\x20Please\x20try\x20again.','link','dlxnxx','.*\x20','\x0a\x0a•\x20*Like*\x20-\x20','meta[property=\x22og:video:height\x22]','\x0a\x0a☘\x20*We\x20are\x20uploading\x20the\x20Movie/Episode\x20you\x20requested.*','Error\x20during\x20search:','package','file','SUBZERO/TWDL.mp3','*Download\x20link\x20not\x20found\x20for\x20the\x20selected\x20episode.*','*©\x20Pᴏᴡᴇʀᴇᴅ\x20Bʏ\x20SᴜʙZᴇʀᴏ','duration','@mrnima/tiktok-downloader','stanzaId','unlinkSync','catch','sendMessage','Search\x20movies\x20on\x20sinhalasub\x20and\x20get\x20download\x20links','&apikey=mnp3grlZ','result','\x20\x0a╰━━━❐━⪼\x0a╭━❮\x20*Download\x20Video*\x20❯━┈⊷\x0a┃▸╭─────────────·๏\x0a┃▸┃๏\x20*1*\x20\x20\x20\x20\x20┃\x20\x20*SD\x20Quality*\x0a┃▸┃๏\x20*2*\x20\x20\x20\x20\x20┃\x20\x20*HD\x20Quality*\x0a┃▸└────────────┈⊷\x0a╰━━━━━━━━━━━━━━━⪼\x0a╭━❮\x20*Download\x20Audio*\x20❯━┈⊷\x0a┃▸╭─────────────·๏\x0a┃▸┃๏\x20*3*\x20\x20\x20\x20\x20┃\x20\x20*Audio*\x0a┃▸└────────────┈⊷\x0a╰━━━━━━━━━━━━━━━⪼\x0a>\x20*©\x20Pᴏᴡᴇʀᴇᴅ\x20Bʏ\x20Sᴜʙᴢᴇʀᴏ*','size','.mp4','meta[property=\x22og:image\x22]','.xv\x20','\x20\x0a┇๏\x20*Size*\x20-\x20','trim','Download\x20Twitter\x20videos','*`Need\x20URL`*','\x0aQuality:\x20','.elementor-post__thumbnail\x20img','load','ginisisila','https://www.dark-yasiya-api.site/download/xvideo?url=','*Please\x20give\x20me\x20url\x20!!*'];_0x573c=function(){return _0x490f4a;};return _0x573c();}const fs=require('fs'),path=require('path');cmd({'pattern':'baiscope','alias':[_0x59c8a1(0x172)],'react':'📑','category':_0x59c8a1(0x12b),'desc':_0x59c8a1(0x1a4),'filename':__filename},async(_0x119094,_0x2fdf55,_0x5a8e90,{from:_0x518a61,q:_0x58de3c,isDev:_0x278fb1,reply:_0x1b72fd})=>{const _0xe9f21c=_0x59c8a1;try{if(!_0x58de3c)return await _0x1b72fd(_0xe9f21c(0xfb));const _0x2a841e=_0xe9f21c(0x18f)+encodeURIComponent(_0x58de3c),_0x30e6e3=await axios[_0xe9f21c(0x1c8)](_0x2a841e),_0x425c50=cheerio['load'](_0x30e6e3[_0xe9f21c(0x1b9)]);let _0x27fe64=[];_0x425c50('article.elementor-post')['each']((_0x12f2f9,_0x45303b)=>{const _0x5eb6f9=_0xe9f21c,_0x286ba8=_0x425c50(_0x45303b)[_0x5eb6f9(0x19c)](_0x5eb6f9(0x19a))[_0x5eb6f9(0x1d0)]()[_0x5eb6f9(0x148)](),_0x292c7e=_0x425c50(_0x45303b)[_0x5eb6f9(0x19c)](_0x5eb6f9(0x19a))[_0x5eb6f9(0x1cb)](_0x5eb6f9(0x19f)),_0x25e27c=_0x425c50(_0x45303b)['find'](_0x5eb6f9(0x14c))[_0x5eb6f9(0x1cb)](_0x5eb6f9(0x1b8));_0x286ba8&&_0x292c7e&&_0x25e27c&&_0x27fe64[_0x5eb6f9(0x1c4)]({'title':_0x286ba8,'episodeLink':_0x292c7e,'imgUrl':_0x25e27c});});if(_0x27fe64[_0xe9f21c(0x1ca)]===0x0)return await _0x1b72fd(_0xe9f21c(0x185)+_0x58de3c);let _0x13fcf2='📺\x20Search\x20Results\x20for\x20*'+_0x58de3c+':*\x0a\x0a';_0x27fe64[_0xe9f21c(0x1c0)]((_0x1e4d2b,_0x27a529)=>{const _0x539451=_0xe9f21c;_0x13fcf2+='*'+(_0x27a529+0x1)+'.*\x20'+_0x1e4d2b[_0x539451(0x106)]+_0x539451(0x169)+_0x1e4d2b[_0x539451(0x1b2)]+'\x0a\x0a';});const _0x1e43cd=await _0x119094[_0xe9f21c(0x13e)](_0x518a61,{'text':_0x13fcf2},{'quoted':_0x5a8e90}),_0x1ba2cb=_0x1e43cd['key']['id'];_0x119094['ev']['on']('messages.upsert',async _0xb4c040=>{const _0x35b758=_0xe9f21c,_0x4a5697=_0xb4c040[_0x35b758(0x1c1)][0x0];if(!_0x4a5697[_0x35b758(0x1c3)])return;const _0x42f493=_0x4a5697[_0x35b758(0x1c3)][_0x35b758(0x1b5)]||_0x4a5697['message']['extendedTextMessage']?.[_0x35b758(0x1d0)],_0x135d64=_0x4a5697['key']['remoteJid'],_0xba153d=_0x4a5697['message'][_0x35b758(0x1ce)]&&_0x4a5697[_0x35b758(0x1c3)][_0x35b758(0x1ce)][_0x35b758(0x11e)][_0x35b758(0x13b)]===_0x1ba2cb;if(_0xba153d){const _0x2338cf=parseInt(_0x42f493[_0x35b758(0x148)]());if(!isNaN(_0x2338cf)&&_0x2338cf>0x0&&_0x2338cf<=_0x27fe64[_0x35b758(0x1ca)]){const _0x4caca7=_0x27fe64[_0x2338cf-0x1],_0x4c6ae7=await axios[_0x35b758(0x1c8)](_0x4caca7['episodeLink']),_0x90849d=cheerio[_0x35b758(0x14d)](_0x4c6ae7[_0x35b758(0x1b9)]),_0x1a4ea8=_0x90849d('a.dlm-buttons-button')['attr']('href');if(_0x1a4ea8){await _0x119094['sendMessage'](_0x135d64,{'image':{'url':_0x4caca7[_0x35b758(0x1d9)]},'caption':_0x35b758(0x160)+_0x4caca7[_0x35b758(0x106)]+_0x35b758(0x103)+_0x4caca7[_0x35b758(0x1b2)]+_0x35b758(0x1d7)},{'quoted':_0x4a5697});const _0x28536a=path[_0x35b758(0x1a9)](__dirname,_0x35b758(0x180)),_0x1a08bc=fs[_0x35b758(0x1c2)](_0x28536a),_0x36d547=await axios({'url':_0x1a4ea8,'method':'GET','responseType':_0x35b758(0x1a1)});_0x36d547[_0x35b758(0x1b9)][_0x35b758(0x1ab)](_0x1a08bc),_0x1a08bc['on'](_0x35b758(0x1bb),async()=>{const _0x4822ee=_0x35b758;await _0x119094['sendMessage'](_0x135d64,{'document':{'url':_0x28536a},'mimetype':_0x4822ee(0x124),'fileName':_0x4caca7['title']+_0x4822ee(0x15d),'caption':'*'+_0x4caca7[_0x4822ee(0x106)]+_0x4822ee(0x17f)},{'quoted':_0x4a5697}),fs[_0x4822ee(0x13c)](_0x28536a);}),_0x1a08bc['on']('error',_0x4cfcbf=>{const _0x3d9491=_0x35b758;console['error'](_0x3d9491(0x10c),_0x4cfcbf),_0x1b72fd('*Error\x20downloading\x20the\x20episode\x20ZIP\x20file.*');});}else await _0x1b72fd(_0x35b758(0x137));}else await _0x1b72fd(_0x35b758(0x120));}});}catch(_0x3c1cad){console[_0xe9f21c(0x192)](_0x3c1cad),await _0x1b72fd(_0xe9f21c(0x1be));}}),cmd({'pattern':_0x59c8a1(0x14e),'react':'📑','category':'download','desc':'ginisisilacartoon.net','filename':__filename},async(_0x18e799,_0x5b0e42,_0x199241,{from:_0x3a07e7,q:_0xb03acc,isDev:_0x451fe5,reply:_0x2eaf08})=>{const _0x1bdbeb=_0x59c8a1;try{if(!_0xb03acc)return await _0x2eaf08(_0x1bdbeb(0x16a));const _0x1af8bb=_0x1bdbeb(0x11b)+encodeURIComponent(_0xb03acc),_0x2dbe37=await axios[_0x1bdbeb(0x1c8)](_0x1af8bb),_0x3baeea=cheerio[_0x1bdbeb(0x14d)](_0x2dbe37[_0x1bdbeb(0x1b9)]);let _0x42527a=[];_0x3baeea(_0x1bdbeb(0x1db))[_0x1bdbeb(0x11f)]((_0x5aa3d5,_0x45f029)=>{const _0x316be8=_0x1bdbeb,_0x4d8661=_0x3baeea(_0x45f029)['find'](_0x316be8(0xfe))[_0x316be8(0x1cb)](_0x316be8(0x106)),_0x30ffda=_0x3baeea(_0x45f029)['find'](_0x316be8(0x1cd))['text']()['trim'](),_0x5b5308=_0x3baeea(_0x45f029)[_0x316be8(0x19c)](_0x316be8(0xfe))[_0x316be8(0x1cb)](_0x316be8(0x19f)),_0x5ef472=_0x3baeea(_0x45f029)[_0x316be8(0x19c)](_0x316be8(0x18a))['attr'](_0x316be8(0x1b8));_0x4d8661&&_0x5b5308&&_0x42527a[_0x316be8(0x1c4)]({'title':_0x4d8661,'postedTime':_0x30ffda,'episodeLink':'https://ginisisilacartoon.net/'+_0x5b5308,'imageUrl':_0x5ef472});});if(_0x42527a[_0x1bdbeb(0x1ca)]===0x0)return await _0x2eaf08(_0x1bdbeb(0x185)+_0xb03acc);let _0x460b8b=_0x1bdbeb(0x191)+_0xb03acc+_0x1bdbeb(0x122);_0x42527a[_0x1bdbeb(0x1c0)]((_0x10431c,_0x2425d9)=>{const _0x539f50=_0x1bdbeb;_0x460b8b+='*'+(_0x2425d9+0x1)+'.*\x20'+_0x10431c[_0x539f50(0x106)]+'\x0a🗓️\x20Posted:\x20'+_0x10431c[_0x539f50(0x188)]+_0x539f50(0x169)+_0x10431c['episodeLink']+'\x0a\x0a';});const _0x56ec96=await _0x18e799['sendMessage'](_0x3a07e7,{'text':_0x460b8b},{'quoted':_0x199241}),_0x1fc6bd=_0x56ec96[_0x1bdbeb(0x195)]['id'];_0x18e799['ev']['on'](_0x1bdbeb(0x125),async _0x5dd909=>{const _0x4315b8=_0x1bdbeb,_0x4fd426=_0x5dd909['messages'][0x0];if(!_0x4fd426[_0x4315b8(0x1c3)])return;const _0x1c4419=_0x4fd426[_0x4315b8(0x1c3)][_0x4315b8(0x1b5)]||_0x4fd426['message'][_0x4315b8(0x1ce)]?.[_0x4315b8(0x1d0)],_0x568126=_0x4fd426[_0x4315b8(0x195)][_0x4315b8(0x1bf)],_0x24db8a=_0x4fd426[_0x4315b8(0x1c3)][_0x4315b8(0x1ce)]&&_0x4fd426['message'][_0x4315b8(0x1ce)][_0x4315b8(0x11e)][_0x4315b8(0x13b)]===_0x1fc6bd;if(_0x24db8a){const _0x36f9f9=parseInt(_0x1c4419[_0x4315b8(0x148)]());if(!isNaN(_0x36f9f9)&&_0x36f9f9>0x0&&_0x36f9f9<=_0x42527a[_0x4315b8(0x1ca)]){const _0x4e5378=_0x42527a[_0x36f9f9-0x1],_0xded761=_0x4315b8(0x19e)+_0x4e5378['title']+_0x4315b8(0x15f)+_0x4e5378[_0x4315b8(0x188)]+'\x0a📎\x20*ᴇᴘɪꜱᴏᴅᴇ\x20ʟɪɴᴋ*:-\x20'+_0x4e5378['episodeLink']+_0x4315b8(0x132),_0x187ea8={'image':{'url':_0x4e5378[_0x4315b8(0x194)]},'caption':_0xded761};await _0x18e799['sendMessage'](_0x568126,_0x187ea8,{'quoted':_0x4fd426});const _0x462cc7=await axios['get'](_0x4e5378[_0x4315b8(0x1b2)]),_0x48f6ca=cheerio[_0x4315b8(0x14d)](_0x462cc7[_0x4315b8(0x1b9)]),_0x310964=_0x48f6ca(_0x4315b8(0x166))['attr'](_0x4315b8(0x1b8));if(_0x310964){const _0xc4a381=_0x4315b8(0x1c6)+_0x310964+'&apikey=mnp3grlZ';try{const _0x18c43c=await axios['get'](_0xc4a381),_0x532c9f=_0x18c43c[_0x4315b8(0x1b9)]['result'][_0x4315b8(0x176)];_0x532c9f?await _0x18e799[_0x4315b8(0x13e)](_0x568126,{'document':{'url':_0x532c9f},'mimetype':'video/mp4','fileName':'MR\x20FRANK\x20|\x20'+_0x4e5378[_0x4315b8(0x106)]+'.mp4','caption':_0x4e5378[_0x4315b8(0x106)]+_0x4315b8(0x158)},{'quoted':_0x4fd426}):await _0x2eaf08(_0x4315b8(0x177));}catch(_0x5596c7){console[_0x4315b8(0x192)](_0x4315b8(0x15c),_0x5596c7),await _0x2eaf08(_0x4315b8(0x11d));}}else await _0x2eaf08(_0x4315b8(0x168));}else await _0x2eaf08(_0x4315b8(0xfa));}});}catch(_0x3f053b){_0x2eaf08(_0x1bdbeb(0x175)),console[_0x1bdbeb(0x192)](_0x3f053b);}}),cmd({'pattern':'apk','desc':_0x59c8a1(0x105),'category':_0x59c8a1(0x12b),'filename':__filename},async(_0x431328,_0x2aebd9,_0x29da74,{from:_0x17ed1b,quoted:_0x3b3c93,body:_0x599b2c,isCmd:_0x56c6bc,command:_0x674fa2,args:_0x4b82e0,q:_0xeddfaa,isGroup:_0x26e635,sender:_0x5da46f,senderNumber:_0x5a30a2,botNumber2:_0x5bb9b3,botNumber:_0x5e7e12,pushname:_0x361a76,isMe:_0x280328,isOwner:_0x4e654c,groupMetadata:_0x18bce1,groupName:_0x161184,participants:_0x266f3f,groupAdmins:_0x4ed238,isBotAdmins:_0x57bfe5,isAdmins:_0x17195b,reply:_0x46869b})=>{const _0x4f3ac3=_0x59c8a1;try{await _0x29da74[_0x4f3ac3(0x1c7)]('⬇');const _0x20944e=_0x4f3ac3(0x18c)+_0xeddfaa+'/limit=1',_0x58fd62=await axios[_0x4f3ac3(0x1c8)](_0x20944e),_0x562333=_0x58fd62[_0x4f3ac3(0x1b9)];let _0x3527e5=_0x562333[_0x4f3ac3(0x1c5)]['list'][0x0][_0x4f3ac3(0x143)]%0xf4240,_0x37fe2e='.'+_0x3527e5,_0x2ad20a=_0x562333[_0x4f3ac3(0x1c5)][_0x4f3ac3(0x1af)][0x0]['size']/0xf4240,_0x110876=_0x2ad20a-_0x37fe2e,_0x376294=_0x4f3ac3(0x1b6)+_0x562333[_0x4f3ac3(0x1c5)]['list'][0x0][_0x4f3ac3(0xff)]+_0x4f3ac3(0x147)+_0x110876+_0x4f3ac3(0x1ba)+_0x562333[_0x4f3ac3(0x1c5)][_0x4f3ac3(0x1af)][0x0][_0x4f3ac3(0x134)]+'\x20\x0a┇๏\x20*Updated\x20On*\x20-\x20'+_0x562333[_0x4f3ac3(0x1c5)][_0x4f3ac3(0x1af)][0x0][_0x4f3ac3(0x1a2)]+_0x4f3ac3(0x199)+_0x562333[_0x4f3ac3(0x1c5)][_0x4f3ac3(0x1af)][0x0][_0x4f3ac3(0x100)][_0x4f3ac3(0xff)]+_0x4f3ac3(0x1d8);await _0x29da74['react']('⬆'),await _0x431328['sendMessage'](_0x17ed1b,{'document':{'url':_0x562333['datalist'][_0x4f3ac3(0x1af)][0x0][_0x4f3ac3(0x135)][_0x4f3ac3(0x190)]},'fileName':_0x562333[_0x4f3ac3(0x1c5)][_0x4f3ac3(0x1af)][0x0][_0x4f3ac3(0xff)],'mimetype':_0x4f3ac3(0x107),'caption':_0x376294},{'quoted':_0x2aebd9}),await _0x29da74[_0x4f3ac3(0x1c7)]('✅');}catch(_0x2018c6){console[_0x4f3ac3(0x115)](_0x2018c6),_0x46869b(''+_0x2018c6);}});function _0x3cc3(_0x3068fb,_0x2ece26){const _0x573c8c=_0x573c();return _0x3cc3=function(_0x3cc3c1,_0x2bd479){_0x3cc3c1=_0x3cc3c1-0xf8;let _0x1c9dea=_0x573c8c[_0x3cc3c1];return _0x1c9dea;},_0x3cc3(_0x3068fb,_0x2ece26);}const {sinhalaSub}=require(_0x59c8a1(0x1ac));cmd({'pattern':_0x59c8a1(0x101),'alias':['movie'],'react':'📑','category':_0x59c8a1(0x12b),'desc':_0x59c8a1(0x13f),'filename':__filename},async(_0x2bc69a,_0x38095e,_0x39354f,{from:_0x2958ae,q:_0x3ff8b3,reply:_0x26d7d6})=>{const _0x2a5dd0=_0x59c8a1;try{if(!_0x3ff8b3)return await _0x26d7d6('*Please\x20provide\x20a\x20search\x20query!\x20(e.g.,\x20Deadpool)*');var _0x12e4b7=await sinhalaSub();const _0x4698e5=await _0x12e4b7[_0x2a5dd0(0xf9)](_0x3ff8b3),_0x8d5c1=_0x4698e5['result'][_0x2a5dd0(0x1dc)](0x0,0xa);if(!_0x8d5c1||_0x8d5c1[_0x2a5dd0(0x1ca)]===0x0)return await _0x26d7d6(_0x2a5dd0(0x185)+_0x3ff8b3);let _0x3c237b='📽️\x20*Search\x20Results\x20for*\x20\x22'+_0x3ff8b3+_0x2a5dd0(0x1c9);_0x8d5c1[_0x2a5dd0(0x1c0)]((_0x3911aa,_0x3da105)=>{const _0x30b3e2=_0x2a5dd0;_0x3c237b+='*'+(_0x3da105+0x1)+_0x30b3e2(0x12f)+_0x3911aa['title']+_0x30b3e2(0x169)+_0x3911aa[_0x30b3e2(0x12d)]+'\x0a\x0a';});const _0x2e742f=await _0x2bc69a['sendMessage'](_0x2958ae,{'text':_0x3c237b},{'quoted':_0x39354f}),_0x7e6837=_0x2e742f[_0x2a5dd0(0x195)]['id'];_0x2bc69a['ev']['on'](_0x2a5dd0(0x125),async _0x275eb7=>{const _0x37c0c9=_0x2a5dd0,_0x377e4f=_0x275eb7[_0x37c0c9(0x1c1)][0x0];if(!_0x377e4f['message'])return;const _0x55a6bf=_0x377e4f['message'][_0x37c0c9(0x1b5)]||_0x377e4f['message']['extendedTextMessage']?.['text'],_0x36d641=_0x377e4f[_0x37c0c9(0x1c3)][_0x37c0c9(0x1ce)]&&_0x377e4f[_0x37c0c9(0x1c3)][_0x37c0c9(0x1ce)]['contextInfo'][_0x37c0c9(0x13b)]===_0x7e6837;if(_0x36d641){const _0x5cdff7=parseInt(_0x55a6bf[_0x37c0c9(0x148)]());if(!isNaN(_0x5cdff7)&&_0x5cdff7>0x0&&_0x5cdff7<=_0x8d5c1[_0x37c0c9(0x1ca)]){const _0x52d441=_0x8d5c1[_0x5cdff7-0x1],_0x128dad='https://api-site-2.vercel.app/api/sinhalasub/movie?url='+encodeURIComponent(_0x52d441['link']);try{const _0x34711e=await axios[_0x37c0c9(0x1c8)](_0x128dad),_0x2a3f0b=_0x34711e['data'][_0x37c0c9(0x141)],_0x445770=_0x2a3f0b[_0x37c0c9(0xfc)]||[];if(_0x445770[_0x37c0c9(0x1ca)]===0x0)return await _0x26d7d6(_0x37c0c9(0x1ae));let _0x12b4eb=_0x37c0c9(0x17d)+_0x2a3f0b[_0x37c0c9(0x106)]+'*\x0a\x0a';_0x12b4eb+=_0x37c0c9(0x159),_0x445770[_0x37c0c9(0x1c0)]((_0x225381,_0x3ab260)=>{const _0x430254=_0x37c0c9;_0x12b4eb+='*'+(_0x3ab260+0x1)+_0x430254(0x12f)+_0x225381[_0x430254(0x154)]+'\x20-\x20'+_0x225381['size']+_0x430254(0x169)+_0x225381[_0x430254(0x12d)]+'\x0a\x0a';});const _0x3fa690=await _0x2bc69a[_0x37c0c9(0x13e)](_0x2958ae,{'text':_0x12b4eb},{'quoted':_0x377e4f}),_0x1bed6e=_0x3fa690['key']['id'];_0x2bc69a['ev']['on'](_0x37c0c9(0x125),async _0x361530=>{const _0x354c97=_0x37c0c9,_0x328f48=_0x361530[_0x354c97(0x1c1)][0x0];if(!_0x328f48[_0x354c97(0x1c3)])return;const _0x425161=_0x328f48[_0x354c97(0x1c3)][_0x354c97(0x1b5)]||_0x328f48['message'][_0x354c97(0x1ce)]?.[_0x354c97(0x1d0)],_0x157370=_0x328f48[_0x354c97(0x1c3)][_0x354c97(0x1ce)]&&_0x328f48[_0x354c97(0x1c3)][_0x354c97(0x1ce)][_0x354c97(0x11e)]['stanzaId']===_0x1bed6e;if(_0x157370){const _0x591037=parseInt(_0x425161[_0x354c97(0x148)]());if(!isNaN(_0x591037)&&_0x591037>0x0&&_0x591037<=_0x445770[_0x354c97(0x1ca)]){const _0x386b23=_0x445770[_0x591037-0x1],_0x54184a=_0x386b23[_0x354c97(0x12d)]['split']('/')[_0x354c97(0x174)]();await _0x2bc69a['sendMessage'](_0x2958ae,{'react':{'text':'⬇️','key':_0x39354f[_0x354c97(0x195)]}});const _0x2807b1=_0x354c97(0x179)+_0x54184a;await _0x2bc69a[_0x354c97(0x13e)](_0x2958ae,{'react':{'text':'⬆','key':_0x39354f['key']}}),await _0x2bc69a['sendMessage'](_0x2958ae,{'document':{'url':_0x2807b1},'mimetype':_0x354c97(0xf8),'fileName':_0x2a3f0b[_0x354c97(0x106)]+_0x354c97(0x10b)+_0x386b23[_0x354c97(0x154)]+_0x354c97(0x144),'caption':_0x2a3f0b[_0x354c97(0x106)]+_0x354c97(0x14b)+_0x386b23[_0x354c97(0x154)]+'\x0aPowered\x20by\x20SinhalaSub','contextInfo':{'mentionedJid':[],'externalAdReply':{'title':_0x2a3f0b[_0x354c97(0x106)],'body':_0x354c97(0x1bd),'mediaType':0x1,'sourceUrl':_0x52d441[_0x354c97(0x12d)],'thumbnailUrl':_0x2a3f0b[_0x354c97(0x19b)]}}},{'quoted':_0x328f48}),await _0x2bc69a[_0x354c97(0x13e)](_0x2958ae,{'react':{'text':'✅','key':_0x39354f[_0x354c97(0x195)]}});}else await _0x26d7d6(_0x354c97(0x173));}});}catch(_0x292fe9){console['error']('Error\x20fetching\x20movie\x20details:',_0x292fe9),await _0x26d7d6(_0x37c0c9(0x12c));}}else await _0x26d7d6('Invalid\x20selection.\x20Please\x20reply\x20with\x20a\x20valid\x20number.');}});}catch(_0x574d62){console['error'](_0x2a5dd0(0x133),_0x574d62),_0x26d7d6(_0x2a5dd0(0x17e));}}),cmd({'pattern':_0x59c8a1(0x15a),'desc':'To\x20download\x20Gdrive\x20files.','react':'🌐','category':_0x59c8a1(0x12b),'filename':__filename},async(_0xf5ca65,_0x53ce51,_0x370aa1,{from:_0x501ba1,quoted:_0x2ca093,body:_0x3b6eeb,isCmd:_0x44dd81,command:_0x20522f,args:_0x57f194,q:_0x69e7d4,isGroup:_0x3e4f07,sender:_0x5b1cac,senderNumber:_0x2c1228,botNumber2:_0x480195,botNumber:_0x28f79b,pushname:_0x18c8fd,isMe:_0x29be84,isOwner:_0x3b1ee8,groupMetadata:_0x42a2bf,groupName:_0x267f9c,participants:_0x3ebac4,groupAdmins:_0x1568d9,isBotAdmins:_0x33b3a4,isAdmins:_0x214893,reply:_0x4beeec})=>{const _0x43468b=_0x59c8a1;try{await _0xf5ca65['sendMessage'](_0x501ba1,{'react':{'text':'⬇️','key':_0x53ce51['key']}});if(!_0x69e7d4)return _0x370aa1[_0x43468b(0x1a5)](_0x43468b(0x1d1));const _0x207ec9=_0x43468b(0x1c6)+_0x69e7d4+_0x43468b(0x140),_0x2c3cdc=await axios[_0x43468b(0x1c8)](_0x207ec9),_0x24cd9f=_0x2c3cdc[_0x43468b(0x1b9)][_0x43468b(0x141)]['downloadUrl'];_0x24cd9f&&(await _0xf5ca65[_0x43468b(0x13e)](_0x501ba1,{'react':{'text':'⬆️','key':_0x53ce51[_0x43468b(0x195)]}}),await _0xf5ca65[_0x43468b(0x13e)](_0x501ba1,{'document':{'url':_0x24cd9f},'mimetype':_0x2c3cdc[_0x43468b(0x1b9)]['result'][_0x43468b(0x10f)],'fileName':_0x2c3cdc['data']['result'][_0x43468b(0x1b1)],'caption':_0x43468b(0x138)},{'quoted':_0x53ce51})),await _0xf5ca65[_0x43468b(0x13e)](_0x501ba1,{'react':{'text':'✅','key':_0x53ce51[_0x43468b(0x195)]}});}catch(_0xa7c467){console['log'](_0xa7c467);}}); \ No newline at end of file diff --git a/plugins/main-group.js b/plugins/main-group.js new file mode 100644 index 0000000000000000000000000000000000000000..d8f6503ef3974462d9470c0edcac8cb6e41d4234 --- /dev/null +++ b/plugins/main-group.js @@ -0,0 +1,220 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const _0x199e78=_0x3504;(function(_0x33a37a,_0x38d48c){const _0xd0fcaf=_0x3504,_0x526de1=_0x33a37a();while(!![]){try{const _0x17894b=parseInt(_0xd0fcaf(0x1a7))/0x1+-parseInt(_0xd0fcaf(0x11d))/0x2+parseInt(_0xd0fcaf(0x147))/0x3+-parseInt(_0xd0fcaf(0x170))/0x4+-parseInt(_0xd0fcaf(0x19b))/0x5+-parseInt(_0xd0fcaf(0x15c))/0x6*(parseInt(_0xd0fcaf(0x121))/0x7)+parseInt(_0xd0fcaf(0x196))/0x8;if(_0x17894b===_0x38d48c)break;else _0x526de1['push'](_0x526de1['shift']());}catch(_0x40e937){_0x526de1['push'](_0x526de1['shift']());}}}(_0x5584,0x49634));function hi(){const _0xbf16f0=_0x3504;console['log'](_0xbf16f0(0x15e));}hi();const config=require(_0x199e78(0x15b)),{cmd,commands}=require(_0x199e78(0x18b)),{getBuffer,getGroupAdmins,getRandom,h2k,isUrl,Json,runtime,sleep,fetchJson}=require(_0x199e78(0x169)),_0x235552={'pattern':_0x199e78(0x150),'desc':_0x199e78(0x14f),'react':'📋','category':_0x199e78(0x19e),'filename':__filename};cmd(_0x235552,async(_0x2ffb9f,_0x438ba1,_0x16ed81,{from:_0x43f645,q:_0x5c91ff,reply:_0x546ed9,isGroup:_0x1e625f})=>{const _0x372f0b=_0x199e78;if(!_0x1e625f)return _0x546ed9(_0x372f0b(0x1bb));try{console['log'](_0x372f0b(0x116)+_0x43f645);const _0x90c504=await _0x2ffb9f[_0x372f0b(0x127)](_0x43f645);console['log'](_0x90c504);if(_0x90c504['length']>0x0){let _0x764f9c=_0x372f0b(0x14d),_0x2dfcdb=[];_0x90c504[_0x372f0b(0x117)](_0x46be50=>{const _0x3d8a43=_0x372f0b,_0x5ac20b=_0x46be50[_0x3d8a43(0x19a)];_0x764f9c+=_0x3d8a43(0x118)+_0x5ac20b[_0x3d8a43(0x17c)]('@')[0x0]+'\x0a',_0x2dfcdb['push'](_0x5ac20b);});const _0x11536f={'text':_0x764f9c,'mentions':_0x2dfcdb};await _0x2ffb9f[_0x372f0b(0x129)](_0x43f645,_0x11536f);}else _0x546ed9(_0x372f0b(0x11c));}catch(_0x98ae0){console[_0x372f0b(0x1b9)](_0x372f0b(0x12a)+_0x98ae0[_0x372f0b(0x16c)]),_0x546ed9(_0x372f0b(0x1ba));}});const _0x485005={'pattern':_0x199e78(0x1ad),'desc':_0x199e78(0x1b8),'react':'✅','category':_0x199e78(0x19e),'filename':__filename};cmd(_0x485005,async(_0x1f5779,_0x3578f3,_0x134f92,{from:_0x391eb6,reply:_0x57ed51,isGroup:_0x589948})=>{const _0x5dec61=_0x199e78;if(!_0x589948)return _0x57ed51(_0x5dec61(0x1bb));const _0x1a4186=_0x134f92[_0x5dec61(0x154)][_0x5dec61(0x1a2)]('approve')?'approve':_0x5dec61(0x190);try{const _0x2f59ae=await _0x1f5779[_0x5dec61(0x127)](_0x391eb6);if(_0x2f59ae[_0x5dec61(0x119)]===0x0)return _0x57ed51(_0x5dec61(0x1be));let _0x19feb4='Pending\x20Requests\x20to\x20Join\x20the\x20Group:\x0a',_0x249424=[],_0x3642f2=[];_0x2f59ae[_0x5dec61(0x117)](_0x57342a=>{const _0x54f6af=_0x5dec61,_0x5adb4c=_0x57342a[_0x54f6af(0x19a)];_0x19feb4+='😻\x20@'+_0x5adb4c[_0x54f6af(0x17c)]('@')[0x0]+'\x0a',_0x249424[_0x54f6af(0x1bc)](_0x5adb4c),_0x3642f2['push'](_0x5adb4c);});const _0x335025={'text':_0x19feb4,'mentions':_0x249424};await _0x1f5779[_0x5dec61(0x129)](_0x391eb6,_0x335025);const _0x5a00ea=await _0x1f5779[_0x5dec61(0x192)](_0x391eb6,_0x3642f2,_0x1a4186);console['log'](_0x5a00ea),_0x57ed51(_0x5dec61(0x140)+_0x1a4186+_0x5dec61(0x159));}catch(_0x148714){console[_0x5dec61(0x1b9)](_0x5dec61(0x1af)+_0x148714[_0x5dec61(0x16c)]),_0x57ed51('⚠️\x20An\x20error\x20occurred\x20while\x20processing\x20the\x20request.\x20Please\x20try\x20again\x20later.');}});function _0x5584(){const _0x1f9420=['groupAcceptInvite','join','lockgs','Successfully\x20','kick','give_adm','mentionedJid','groupSettingUpdate','close','joinme','368451lkyvJn','main','participant','.updategname','.tag\x20Hi','glink','Pending\x20Requests\x20to\x20Join\x20the\x20Group:\x0a','To\x20Tag\x20all\x20Members\x20for\x20Message','Get\x20list\x20of\x20participants\x20who\x20requested\x20to\x20join\x20the\x20group','joinrequests','groupUpdateDescription','https://raw.githubusercontent.com/SILENTLOVER40/SILENT-SOBX-MD-DATA/refs/heads/main/DATABASE/mreply.json','.promote','body','gdesc','*Couldn\x27t\x20find\x20any\x20user\x20in\x20context*\x20❌','locked','*Please\x20write\x20the\x20new\x20Group\x20Subject*\x20🖊️','ed\x20all\x20join\x20requests.','.kick','../config','16572rUPMuF','remove','Hello\x20World!','ginfo','*\x20🔇','subject','🖇️','unlockgs','Invalid\x20duration!\x20Use\x20`24h`,\x20`7d`,\x20or\x20`90d`.','To\x20Join\x20a\x20Group\x20from\x20Invite\x20link','taggp','upgname','.join\x20<\x20Group\x20Link\x20>','../lib/functions','.mute','hidetag','message','f_revoke','This\x20command\x20can\x20only\x20be\x20used\x20in\x20groups.','Please\x20provide\x20a\x20message\x20to\x20send.','158680FqjMCF','revokelink','tagall','To\x20leave\x20from\x20the\x20group','.unmute','.demote','image','updategdesc','Change\x20to\x20group\x20settings\x20to\x20only\x20admins\x20can\x20send\x20messages\x20&\x20Mr\x20Frank.','groupParticipantsUpdate','desc','unlockgsettings','split','Please\x20use\x20`!disappear\x20on\x20`\x20or\x20`!disappear\x20off`.','❗\x20*User\x20Already\x20an\x20Admin*\x20\x20✔️','To\x20Remove\x20a\x20participant\x20from\x20Group','*At\x20Last,\x20Group\x20Chat\x20Opened\x20by\x20Admin\x20','groupRevokeInvite','gname','promote','*Please\x20add\x20a\x20Message*\x20ℹ️','Turn\x20on/off\x20disappearing\x20messages.','mute','*Please\x20mention\x20a\x20message*\x20ℹ️','contextInfo','Change\x20to\x20group\x20settings\x20to\x20all\x20members\x20can\x20edit\x20group\x20info','*Group\x20link\x20Reseted*\x20⛔','../command','own_cmd','groupinfo','invite','*Please\x20write\x20the\x20Group\x20Link*️\x20🖇️','reject','.invite','groupRequestParticipantsUpdate','revoke','*Successfully\x20removed*\x20\x20✔️','\x0a\x0a📃\x20*Group\x20Description*\x20-\x20','3194304EregDG','\x0a\x0a📬\x20*Participant\x20Count*\x20-\x20','.revoke','announcement','jid','2008815uINhCN','To\x20Tag\x20all\x20Members','🖇️\x20*Group\x20Link*\x0a\x0ahttps://chat.whatsapp.com/','group','you_adm','.leave','disappear','includes','size','FOOTER','.updategdesc','senddm','522707QdVFtW','demote','key','❌\x20*Error\x20Accurated\x20!!*\x0a\x0a','I\x20have\x20rested\x20Enough,\x20Changed\x20\x20group\x20settings\x20to\x20all\x20members\x20can\x20send\x20messages.','>\x20ᴅᴇᴀʀ\x20☣️\x20@','allreq','Change\x20to\x20group\x20settings\x20to\x20only\x20admins\x20can\x20edit\x20group\x20info','Error\x20updating\x20participant\x20requests:\x20','senddisappear','💱\x20*HI\x20ALL\x20!\x20GIVE\x20YOUR\x20ATTENTION\x20PLEASE*\x20\x0a\x20\x0a','.lockgs','lockgsettings','f_taggp','To\x20Change\x20the\x20group\x20description','❗\x20*User\x20Already\x20not\x20an\x20Admin*','owner','Approve\x20or\x20reject\x20all\x20join\x20requests','error','⚠️\x20An\x20error\x20occurred\x20while\x20fetching\x20the\x20pending\x20requests.\x20Please\x20try\x20again\x20later.','This\x20command\x20can\x20only\x20be\x20used\x20in\x20a\x20group\x20chat.','push','*Please\x20write\x20the\x20new\x20Group\x20Description*\x20🖊️','There\x20are\x20no\x20pending\x20requests\x20to\x20manage.','f_join','unlocked','replyMsg','*Please\x20add\x20a\x20Group\x20Jid*\x20ℹ️','msg','24h','*Group\x20settings\x20Locked*\x20🔒','Send\x20a\x20disappearing\x20message.','90d','✔️\x20*Successfully\x20Joined*','\x0a\x0a👤\x20*Group\x20Creator*\x20-\x20','f_mute','quoted','Attempting\x20to\x20fetch\x20pending\x20requests\x20for\x20group:\x20','forEach','😻\x20@','length','kickme','.tagall','No\x20pending\x20requests\x20to\x20join\x20the\x20group.','600042TzhOOm','leave','*Yooh\x20Guys\x20Iam\x20Tired\x20😓,\x20Its\x20Time\x20to\x20rest,\x20Group\x20Chat\x20closed\x20by\x20Admin\x20','*User\x20No\x20longer\x20an\x20Admin*\x20\x20✔️','7XseBeF','f_left','https://chat.whatsapp.com/','.ginfo','f-left','f_leave','groupRequestParticipantsList','*Group\x20settings\x20Unlocked*\x20🔓','sendMessage','Error\x20fetching\x20participant\x20requests:\x20','addadmin','grouplink','profilePictureUrl','upgdesc','map','log','only_gp','removeadmin','open','groupLeave','groupInviteCode','Disappearing\x20messages\x20are\x20now\x20ON\x20for\x20','*\x0a\x0a🐉\x20*Group\x20Jid*\x20-\x20','tag','🌪️','left','To\x20Add\x20a\x20participatant\x20as\x20a\x20Admin','Get\x20group\x20informations.'];_0x5584=function(){return _0x1f9420;};return _0x5584();}const _0x3bcce0={'pattern':_0x199e78(0x1a1),'react':'🌪️','alias':['dm'],'desc':_0x199e78(0x185),'category':_0x199e78(0x148),'filename':__filename};cmd(_0x3bcce0,async(_0x13d32c,_0xf2a7e7,_0xfa9725,{from:_0x2dec3d,isGroup:_0x12c2ce,isAdmins:_0x1ad1ee,args:_0x5300c9})=>{const _0x101cf4=_0x199e78;if(!_0x12c2ce){const _0x21e358={'text':'This\x20command\x20can\x20only\x20be\x20used\x20in\x20groups.'};await _0x13d32c[_0x101cf4(0x129)](_0x2dec3d,_0x21e358);return;}if(!_0x1ad1ee){const _0x43010d={'text':'Only\x20admins\x20can\x20turn\x20on/off\x20disappearing\x20messages.'};await _0x13d32c[_0x101cf4(0x129)](_0x2dec3d,_0x43010d);return;}const _0x36fa3d=_0x5300c9[0x0];if(_0x36fa3d==='on'){const _0x9ad93f=_0x5300c9[0x1];let _0x1f4baa;switch(_0x9ad93f){case _0x101cf4(0x1c4):_0x1f4baa=0x15180;break;case'7d':_0x1f4baa=0x93a80;break;case _0x101cf4(0x111):_0x1f4baa=0x76a700;break;default:const _0x443fd1={'text':_0x101cf4(0x164)};await _0x13d32c['sendMessage'](_0x2dec3d,_0x443fd1);return;}const _0x2797d8={'disappearingMessagesInChat':_0x1f4baa};await _0x13d32c[_0x101cf4(0x129)](_0x2dec3d,_0x2797d8);const _0x5c0723={'text':_0x101cf4(0x136)+_0x9ad93f+'.'};await _0x13d32c[_0x101cf4(0x129)](_0x2dec3d,_0x5c0723);}else{if(_0x36fa3d==='off'){const _0x4f6ea6={'disappearingMessagesInChat':![]};await _0x13d32c[_0x101cf4(0x129)](_0x2dec3d,_0x4f6ea6);const _0x4e3ecb={'text':'Disappearing\x20messages\x20are\x20now\x20OFF.'};await _0x13d32c[_0x101cf4(0x129)](_0x2dec3d,_0x4e3ecb);}else{const _0x4d7e53={'text':_0x101cf4(0x17d)};await _0x13d32c[_0x101cf4(0x129)](_0x2dec3d,_0x4d7e53);}}});const _0x592aaf={'pattern':_0x199e78(0x1a6),'react':_0x199e78(0x139),'alias':[_0x199e78(0x1b0)],'desc':_0x199e78(0x110),'category':_0x199e78(0x148),'filename':__filename};cmd(_0x592aaf,async(_0x3613d6,_0x2a02bf,_0x49f797,{from:_0x2be862,isGroup:_0x4b7a27,isAdmins:_0x37f01b,args:_0x330c1a})=>{const _0x3761b6=_0x199e78;if(!_0x4b7a27){const _0x257f73={'text':_0x3761b6(0x16e)};await _0x3613d6[_0x3761b6(0x129)](_0x2be862,_0x257f73);return;}if(!_0x330c1a[_0x3761b6(0x119)]){const _0x583899={'text':_0x3761b6(0x16f)};await _0x3613d6[_0x3761b6(0x129)](_0x2be862,_0x583899);return;}const _0x38ac81=_0x330c1a[_0x3761b6(0x13e)]('\x20'),_0x417d5a={'text':_0x38ac81},_0x216298={'ephemeralExpiration':0x93a80};await _0x3613d6['sendMessage'](_0x2be862,_0x417d5a,_0x216298);});const _0x4f6b5b={'pattern':_0x199e78(0x186),'react':'🔇','alias':[_0x199e78(0x145),_0x199e78(0x114)],'desc':_0x199e78(0x178),'category':'group','use':_0x199e78(0x16a),'filename':__filename};cmd(_0x4f6b5b,async(_0x3b3a20,_0x4bed3e,_0x111bd8,{from:_0x45abd4,l:_0x31685f,quoted:_0x499aa7,body:_0x2f4b33,isCmd:_0x1b125c,command:_0x372556,args:_0x4ad073,q:_0x38ed93,isGroup:_0x534a06,sender:_0x108c6f,senderNumber:_0x58c2e7,botNumber2:_0x34d5d7,botNumber:_0x2b7c88,pushname:_0x565fa4,isMe:_0x36d6f2,isOwner:_0x314c90,groupMetadata:_0x323c4f,groupName:_0xb9d00a,participants:_0x2540e5,groupAdmins:_0x48b5c2,isBotAdmins:_0x28335e,isCreator:_0xa06666,isDev:_0x5a4a9c,isAdmins:_0x53a83f,reply:_0xd70645})=>{const _0x50fe21=_0x199e78;try{const _0x5ab171=(await fetchJson('https://raw.githubusercontent.com/SILENTLOVER40/SILENT-SOBX-MD-DATA/refs/heads/main/DATABASE/mreply.json'))[_0x50fe21(0x1c1)];if(!_0x534a06)return _0xd70645(_0x5ab171[_0x50fe21(0x131)]);if(!_0x53a83f){const _0x5c4a9d={'quoted':_0x4bed3e};if(!_0x5a4a9c)return _0xd70645(_0x5ab171[_0x50fe21(0x19f)]),_0x5c4a9d;}if(!_0x28335e)return _0xd70645(_0x5ab171[_0x50fe21(0x142)]);await _0x3b3a20['groupSettingUpdate'](_0x45abd4,_0x50fe21(0x199));const _0x13c306={'text':_0x50fe21(0x11f)+_0x565fa4+_0x50fe21(0x160)},_0xd9ffbb={'quoted':_0x4bed3e};await _0x3b3a20[_0x50fe21(0x129)](_0x45abd4,_0x13c306,_0xd9ffbb);}catch(_0x399fee){const _0x5698a2={'text':'❌','key':_0x4bed3e[_0x50fe21(0x1a9)]},_0x579225={'react':_0x5698a2};await _0x3b3a20[_0x50fe21(0x129)](_0x45abd4,_0x579225),console['log'](_0x399fee),_0xd70645(_0x50fe21(0x1aa)+_0x399fee);}});const _0x87e572={'pattern':'unmute','react':'🔇','alias':[_0x199e78(0x133),'f_unmute'],'desc':_0x199e78(0x1ab),'category':'group','use':_0x199e78(0x174),'filename':__filename};cmd(_0x87e572,async(_0xd69e8c,_0x147af3,_0x13ae77,{from:_0x4692d4,l:_0x1d73aa,quoted:_0x235127,body:_0x5951ee,isCmd:_0x578788,command:_0x4f8c6e,args:_0x266fec,q:_0x2dd379,isGroup:_0x1bb284,sender:_0x724d7d,senderNumber:_0x497703,botNumber2:_0x17ffaf,botNumber:_0x4fe944,pushname:_0x1f27d2,isMe:_0x30698a,isOwner:_0x581da7,groupMetadata:_0x295bd2,groupName:_0x245abb,participants:_0x232147,groupAdmins:_0x28ad64,isBotAdmins:_0xfcea3f,isCreator:_0x21d40f,isDev:_0x35127a,isAdmins:_0x46076e,reply:_0x54c87a})=>{const _0x332fcc=_0x199e78;try{const _0x2ae8e4=(await fetchJson(_0x332fcc(0x152)))[_0x332fcc(0x1c1)];if(!_0x1bb284)return _0x54c87a(_0x2ae8e4[_0x332fcc(0x131)]);if(!_0x46076e){const _0x417851={'quoted':_0x147af3};if(!_0x35127a)return _0x54c87a(_0x2ae8e4['you_adm']),_0x417851;}if(!_0xfcea3f)return _0x54c87a(_0x2ae8e4[_0x332fcc(0x142)]);await _0xd69e8c[_0x332fcc(0x144)](_0x4692d4,'not_announcement');const _0x545eef={'text':_0x332fcc(0x180)+_0x1f27d2+_0x332fcc(0x160)},_0xedab56={'quoted':_0x147af3};await _0xd69e8c[_0x332fcc(0x129)](_0x4692d4,_0x545eef,_0xedab56);}catch(_0x341a2f){const _0x5cacc8={'text':'❌','key':_0x147af3['key']},_0x50640a={'react':_0x5cacc8};await _0xd69e8c[_0x332fcc(0x129)](_0x4692d4,_0x50640a),console[_0x332fcc(0x130)](_0x341a2f),_0x54c87a(_0x332fcc(0x1aa)+_0x341a2f);}});const _0x2bff43={'pattern':_0x199e78(0x13f),'react':'🔇','alias':[_0x199e78(0x1b3)],'desc':_0x199e78(0x1ae),'category':_0x199e78(0x19e),'use':_0x199e78(0x1b2),'filename':__filename};cmd(_0x2bff43,async(_0x2c0ab6,_0xdc8556,_0x4cd79a,{from:_0x3ff809,l:_0x593c2f,quoted:_0x9f5ec4,body:_0x4e6549,isCmd:_0x1e94be,command:_0x1e4296,args:_0xd52ce2,q:_0x12f283,isGroup:_0x51cdbe,sender:_0x8c043a,senderNumber:_0x7fd566,botNumber2:_0x4c551c,botNumber:_0x493cc3,pushname:_0x23da3a,isMe:_0x221316,isOwner:_0xe53113,groupMetadata:_0x36ba1d,groupName:_0x2b01b,participants:_0xfa60ad,groupAdmins:_0x2bd159,isBotAdmins:_0x4748bf,isCreator:_0x5d53f1,isDev:_0x215804,isAdmins:_0x471e0e,reply:_0x50f459})=>{const _0x3ae42a=_0x199e78;try{const _0x1ddffe=(await fetchJson(_0x3ae42a(0x152)))['replyMsg'];if(!_0x51cdbe)return _0x50f459(_0x1ddffe[_0x3ae42a(0x131)]);if(!_0x471e0e){const _0x3a926d={'quoted':_0xdc8556};if(!_0x215804)return _0x50f459(_0x1ddffe['you_adm']),_0x3a926d;}if(!_0x4748bf)return _0x50f459(_0x1ddffe['give_adm']);await _0x2c0ab6[_0x3ae42a(0x144)](_0x3ff809,_0x3ae42a(0x157));const _0x46cb3d={'text':_0x3ae42a(0x1c5)},_0x29a78c={'quoted':_0xdc8556};await _0x2c0ab6[_0x3ae42a(0x129)](_0x3ff809,_0x46cb3d,_0x29a78c);}catch(_0x562965){const _0x5803b8={'text':'❌','key':_0xdc8556[_0x3ae42a(0x1a9)]},_0xa6c98f={'react':_0x5803b8};await _0x2c0ab6[_0x3ae42a(0x129)](_0x3ff809,_0xa6c98f),console['log'](_0x562965),_0x50f459('❌\x20*Error\x20Accurated\x20!!*\x0a\x0a'+_0x562965);}});function _0x3504(_0x4cdc47,_0x5e253e){const _0x5584ab=_0x5584();return _0x3504=function(_0x350401,_0x165a23){_0x350401=_0x350401-0x110;let _0x3c1feb=_0x5584ab[_0x350401];return _0x3c1feb;},_0x3504(_0x4cdc47,_0x5e253e);}const _0x285abb={'pattern':_0x199e78(0x163),'react':'🔓','alias':[_0x199e78(0x17b)],'desc':_0x199e78(0x189),'category':_0x199e78(0x19e),'use':'.unlockgs','filename':__filename};cmd(_0x285abb,async(_0x3455b4,_0x74c17a,_0x11860d,{from:_0x2b040b,l:_0x197418,quoted:_0xe43730,body:_0x71d92b,isCmd:_0x32ed0b,command:_0x5e4ee8,args:_0x52c7ca,q:_0x352ed8,isGroup:_0x1b10a5,sender:_0x3e8b33,senderNumber:_0x3c3e44,botNumber2:_0x2c0fdb,botNumber:_0x10b4f0,pushname:_0x1a3d33,isMe:_0x39e012,isOwner:_0x577f24,groupMetadata:_0x3f0367,groupName:_0x99339,participants:_0x5814b9,groupAdmins:_0x5c03f5,isBotAdmins:_0x42bb61,isCreator:_0x4c7925,isDev:_0x23e68c,isAdmins:_0x37ef67,reply:_0x22eb4a})=>{const _0x5923b2=_0x199e78;try{const _0x2c66f0=(await fetchJson(_0x5923b2(0x152)))['replyMsg'];if(!_0x1b10a5)return _0x22eb4a(_0x2c66f0[_0x5923b2(0x131)]);if(!_0x37ef67){const _0x205a46={'quoted':_0x74c17a};if(!_0x23e68c)return _0x22eb4a(_0x2c66f0[_0x5923b2(0x19f)]),_0x205a46;}if(!_0x42bb61)return _0x22eb4a(_0x2c66f0['give_adm']);await _0x3455b4['groupSettingUpdate'](_0x2b040b,_0x5923b2(0x1c0));const _0x63e0f9={'text':_0x5923b2(0x128)},_0x3e0a2c={'quoted':_0x74c17a};await _0x3455b4[_0x5923b2(0x129)](_0x2b040b,_0x63e0f9,_0x3e0a2c);}catch(_0x4a8c07){const _0x86b3ec={'text':'❌','key':_0x74c17a[_0x5923b2(0x1a9)]},_0x5ab26a={'react':_0x86b3ec};await _0x3455b4[_0x5923b2(0x129)](_0x2b040b,_0x5ab26a),console[_0x5923b2(0x130)](_0x4a8c07),_0x22eb4a(_0x5923b2(0x1aa)+_0x4a8c07);}});const _0x2ad4fd={'pattern':_0x199e78(0x11e),'react':'🔓','alias':[_0x199e78(0x13a),_0x199e78(0x11a),_0x199e78(0x126),_0x199e78(0x122),_0x199e78(0x125)],'desc':_0x199e78(0x173),'category':_0x199e78(0x19e),'use':_0x199e78(0x1a0),'filename':__filename};cmd(_0x2ad4fd,async(_0x487151,_0x47d082,_0x29f5ea,{from:_0x3a1f47,l:_0x1be498,quoted:_0x557cd4,body:_0x370583,isCmd:_0x37354f,command:_0x2fd313,args:_0x312c5f,q:_0x18e824,isGroup:_0x1095b7,sender:_0x2e3ed5,senderNumber:_0x115753,botNumber2:_0x227d25,botNumber:_0x4182c2,pushname:_0x280c65,isMe:_0x474a3a,isOwner:_0x20c68a,groupMetadata:_0x55ceed,groupName:_0x1f91d6,participants:_0x9dce24,groupAdmins:_0x13b5de,isBotAdmins:_0x471e94,isCreator:_0x10761c,isDev:_0x15971b,isAdmins:_0x3b193c,reply:_0x5d4c20})=>{const _0xecab88=_0x199e78;try{const _0x345e97=(await fetchJson(_0xecab88(0x152)))[_0xecab88(0x1c1)];if(!_0x1095b7)return _0x5d4c20(_0x345e97[_0xecab88(0x131)]);if(!_0x3b193c){if(!_0x15971b)return _0x5d4c20(_0x345e97[_0xecab88(0x19f)]);}const _0x27ea65={'text':'*Good\x20Bye\x20All*\x20👋🏻'},_0x31d4ca={'quoted':_0x47d082};await _0x487151[_0xecab88(0x129)](_0x3a1f47,_0x27ea65,_0x31d4ca),await _0x487151[_0xecab88(0x134)](_0x3a1f47);}catch(_0x131083){const _0x4882cc={'text':'❌','key':_0x47d082[_0xecab88(0x1a9)]},_0x922cf4={'react':_0x4882cc};await _0x487151[_0xecab88(0x129)](_0x3a1f47,_0x922cf4),console[_0xecab88(0x130)](_0x131083),_0x5d4c20(_0xecab88(0x1aa)+_0x131083);}});const _0x293215={'pattern':'updategname','react':'🔓','alias':[_0x199e78(0x167),_0x199e78(0x182)],'desc':'To\x20Change\x20the\x20group\x20name','category':_0x199e78(0x19e),'use':_0x199e78(0x14a),'filename':__filename};cmd(_0x293215,async(_0x11a7d8,_0x236b80,_0x37dbb2,{from:_0x485674,l:_0xfbdc5e,quoted:_0x2d3af2,body:_0x3a412d,isCmd:_0x3412a,command:_0x3a7e4e,args:_0x28b9d1,q:_0x7e8251,isGroup:_0x23ea90,sender:_0x4166be,senderNumber:_0x4126a5,botNumber2:_0x1b0052,botNumber:_0x39d893,pushname:_0xe51687,isMe:_0x3c8bde,isOwner:_0x156dca,groupMetadata:_0x4c8822,groupName:_0x57d01f,participants:_0x4fb3d8,groupAdmins:_0x1bfb4a,isBotAdmins:_0x3d1b4c,isCreator:_0x385068,isDev:_0x44988c,isAdmins:_0x91462f,reply:_0x4f803f})=>{const _0x57ce6f=_0x199e78;try{const _0x143dc5=(await fetchJson('https://raw.githubusercontent.com/SILENTLOVER40/SILENT-SOBX-MD-DATA/refs/heads/main/DATABASE/mreply.json'))[_0x57ce6f(0x1c1)];if(!_0x23ea90)return _0x4f803f(_0x143dc5[_0x57ce6f(0x131)]);if(!_0x91462f){const _0x1dcd19={'quoted':_0x236b80};if(!_0x44988c)return _0x4f803f(_0x143dc5[_0x57ce6f(0x19f)]),_0x1dcd19;}if(!_0x3d1b4c)return _0x4f803f(_0x143dc5[_0x57ce6f(0x142)]);if(!_0x7e8251)return _0x4f803f(_0x57ce6f(0x158));await _0x11a7d8['groupUpdateSubject'](_0x485674,_0x7e8251);const _0x3714a2={'text':'✔️\x20*Group\x20name\x20Updated*'},_0xec4da1={'quoted':_0x236b80};await _0x11a7d8[_0x57ce6f(0x129)](_0x485674,_0x3714a2,_0xec4da1);}catch(_0x4486ad){const _0x59e0d7={'text':'❌','key':_0x236b80[_0x57ce6f(0x1a9)]},_0x3aeac5={'react':_0x59e0d7};await _0x11a7d8['sendMessage'](_0x485674,_0x3aeac5),console[_0x57ce6f(0x130)](_0x4486ad),_0x4f803f(_0x57ce6f(0x1aa)+_0x4486ad);}});const _0x19cdd8={'pattern':_0x199e78(0x177),'react':'🔓','alias':[_0x199e78(0x12e),_0x199e78(0x155)],'desc':_0x199e78(0x1b5),'category':_0x199e78(0x19e),'use':_0x199e78(0x1a5),'filename':__filename};cmd(_0x19cdd8,async(_0x35f991,_0x579cb3,_0x193e18,{from:_0x17c640,l:_0x239d8c,quoted:_0x5a9619,body:_0x5528e8,isCmd:_0x186b08,command:_0x5d2f76,args:_0x11f058,q:_0x4a7e43,isGroup:_0x1081a3,sender:_0x4b17eb,senderNumber:_0x56f94b,botNumber2:_0x594d2f,botNumber:_0x326990,pushname:_0x3453b1,isMe:_0x38ff98,isOwner:_0x39c9f3,groupMetadata:_0x24c169,groupName:_0x17d16d,participants:_0x107100,groupAdmins:_0x2bbd7,isBotAdmins:_0x5297bf,isCreator:_0x4cc7e8,isDev:_0x40a309,isAdmins:_0x4a462e,reply:_0x272750})=>{const _0x165017=_0x199e78;try{const _0x19ef23=(await fetchJson('https://raw.githubusercontent.com/SILENTLOVER40/SILENT-SOBX-MD-DATA/refs/heads/main/DATABASE/mreply.json'))[_0x165017(0x1c1)];if(!_0x1081a3)return _0x272750(_0x19ef23[_0x165017(0x131)]);if(!_0x4a462e){const _0xd9fc9e={'quoted':_0x579cb3};if(!_0x40a309)return _0x272750(_0x19ef23[_0x165017(0x19f)]),_0xd9fc9e;}if(!_0x5297bf)return _0x272750(_0x19ef23[_0x165017(0x142)]);if(!_0x4a7e43)return _0x272750(_0x165017(0x1bd));await _0x35f991[_0x165017(0x151)](_0x17c640,_0x4a7e43);const _0x2a2d71={'text':'✔️\x20*Group\x20Description\x20Updated*'},_0x520f9d={'quoted':_0x579cb3};await _0x35f991['sendMessage'](_0x17c640,_0x2a2d71,_0x520f9d);}catch(_0x35f16a){const _0x4d4dc6={'text':'❌','key':_0x579cb3[_0x165017(0x1a9)]},_0x2ef1e8={'react':_0x4d4dc6};await _0x35f991['sendMessage'](_0x17c640,_0x2ef1e8),console[_0x165017(0x130)](_0x35f16a),_0x272750(_0x165017(0x1aa)+_0x35f16a);}});const _0x53f490={'pattern':_0x199e78(0x13e),'react':'📬','alias':[_0x199e78(0x146),_0x199e78(0x1bf)],'desc':_0x199e78(0x165),'category':_0x199e78(0x19e),'use':_0x199e78(0x168),'filename':__filename};cmd(_0x53f490,async(_0x427334,_0xe84103,_0x2e029d,{from:_0x3c676f,l:_0xcef56b,quoted:_0xf63d1a,body:_0x3d89e4,isCmd:_0x3fac01,command:_0x156ae7,args:_0x13a44f,q:_0x454353,isGroup:_0x1ccdab,sender:_0x21bf4a,senderNumber:_0x5a52b6,botNumber2:_0x51bd73,botNumber:_0x36967d,pushname:_0x5793ed,isMe:_0x590522,isOwner:_0x20e786,groupMetadata:_0xf2f414,groupName:_0x18cde9,participants:_0x47f8e0,groupAdmins:_0x5d38f9,isBotAdmins:_0x1ac14e,isCreator:_0x3e1721,isDev:_0x521974,isAdmins:_0x144b1f,reply:_0x2a3e11})=>{const _0x72ce3d=_0x199e78;try{const _0x410294=(await fetchJson('https://raw.githubusercontent.com/SILENTLOVER40/SILENT-SOBX-MD-DATA/refs/heads/main/DATABASE/mreply.json'))[_0x72ce3d(0x1c1)];if(!_0x3e1721&&!_0x521974&&!_0x20e786&&!_0x590522)return _0x2a3e11(_0x410294[_0x72ce3d(0x18c)]);if(!_0x454353)return _0x2a3e11(_0x72ce3d(0x18f));let _0x35cc39=_0x13a44f[0x0]['split'](_0x72ce3d(0x123))[0x1];await _0x427334[_0x72ce3d(0x13d)](_0x35cc39);const _0x574014={'text':_0x72ce3d(0x112)},_0x199f95={'quoted':_0xe84103};await _0x427334[_0x72ce3d(0x129)](_0x3c676f,_0x574014,_0x199f95);}catch(_0x217a46){const _0x5b7809={'text':'❌','key':_0xe84103[_0x72ce3d(0x1a9)]},_0x14e53f={'react':_0x5b7809};await _0x427334['sendMessage'](_0x3c676f,_0x14e53f),console[_0x72ce3d(0x130)](_0x217a46),_0x2a3e11(_0x72ce3d(0x1aa)+_0x217a46);}});const _0x4df201={'pattern':_0x199e78(0x18e),'react':_0x199e78(0x162),'alias':[_0x199e78(0x12c),_0x199e78(0x14c)],'desc':'To\x20Get\x20the\x20Group\x20Invite\x20link','category':_0x199e78(0x19e),'use':_0x199e78(0x191),'filename':__filename};cmd(_0x4df201,async(_0x328612,_0xbb33af,_0x397e14,{from:_0x2d0302,l:_0x1f71ff,quoted:_0x3896bd,body:_0x467e3c,isCmd:_0x1fab12,command:_0x291ff8,args:_0x5a04cc,q:_0x240c4e,isGroup:_0x1c6582,sender:_0x1cceb4,senderNumber:_0x570196,botNumber2:_0x4ef89d,botNumber:_0x39f4ea,pushname:_0x2cba2a,isMe:_0x42e8f9,isOwner:_0x1270fb,groupMetadata:_0xfd20b9,groupName:_0x5e9b3b,participants:_0x2ffa8b,groupAdmins:_0x50b479,isBotAdmins:_0x46955c,isCreator:_0x4bebc3,isDev:_0x4d74ea,isAdmins:_0x40ce21,reply:_0x30b983})=>{const _0x1d9165=_0x199e78;try{const _0xf96b8e=(await fetchJson('https://raw.githubusercontent.com/SILENTLOVER40/SILENT-SOBX-MD-DATA/refs/heads/main/DATABASE/mreply.json'))['replyMsg'];if(!_0x1c6582)return _0x30b983(_0xf96b8e[_0x1d9165(0x131)]);if(!_0x40ce21){const _0x15451b={'quoted':_0xbb33af};if(!_0x4d74ea)return _0x30b983(_0xf96b8e[_0x1d9165(0x19f)]),_0x15451b;}if(!_0x46955c)return _0x30b983(_0xf96b8e[_0x1d9165(0x142)]);const _0x47315e=await _0x328612[_0x1d9165(0x135)](_0x2d0302),_0x56af4f={'text':_0x1d9165(0x19d)+_0x47315e},_0x18d24f={'quoted':_0xbb33af};await _0x328612[_0x1d9165(0x129)](_0x2d0302,_0x56af4f,_0x18d24f);}catch(_0x118eb8){const _0x4f56f2={'text':'❌','key':_0xbb33af[_0x1d9165(0x1a9)]},_0x181e96={'react':_0x4f56f2};await _0x328612['sendMessage'](_0x2d0302,_0x181e96),console['log'](_0x118eb8),_0x30b983(_0x1d9165(0x1aa)+_0x118eb8);}});const _0x34bd2a={'pattern':_0x199e78(0x193),'react':_0x199e78(0x162),'alias':['revokegrouplink','resetglink',_0x199e78(0x171),_0x199e78(0x16d)],'desc':'To\x20Reset\x20the\x20group\x20link','category':_0x199e78(0x19e),'use':_0x199e78(0x198),'filename':__filename};cmd(_0x34bd2a,async(_0x220558,_0x3c4e78,_0x4d597c,{from:_0x480f07,l:_0x263060,quoted:_0x4bd5ac,body:_0x30d752,isCmd:_0x533cc4,command:_0x281b83,args:_0x34c1b3,q:_0x37c875,isGroup:_0x49e357,sender:_0x41516c,senderNumber:_0x3d05f3,botNumber2:_0x4fe0dc,botNumber:_0x1527c9,pushname:_0x1105ec,isMe:_0x2c9630,isOwner:_0x39bb24,groupMetadata:_0x38942d,groupName:_0x467366,participants:_0x4bd2e8,groupAdmins:_0x2c3858,isBotAdmins:_0x2489c0,isCreator:_0x14fc8f,isDev:_0x4fc853,isAdmins:_0x5a6072,reply:_0x38599d})=>{const _0x48f841=_0x199e78;try{const _0x1ca24d=(await fetchJson(_0x48f841(0x152)))['replyMsg'];if(!_0x49e357)return _0x38599d(_0x1ca24d[_0x48f841(0x131)]);if(!_0x5a6072){const _0x465774={'quoted':_0x3c4e78};if(!_0x4fc853)return _0x38599d(_0x1ca24d[_0x48f841(0x19f)]),_0x465774;}if(!_0x2489c0)return _0x38599d(_0x1ca24d[_0x48f841(0x142)]);await _0x220558[_0x48f841(0x181)](_0x480f07);const _0x3208f9={'text':_0x48f841(0x18a)},_0x5afe0a={'quoted':_0x3c4e78};await _0x220558[_0x48f841(0x129)](_0x480f07,_0x3208f9,_0x5afe0a);}catch(_0x4f832a){const _0x59dc32={'text':'❌','key':_0x3c4e78[_0x48f841(0x1a9)]},_0x5d88c7={'react':_0x59dc32};await _0x220558[_0x48f841(0x129)](_0x480f07,_0x5d88c7),console[_0x48f841(0x130)](_0x4f832a),_0x38599d(_0x48f841(0x1aa)+_0x4f832a);}});const _0x57538f={'pattern':_0x199e78(0x141),'react':'🥏','alias':[_0x199e78(0x15d)],'desc':_0x199e78(0x17f),'category':_0x199e78(0x19e),'use':_0x199e78(0x15a),'filename':__filename};cmd(_0x57538f,async(_0x270881,_0x4dbf17,_0x1c171b,{from:_0x3d6075,l:_0x198833,quoted:_0x42b898,body:_0x4c29d8,isCmd:_0x539ade,command:_0x2fae7d,mentionByTag:_0x206019,args:_0x44d923,q:_0x210c72,isGroup:_0x516c23,sender:_0x3b48a9,senderNumber:_0x423c17,botNumber2:_0x49d400,botNumber:_0x4a2d97,pushname:_0x4c1491,isMe:_0x12dbb5,isOwner:_0x2a3fb3,groupMetadata:_0x55a8f6,groupName:_0x48ced7,participants:_0x3d8dd6,groupAdmins:_0x19f894,isBotAdmins:_0x1ab85b,isCreator:_0x2dc164,isDev:_0x47c43e,isAdmins:_0x955c69,reply:_0xb3b0a6})=>{const _0x2cfbd7=_0x199e78;try{const _0x11b97a=(await fetchJson('https://raw.githubusercontent.com/SILENTLOVER40/SILENT-SOBX-MD-DATA/refs/heads/main/DATABASE/mreply.json'))[_0x2cfbd7(0x1c1)];if(!_0x516c23)return _0xb3b0a6(_0x11b97a[_0x2cfbd7(0x131)]);if(!_0x955c69){const _0x501966={'quoted':_0x4dbf17};if(!_0x47c43e)return _0xb3b0a6(_0x11b97a[_0x2cfbd7(0x19f)]),_0x501966;}if(!_0x1ab85b)return _0xb3b0a6(_0x11b97a[_0x2cfbd7(0x142)]);let _0x3ad017=_0x4dbf17[_0x2cfbd7(0x143)]?_0x4dbf17['mentionedJid'][0x0]:_0x4dbf17[_0x2cfbd7(0x1c3)][_0x2cfbd7(0x188)][_0x2cfbd7(0x149)]||![];if(!_0x3ad017)return _0xb3b0a6(_0x2cfbd7(0x156));await _0x270881['groupParticipantsUpdate'](_0x3d6075,[_0x3ad017],_0x2cfbd7(0x15d));const _0x175ada={'text':_0x2cfbd7(0x194)},_0xb35e0b={'quoted':_0x4dbf17};await _0x270881[_0x2cfbd7(0x129)](_0x3d6075,_0x175ada,_0xb35e0b);}catch(_0xa522dc){const _0x474926={'text':'❌','key':_0x4dbf17[_0x2cfbd7(0x1a9)]},_0x5cbfdc={'react':_0x474926};await _0x270881['sendMessage'](_0x3d6075,_0x5cbfdc),console[_0x2cfbd7(0x130)](_0xa522dc),_0xb3b0a6(_0x2cfbd7(0x1aa)+_0xa522dc);}});const _0xd699f4={'pattern':_0x199e78(0x183),'react':'🥏','alias':[_0x199e78(0x12b)],'desc':_0x199e78(0x13b),'category':_0x199e78(0x19e),'use':_0x199e78(0x153),'filename':__filename};cmd(_0xd699f4,async(_0x2ee8e1,_0x208263,_0xd535ae,{from:_0x326b42,l:_0xc052c3,quoted:_0x1e75a2,body:_0xacd6fd,isCmd:_0x407f57,command:_0x41e991,mentionByTag:_0x389b40,args:_0x56013b,q:_0x1a8ba6,isGroup:_0x99a411,sender:_0x327ff9,senderNumber:_0x410af4,botNumber2:_0xe0c643,botNumber:_0x6f2d41,pushname:_0x4e24e6,isMe:_0x49a97c,isOwner:_0x1ed83f,groupMetadata:_0x59678b,groupName:_0x53669e,participants:_0x385024,groupAdmins:_0x4cce9c,isBotAdmins:_0x5912bb,isCreator:_0x2e4f0d,isDev:_0x48e045,isAdmins:_0x524aaa,reply:_0x283414})=>{const _0x297fea=_0x199e78;try{const _0xc0be08=(await fetchJson(_0x297fea(0x152)))['replyMsg'];if(!_0x99a411)return _0x283414(_0xc0be08[_0x297fea(0x131)]);if(!_0x524aaa){const _0x2bc157={'quoted':_0x208263};if(!_0x48e045)return _0x283414(_0xc0be08[_0x297fea(0x19f)]),_0x2bc157;}if(!_0x5912bb)return _0x283414(_0xc0be08[_0x297fea(0x142)]);let _0x5aa925=_0x208263[_0x297fea(0x143)]?_0x208263['mentionedJid'][0x0]:_0x208263[_0x297fea(0x1c3)]['contextInfo']['participant']||![];if(!_0x5aa925)return _0x283414(_0x297fea(0x156));const _0x4113d2=await getGroupAdmins(_0x385024);if(_0x4113d2[_0x297fea(0x1a2)](_0x5aa925))return _0x283414(_0x297fea(0x17e));await _0x2ee8e1[_0x297fea(0x179)](_0x326b42,[_0x5aa925],_0x297fea(0x183));const _0x11aee={'text':'*User\x20promoted\x20as\x20an\x20Admin*\x20\x20✔️'},_0x48c3ee={'quoted':_0x208263};await _0x2ee8e1[_0x297fea(0x129)](_0x326b42,_0x11aee,_0x48c3ee);}catch(_0xff17d8){const _0x1f8671={'text':'❌','key':_0x208263[_0x297fea(0x1a9)]},_0x5f0784={'react':_0x1f8671};await _0x2ee8e1[_0x297fea(0x129)](_0x326b42,_0x5f0784),console[_0x297fea(0x130)](_0xff17d8),_0x283414(_0x297fea(0x1aa)+_0xff17d8);}});const _0x10f253={'pattern':_0x199e78(0x1a8),'react':'🥏','alias':[_0x199e78(0x132)],'desc':'To\x20Demote\x20Admin\x20to\x20Member','category':_0x199e78(0x19e),'use':_0x199e78(0x175),'filename':__filename};cmd(_0x10f253,async(_0x3ac351,_0x5dc2ea,_0x512aa7,{from:_0x1711ce,l:_0x2bc0e8,quoted:_0x846887,body:_0x357636,isCmd:_0x2f56b6,command:_0x46f811,mentionByTag:_0x2d786e,args:_0x221497,q:_0x1bf0ac,isGroup:_0x6984ca,sender:_0x574c6d,senderNumber:_0x25eec5,botNumber2:_0x4cd53f,botNumber:_0x19c03a,pushname:_0xcfe85e,isMe:_0x3a578c,isOwner:_0x586966,groupMetadata:_0x5b8cb6,groupName:_0x1adbed,participants:_0x3a19c7,groupAdmins:_0x453bb7,isBotAdmins:_0x483ce9,isCreator:_0x24880e,isDev:_0x44e18c,isAdmins:_0x53001f,reply:_0x807ff4})=>{const _0x2c8e88=_0x199e78;try{const _0x185af3=(await fetchJson(_0x2c8e88(0x152)))['replyMsg'];if(!_0x6984ca)return _0x807ff4(_0x185af3[_0x2c8e88(0x131)]);if(!_0x53001f){const _0x12223c={'quoted':_0x5dc2ea};if(!_0x44e18c)return _0x807ff4(_0x185af3[_0x2c8e88(0x19f)]),_0x12223c;}if(!_0x483ce9)return _0x807ff4(_0x185af3['give_adm']);let _0x4e91f3=_0x5dc2ea['mentionedJid']?_0x5dc2ea[_0x2c8e88(0x143)][0x0]:_0x5dc2ea[_0x2c8e88(0x1c3)][_0x2c8e88(0x188)][_0x2c8e88(0x149)]||![];if(!_0x4e91f3)return _0x807ff4('*Couldn\x27t\x20find\x20any\x20user\x20in\x20context*\x20❌');const _0x207ab3=await getGroupAdmins(_0x3a19c7);if(!_0x207ab3[_0x2c8e88(0x1a2)](_0x4e91f3))return _0x807ff4(_0x2c8e88(0x1b6));await _0x3ac351[_0x2c8e88(0x179)](_0x1711ce,[_0x4e91f3],_0x2c8e88(0x1a8));const _0x1e33eb={'text':_0x2c8e88(0x120)},_0x30a36c={'quoted':_0x5dc2ea};await _0x3ac351[_0x2c8e88(0x129)](_0x1711ce,_0x1e33eb,_0x30a36c);}catch(_0x310923){const _0x30ad59={'text':'❌','key':_0x5dc2ea[_0x2c8e88(0x1a9)]},_0x2975c3={'react':_0x30ad59};await _0x3ac351[_0x2c8e88(0x129)](_0x1711ce,_0x2975c3),console[_0x2c8e88(0x130)](_0x310923),_0x807ff4(_0x2c8e88(0x1aa)+_0x310923);}});const _0x53a4af={'pattern':_0x199e78(0x172),'react':'🔊','alias':['f_tagall'],'desc':_0x199e78(0x19c),'category':_0x199e78(0x19e),'use':_0x199e78(0x11b),'filename':__filename};cmd(_0x53a4af,async(_0x40f65f,_0x4b0820,_0x55e1ef,{from:_0x462425,l:_0x1790fa,quoted:_0x3283ea,body:_0x209ea4,isCmd:_0x2b7e14,command:_0x3d9500,mentionByTag:_0x2c3a59,args:_0x264770,q:_0x2f37d0,isGroup:_0xcc06d8,sender:_0x556d44,senderNumber:_0x3901ef,botNumber2:_0x315776,botNumber:_0x4b4563,pushname:_0x39f8de,isMe:_0x1f3c01,isOwner:_0x392d84,groupMetadata:_0x3221d0,groupName:_0x23ea4e,participants:_0x220fb7,groupAdmins:_0x5b4496,isBotAdmins:_0x291e1f,isCreator:_0x534b67,isDev:_0xb9749f,isAdmins:_0x27fa5e,reply:_0x58600c})=>{const _0x182b2c=_0x199e78;try{const _0x4b6814=(await fetchJson(_0x182b2c(0x152)))[_0x182b2c(0x1c1)];if(!_0xcc06d8)return _0x58600c(_0x4b6814['only_gp']);if(!_0x27fa5e){const _0x5cf453={'quoted':_0x4b0820};if(!_0xb9749f)return _0x58600c(_0x4b6814[_0x182b2c(0x19f)]),_0x5cf453;}if(!_0x291e1f)return _0x58600c(_0x4b6814[_0x182b2c(0x142)]);let _0x3e50a6=_0x182b2c(0x1b1);for(let _0xaf7f6a of _0x220fb7){_0x3e50a6+=_0x182b2c(0x1ac)+_0xaf7f6a['id'][_0x182b2c(0x17c)]('@')[0x0]+'\x0a';}const _0x414212={'quoted':_0x4b0820};_0x40f65f[_0x182b2c(0x129)](_0x462425,{'text':_0x3e50a6,'mentions':_0x220fb7[_0x182b2c(0x12f)](_0x38c332=>_0x38c332['id'])},_0x414212);}catch(_0x40bd15){const _0x35d7ef={'text':'❌','key':_0x4b0820[_0x182b2c(0x1a9)]},_0x236678={'react':_0x35d7ef};await _0x40f65f[_0x182b2c(0x129)](_0x462425,_0x236678),console['log'](_0x40bd15),_0x58600c(_0x182b2c(0x1aa)+_0x40bd15);}});const _0x3220aa={'pattern':_0x199e78(0x16b),'react':'🔊','alias':[_0x199e78(0x138),'f_tag'],'desc':_0x199e78(0x14e),'category':_0x199e78(0x19e),'use':_0x199e78(0x14b),'filename':__filename};cmd(_0x3220aa,async(_0x1a1e4a,_0x436c5b,_0x2e8b1e,{from:_0xd18da6,l:_0x2b9664,quoted:_0xc87805,body:_0x38cb39,isCmd:_0x5d93e2,command:_0x353f4d,mentionByTag:_0x1ea106,args:_0x1648d1,q:_0x20c55f,isGroup:_0x5957a1,sender:_0x5c0c4f,senderNumber:_0x53c2f8,botNumber2:_0x556ffe,botNumber:_0x11cacc,pushname:_0x27811b,isMe:_0x2f4853,isOwner:_0x559990,groupMetadata:_0x55bc88,groupName:_0x57488b,participants:_0x3c04ad,groupAdmins:_0x428dfd,isBotAdmins:_0x2738ac,isCreator:_0x485f42,isDev:_0x3435bb,isAdmins:_0x381e60,reply:_0x19fae9})=>{const _0x233cda=_0x199e78;try{const _0x7c7076=(await fetchJson(_0x233cda(0x152)))[_0x233cda(0x1c1)];if(!_0x5957a1)return _0x19fae9(_0x7c7076[_0x233cda(0x131)]);if(!_0x381e60){const _0x33cca6={'quoted':_0x436c5b};if(!_0x3435bb)return _0x19fae9(_0x7c7076[_0x233cda(0x19f)]),_0x33cca6;}if(!_0x2738ac)return _0x19fae9(_0x7c7076[_0x233cda(0x142)]);if(!_0x20c55f)return _0x19fae9(_0x233cda(0x184));let _0xa97460=''+_0x20c55f;const _0x29c890={'quoted':_0x436c5b};_0x1a1e4a[_0x233cda(0x129)](_0xd18da6,{'text':_0xa97460,'mentions':_0x3c04ad[_0x233cda(0x12f)](_0x22d4c8=>_0x22d4c8['id'])},_0x29c890);}catch(_0x5533e9){const _0x186d87={'text':'❌','key':_0x436c5b[_0x233cda(0x1a9)]},_0x4e9385={'react':_0x186d87};await _0x1a1e4a[_0x233cda(0x129)](_0xd18da6,_0x4e9385),console['log'](_0x5533e9),_0x19fae9(_0x233cda(0x1aa)+_0x5533e9);}});const _0x446ca7={'pattern':_0x199e78(0x166),'react':'🔊','alias':['tggp',_0x199e78(0x1b4)],'desc':_0x199e78(0x14e),'category':_0x199e78(0x19e),'use':_0x199e78(0x14b),'filename':__filename};cmd(_0x446ca7,async(_0x38ee4a,_0x242086,_0x390f01,{from:_0x46edc0,l:_0x1c4af4,quoted:_0x57e007,body:_0x1e351f,isCmd:_0x18995b,command:_0x5e8c7a,mentionByTag:_0x1f46dd,args:_0x22b118,q:_0x5888ac,isGroup:_0x777d02,sender:_0x463a7e,senderNumber:_0x1c56b1,botNumber2:_0x15b4d1,botNumber:_0x14865c,pushname:_0x3c5929,isMe:_0x47dfba,isOwner:_0x5fd946,groupMetadata:_0x72e314,groupName:_0x523c24,participants:_0x167c81,groupAdmins:_0x3ed30a,isBotAdmins:_0x233150,isCreator:_0x4782f5,isDev:_0x301290,isAdmins:_0x169c22,reply:_0x461de8})=>{const _0x10348e=_0x199e78;try{if(!_0x390f01[_0x10348e(0x115)])return _0x461de8(_0x10348e(0x187));if(!_0x5888ac)return _0x461de8(_0x10348e(0x1c2));let _0x2e603e=''+_0x390f01[_0x10348e(0x115)][_0x10348e(0x1c3)];const _0x20f251={'quoted':_0x242086};_0x38ee4a['sendMessage'](_0x5888ac,{'text':_0x2e603e,'mentions':_0x167c81['map'](_0x1bf050=>_0x1bf050['id'])},_0x20f251);}catch(_0x5f239f){const _0x5c0b0a={'text':'❌','key':_0x242086[_0x10348e(0x1a9)]},_0x5e177f={'react':_0x5c0b0a};await _0x38ee4a[_0x10348e(0x129)](_0x46edc0,_0x5e177f),console[_0x10348e(0x130)](_0x5f239f),_0x461de8('❌\x20*Error\x20Accurated\x20!!*\x0a\x0a'+_0x5f239f);}});const _0x4c04aa={'pattern':_0x199e78(0x15f),'react':'🥏','alias':[_0x199e78(0x18d)],'desc':_0x199e78(0x13c),'category':_0x199e78(0x19e),'use':_0x199e78(0x124),'filename':__filename};cmd(_0x4c04aa,async(_0x2626dd,_0x5b52e4,_0x127807,{from:_0x1c6b4d,l:_0x254aba,quoted:_0x3293ab,body:_0x55e1db,isCmd:_0x108a94,command:_0x2b7220,args:_0x49d999,q:_0x1f0393,isGroup:_0x1873b5,sender:_0x202ca2,senderNumber:_0x2f53e1,botNumber2:_0x1a0ac6,botNumber:_0x2bb80a,pushname:_0x4d7045,isMe:_0x5a32da,isOwner:_0x59e3b2,groupMetadata:_0x427d11,groupName:_0x2b4510,participants:_0x32c1dc,groupAdmins:_0x548409,isBotAdmins:_0x55cdec,isCreator:_0xd88bfc,isDev:_0x1e8cc4,isAdmins:_0x282a1f,reply:_0x10ab83})=>{const _0x3cf799=_0x199e78;try{const _0x5c7a90=(await fetchJson('https://raw.githubusercontent.com/SILENTLOVER40/SILENT-SOBX-MD-DATA/refs/heads/main/DATABASE/mreply.json'))[_0x3cf799(0x1c1)];if(!_0x1873b5)return _0x10ab83(_0x5c7a90[_0x3cf799(0x131)]);if(!_0x282a1f){const _0x53f37c={'quoted':_0x5b52e4};if(!_0x1e8cc4)return _0x10ab83(_0x5c7a90[_0x3cf799(0x19f)]),_0x53f37c;}if(!_0x55cdec)return _0x10ab83(_0x5c7a90[_0x3cf799(0x142)]);const _0x5c9fee=await _0x2626dd['groupMetadata'](_0x1c6b4d);let _0x24f2db=await _0x2626dd[_0x3cf799(0x12d)](_0x1c6b4d,_0x3cf799(0x176));const _0xc600dc='\x0a*'+_0x5c9fee[_0x3cf799(0x161)]+_0x3cf799(0x137)+_0x5c9fee['id']+_0x3cf799(0x197)+_0x5c9fee[_0x3cf799(0x1a3)]+_0x3cf799(0x113)+_0x5c9fee[_0x3cf799(0x1b7)]+_0x3cf799(0x195)+_0x5c9fee[_0x3cf799(0x17a)]+'\x0a\x0a',_0x43b21f={'url':_0x24f2db},_0x236103={'quoted':_0x5b52e4};await _0x2626dd[_0x3cf799(0x129)](_0x1c6b4d,{'image':_0x43b21f,'caption':_0xc600dc+config[_0x3cf799(0x1a4)]},_0x236103);}catch(_0x8f5819){const _0x4d3eff={'text':'❌','key':_0x5b52e4[_0x3cf799(0x1a9)]},_0x4439eb={'react':_0x4d3eff};await _0x2626dd['sendMessage'](_0x1c6b4d,_0x4439eb),console['log'](_0x8f5819),_0x10ab83(_0x3cf799(0x1aa)+_0x8f5819);}}); \ No newline at end of file diff --git a/plugins/main-listmenu.js b/plugins/main-listmenu.js new file mode 100644 index 0000000000000000000000000000000000000000..338344e4deeecb8f8771f094e73043039abff0e5 --- /dev/null +++ b/plugins/main-listmenu.js @@ -0,0 +1,217 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const _0x5cd0ab=_0x286a;(function(_0x5121c7,_0x3f20f4){const _0x3d2dd4=_0x286a,_0xbaae76=_0x5121c7();while(!![]){try{const _0xdb5781=parseInt(_0x3d2dd4(0xb8))/0x1*(-parseInt(_0x3d2dd4(0xb6))/0x2)+-parseInt(_0x3d2dd4(0xae))/0x3+-parseInt(_0x3d2dd4(0xba))/0x4+parseInt(_0x3d2dd4(0xb9))/0x5*(parseInt(_0x3d2dd4(0xaf))/0x6)+parseInt(_0x3d2dd4(0xb5))/0x7*(-parseInt(_0x3d2dd4(0xb2))/0x8)+parseInt(_0x3d2dd4(0xb1))/0x9*(-parseInt(_0x3d2dd4(0xb7))/0xa)+parseInt(_0x3d2dd4(0xa9))/0xb*(parseInt(_0x3d2dd4(0xa7))/0xc);if(_0xdb5781===_0x3f20f4)break;else _0xbaae76['push'](_0xbaae76['shift']());}catch(_0x64a70a){_0xbaae76['push'](_0xbaae76['shift']());}}}(_0x23dc,0x7e5f3));function _0x286a(_0x1d0b33,_0x4afeea){const _0x23dcb7=_0x23dc();return _0x286a=function(_0x286a84,_0x8f330f){_0x286a84=_0x286a84-0xa7;let _0xba9a62=_0x23dcb7[_0x286a84];return _0xba9a62;},_0x286a(_0x1d0b33,_0x4afeea);}function hi(){const _0x7231bc=_0x286a;console[_0x7231bc(0xb3)](_0x7231bc(0xb0));}hi();function _0x23dc(){const _0x1252f3=['../config','DESCRIPTION','2178981WbdHPX','42VTVacx','Hello\x20World!','1152mrPuyX','3177704dgZhDh','log','../command','7xgFKqB','4KEdHpD','79720GbaHct','362291UCXCbN','627100YGnAos','112016XyQJeD','sendMessage','sender','3852mbZZVa','menu','86911LvCYgx','120363304325601080@newsletter','menu\x20the\x20bot'];_0x23dc=function(){return _0x1252f3;};return _0x23dc();}const config=require(_0x5cd0ab(0xac)),{cmd,commands}=require(_0x5cd0ab(0xb4));cmd({'pattern':'list','alias':['listcmd','listmenu'],'desc':_0x5cd0ab(0xab),'category':_0x5cd0ab(0xa8),'react':'📃','filename':__filename},async(_0x49347a,_0x3309c7,_0x12497b,{from:_0x5cbab0,quoted:_0x51a5d4,body:_0x4db089,isCmd:_0x1560a4,command:_0x4882a4,args:_0x505633,q:_0x2b4729,isGroup:_0x1592e7,sender:_0x16265c,senderNumber:_0xacf703,botNumber2:_0x4dc37a,botNumber:_0x3982ec,pushname:_0xe9ba59,isMe:_0x17aecd,isOwner:_0x463ba6,groupMetadata:_0x122d0c,groupName:_0x5bf21a,participants:_0x5135af,groupAdmins:_0x1c4b3a,isBotAdmins:_0x1cbc35,isAdmins:_0xd6d15c,reply:_0x165349})=>{const _0x37d784=_0x5cd0ab;try{let _0x9819bc='╭━❮\x20*DOWNLOAD\x20CMD*\x20❯━┈⊷\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.play\x0a┃▸❕\x20Download\x20Audio\x20from\x20yt\x0a┃▸\x20\x0a┃▸📄\x20COMMAND:\x20.song\x0a┃▸❕\x20Download\x20song\x20from\x20yt\x0a┃▸\x20\x0a┃▸📄\x20COMMAND:\x20.apk\x0a┃▸❕\x20Download\x20apk\x20from\x20playstore\x0a┃▸\x20\x0a┃▸📄\x20COMMAND:\x20.video\x0a┃▸❕\x20Download\x20video\x20from\x20yt\x0a┃▸\x20\x0a┃▸📄\x20COMMAND:\x20.fb\x0a┃▸❕\x20Download\x20\x20video\x20from\x20fb\x0a┃▸\x20\x0a┃▸📄\x20COMMAND:\x20.tk\x0a┃▸❕\x20Download\x20video\x20from\x20tiktok\x0a┃▸\x20\x0a┃▸📄\x20COMMAND:\x20.ig\x0a┃▸❕\x20Download\x20video\x20from\x20ig\x0a┃▸\x20\x0a┃▸📄\x20COMMAND:\x20.gdrive\x0a┃▸❕\x20Download\x20drive\x20files\x0a┃▸\x20\x0a┃▸📄\x20COMMAND:\x20.twitter\x0a┃▸❕\x20Download\x20video\x20from\x20Twitter\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.img\x0a┃▸❕\x20Download\x20image\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.darama\x0a┃▸❕\x20Download\x20full\x20episode\x20video\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.play2\x0a┃▸❕\x20Download\x20Audio\x20from\x20yt\x0a┃▸\x20\x0a┃▸📄\x20COMMAND:\x20.video2\x0a┃▸❕\x20Download\x20video\x20from\x20yt\x0a┃▸\x20\x0a┃▸📄\x20COMMAND:\x20.baiscope\x0a┃▸❕\x20Download\x20video\x20from\x20baiscope\x0a┃▸\x20\x0a┃▸📄\x20COMMAND:\x20.mfire\x0a┃▸❕\x20Download\x20mediafire\x20files\x0a╰━━━━━━━━━━━━⪼\x20\x0a\x0a╭━❮\x20*ANMIE\x20CMD*\x20❯━┈⊷\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.yts\x0a┃▸❕\x20Serch\x20videos\x20from\x20yt\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.king\x0a┃▸❕\x20get\x20king\x20about\x20\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.dog\x0a┃▸❕\x20get\x20random\x20dog\x20imgs\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.anime\x20\x0a┃▸❕\x20get\x20anime\x20pics\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.animegirl\x20\x0a┃▸❕\x20get\x20animegirl\x20pics\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.loli\x0a┃▸❕\x20get\x20romantic\x20anime\x20pics\x0a╰━━━━━━━━━━━━⪼\x20\x20\x0a\x0a╭━❮‍\x20*INFO\x20CMD*\x20❯━┈⊷\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.alive\x0a┃▸❕\x20Check\x20online\x20or\x20not\x0a┃▸\x20\x20\x0a┃▸📄\x20COMMAND:\x20.ping\x0a┃▸❕\x20Check\x20bot\x20speed\x0a┃▸\x20\x20\x0a┃▸📄\x20COMMAND:\x20.menu\x0a┃▸❕\x20Nero\x20main\x20menu\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.menu2\x0a┃▸❕\x20Nero\x20main\x20menu2\x0a┃▸\x20\x0a┃▸📄\x20COMMAND:\x20.ai\x0a┃▸❕\x20chat\x20with\x20ai\x20bot\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.system\x0a┃▸❕\x20check\x20bot\x20systems\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.owner\x0a┃▸❕\x20get\x20owner\x20info\x0a┃▸\x20\x0a┃▸📄\x20COMMAND:\x20.status\x0a┃▸❕\x20check\x20bot\x20runtime\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.about\x20\x0a┃▸❕\x20get\x20about\x20bot\x20\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.list\x20\x0a┃▸❕\x20get\x20bot\x20command\x20list\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.script\x20\x0a┃▸❕\x20get\x20bot\x20repository\x20\x0a╰━━━━━━━━━━━━⪼\x0a\x0a╭━❮\x20*OTHER\x20CMD*\x20❯━┈⊷\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.joke\x20\x0a┃▸❕\x20Get\x20Rendom\x20joke\x20\x0a┃▸\x20\x0a┃▸📄\x20COMMAND:\x20.fact\x0a┃▸❕\x20Get\x20Rendom\x20fact\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.githubstalk\x20\x0a┃▸❕\x20Get\x20github\x20data\x20any\x20user\x0a┃▸\x20\x0a┃▸📄\x20COMMAND:\x20.gpass\x0a┃▸❕\x20Get\x20a\x20strong\x20password\x20\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.hack\x0a┃▸❕\x20prank\x20with\x20friends\x20\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.srepo\x20\x0a┃▸❕\x20serch\x20repository\x20\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.define\x20\x0a┃▸❕\x20serch\x20any\x20words\x0a╰━━━━━━━━━━━━⪼\x0a\x0a╭━❮\x20*GROUP\x20CMD*\x20❯━┈⊷\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.mute\x0a┃▸❕\x20Mute\x20group\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.unmute\x0a┃▸❕\x20Unmute\x20group\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.left\x0a┃▸❕\x20left\x20group\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.jid\x0a┃▸❕\x20group\x20jid\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.remove\x0a┃▸❕\x20remove\x20member\x20from\x20group\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.delete\x20\x0a┃▸❕\x20remove\x20sms\x20from\x20group\x20\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.add\x0a┃▸❕\x20add\x20members\x20in\x20group\x20\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.kick\x0a┃▸❕\x20kick\x20any\x20user\x20\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.kickall\x0a┃▸❕\x20remove\x20all\x20members\x20from\x20group\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.setgoodbye\x0a┃▸❕\x20set\x20member\x20leave\x20sms\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.setwelcome\x20\x0a┃▸❕\x20set\x20member\x20welcome\x20sms\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20promote\x20\x0a┃▸❕\x20make\x20group\x20admin\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.demote\x20\x0a┃▸❕\x20dissmis\x20any\x20admin\x20\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.tagall\x0a┃▸❕\x20mention\x20group\x20all\x20members\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.getpic\x0a┃▸❕\x20get\x20group\x20profile\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.invite\x20\x0a┃▸❕\x20get\x20group\x20invite\x20link\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.revoke\x20\x0a┃▸❕\x20reset\x20group\x20link\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.joinrequests\x0a┃▸❕\x20cheack\x20group\x20panding\x20members\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.allreq\x0a┃▸❕\x20add\x20group\x20panding\x20members\x20\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.lockgc\x0a┃▸❕\x20lock\x20group\x20private\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.unlockgc\x0a┃▸❕\x20unlock\x20group\x20all\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.leave\x20\x0a┃▸❕\x20left\x20any\x20group\x20\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.updategname\x0a┃▸❕\x20set\x20group\x20name\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.updategdesc\x0a┃▸❕\x20set\x20group\x20description\x20\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.joim\x0a┃▸❕\x20join\x20invite\x20link\x20\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.hidetag\x0a┃▸❕\x20mention\x20any\x20user\x20hide\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.ginfo\x0a┃▸❕\x20get\x20group\x20information\x20\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.disappear\x20on\x0a┃▸❕\x20on\x20disappear\x20sms\x20in\x20group\x20\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.disappear\x20off\x0a┃▸❕\x20off\x20disappear\x20sms\x20in\x20group\x20\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.senddm\x0a┃▸❕\x20send\x20disappear\x20sms\x20in\x20group\x20\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.disappear\x207d\x2024h\x2090d\x0a┃▸❕\x20set\x20time\x20to\x20disappear\x20sms\x0a╰━━━━━━━━━━━━⪼\x0a\x0a╭━❮\x20*OWNER\x20CMD*\x20❯━┈⊷\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.update\x0a┃▸❕\x20update\x20bot\x20velue\x20\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.restart\x20\x0a┃▸❕\x20restart\x20your\x20bot\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.settings\x0a┃▸❕\x20see\x20bot\x20settings\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.owner\x20\x0a┃▸❕\x20get\x20owner\x20number\x20\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.repo\x20\x0a┃▸❕\x20get\x20bot\x20repository\x20\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.system\x20\x0a┃▸❕\x20check\x20bot\x20systems\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.block\x0a┃▸❕\x20block\x20any\x20user\x20\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.unblock\x20\x0a┃▸❕\x20unblock\x20any\x20user\x20\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.shutdown\x20\x0a┃▸❕\x20logout\x20your\x20bot\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.clearchats\x20\x0a┃▸❕\x20clearchats\x20from\x20ib\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.setpp\x0a┃▸❕\x20update\x20profile\x20pic\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.broadcast\x20\x0a┃▸❕\x20creat\x20broadcast\x20\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.jid\x0a┃▸❕\x20get\x20jid\x20any\x20user\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.gjid\x20\x0a┃▸❕\x20get\x20group\x20jid\x0a╰━━━━━━━━━━━━⪼\x0a\x0a╭━❮\x20*CONVERT\x20CMD*\x20❯━┈⊷\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.sticker\x0a┃▸❕\x20convert\x20photo\x20to\x20sticker\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.tts\x0a┃▸❕\x20change\x20text\x20to\x20voice\x20\x0a┃▸\x0a┃▸📄\x20COMMAND:\x20.trt\x20\x0a┃▸❕\x20change\x20languages\x20\x0a╰━━━━━━━━━━━━⪼\x0a>\x20'+config[_0x37d784(0xad)];await _0x49347a[_0x37d784(0xbb)](_0x5cbab0,{'image':{'url':'https://i.postimg.cc/yNf7rQFw/prn.jpg'},'caption':_0x9819bc,'contextInfo':{'mentionedJid':[_0x12497b[_0x37d784(0xbc)]],'forwardingScore':0x3e7,'isForwarded':!![],'forwardedNewsletterMessageInfo':{'newsletterJid':_0x37d784(0xaa),'newsletterName':'SUBZERO\x20MD','serverMessageId':0x8f}}},{'quoted':_0x3309c7}),await _0x49347a[_0x37d784(0xbb)](_0x5cbab0,{'audio':{'url':'https://github.com/mrfrank-ofc/SUBZERO-MD-DATABASE/raw/refs/heads/main/audios/subzero-menu.mp3'},'mimetype':'audio/mp4','ptt':!![]},{'quoted':_0x3309c7});}catch(_0x301d2a){console[_0x37d784(0xb3)](_0x301d2a),_0x165349(''+_0x301d2a);}}); \ No newline at end of file diff --git a/plugins/main-menu.js b/plugins/main-menu.js new file mode 100644 index 0000000000000000000000000000000000000000..bd67432568150baf0b6e2e16d73c2c4ac82ecfa3 --- /dev/null +++ b/plugins/main-menu.js @@ -0,0 +1,73 @@ + +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const _0x94b4e8=_0x26ae;function _0x2433(){const _0x5ab28b=['*\x0a▧\x20*ᴘʀᴇғɪx*\x20:\x20*','28440dUAHdr','*\x0a▧\x20*ʀᴀᴍ*\x20:\x20','BOT_NAME','sender','PREFIX','2754552yzNSey','https://i.postimg.cc/WpQLCg85/White-and-Green-Simple-Professional-Business-Project-Presentation.jpg','1547808QQpAsP','fromCharCode','829604DMfHuh','MODE','heapUsed','3645441SWPJZq','uptime','MB\x0a▧\x20*ᴠᴇʀsɪᴏɴ*\x20:\x20*1.0.4*\x20⚡\x0a▧\x20*ᴜᴘᴛɪᴍᴇ*\x20:\x20','4873qgMclc','```\x0a\x20\x20\x20\x20\x0a⟣──────────────────⟢\x0a▧\x20*ᴄʀᴇᴀᴛᴏʀ*\x20:\x20*ᴍʀ\x20ғʀᴀɴᴋ\x20(🇿🇼)*\x0a▧\x20*ᴍᴏᴅᴇ*\x20:\x20*','8ZpMLuv','1708cEEUIG','sendMessage','axios','35PoFCsp','round','audio/mp4','2339390NgEpOB','toFixed'];_0x2433=function(){return _0x5ab28b;};return _0x2433();}function _0x26ae(_0xa1a9aa,_0x1af921){const _0x2433de=_0x2433();return _0x26ae=function(_0x26aedb,_0x59acee){_0x26aedb=_0x26aedb-0x130;let _0x33c491=_0x2433de[_0x26aedb];return _0x33c491;},_0x26ae(_0xa1a9aa,_0x1af921);}(function(_0x3b53f0,_0x472405){const _0x3fca0a=_0x26ae,_0xd36979=_0x3b53f0();while(!![]){try{const _0x178e08=parseInt(_0x3fca0a(0x139))/0x1+-parseInt(_0x3fca0a(0x131))/0x2+-parseInt(_0x3fca0a(0x14a))/0x3+parseInt(_0x3fca0a(0x133))/0x4*(parseInt(_0x3fca0a(0x13f))/0x5)+parseInt(_0x3fca0a(0x145))/0x6*(parseInt(_0x3fca0a(0x13c))/0x7)+parseInt(_0x3fca0a(0x13b))/0x8*(-parseInt(_0x3fca0a(0x136))/0x9)+parseInt(_0x3fca0a(0x142))/0xa;if(_0x178e08===_0x472405)break;else _0xd36979['push'](_0xd36979['shift']());}catch(_0x3c9575){_0xd36979['push'](_0xd36979['shift']());}}}(_0x2433,0xb71da));function hi(){console['log']('Hello\x20World!');}hi();const config=require('../config'),{cmd,commands}=require('../command'),os=require('os'),{runtime}=require('../lib/functions'),axios=require(_0x94b4e8(0x13e)),more=String[_0x94b4e8(0x132)](0x200e),readMore=more['repeat'](0xfa1);cmd({'pattern':'menu','desc':'subzero\x20menu','category':'menu','react':'📑','filename':__filename},async(_0xb78071,_0x3fa35b,_0x205d0a,{from:_0x23cb47,quoted:_0x3c1939,body:_0x586257,isCmd:_0x3a2faf,command:_0x3cf7fe,args:_0x24e8a0,q:_0xbf79e9,isGroup:_0x3e1fec,sender:_0x139b99,senderNumber:_0x3ae162,botNumber2:_0x5c324c,botNumber:_0x48d0c0,pushname:_0x5e8a0f,isMe:_0x308ba8,isOwner:_0xb5a86f,groupMetadata:_0xbb8b43,groupName:_0x38c4c8,participants:_0xf67bda,groupAdmins:_0x5a8ec4,isBotAdmins:_0x793c12,isAdmins:_0x58819d,reply:_0x40073d})=>{const _0x579638=_0x94b4e8;try{let _0x8c7ef4='\x0a\x0a\x20\x20\x20\x20\x20\x20\x20```'+config[_0x579638(0x147)]+_0x579638(0x13a)+config[_0x579638(0x134)]+_0x579638(0x144)+config[_0x579638(0x149)]+_0x579638(0x146)+(process['memoryUsage']()[_0x579638(0x135)]/0x400/0x400)[_0x579638(0x143)](0x2)+'MB\x20/\x20'+Math[_0x579638(0x140)](require('os')['totalmem']/0x400/0x400)+_0x579638(0x138)+runtime(process[_0x579638(0x137)]())+'\x0a\x0a⟣──────────────────⟢\x0a\x0a>\x20SUBZERO\x20-\x20MD-\x20BOT\x0a\x0a⟣──────────────────⟢\x0a'+readMore+'\x0a\x0a*🏮\x20`SUBZERO\x20DOWNLOADER`\x20🏮*\x20\x0a\x0a╭─────────────···◈\x0a*┋*\x20*⬡\x20ғʙ*\x0a*┋*\x20*⬡\x20ɪɴꜱᴛᴀ*\x0a*┋*\x20*⬡\x20sᴘᴏᴛɪғʏ*\x0a*┋*\x20*⬡\x20ᴠɪᴅᴇᴏ*\x0a*┋*\x20*⬡\x20ɢᴅʀɪᴠᴇ*\x0a*┋*\x20*⬡\x20ᴛᴡɪᴛᴛᴇʀ*\x0a*┋*\x20*⬡\x20ᴛᴛ*\x0a*┋*\x20*⬡\x20ᴍᴇᴅɪᴀғɪʀᴇ*\x0a*┋*\x20*⬡\x20ꜱᴏɴɢ*\x0a*┋*\x20*⬡\x20ᴘʟᴀʏ*\x0a*┋*\x20*⬡\x20ᴘʟᴀʏ2*\x0a*┋*\x20*⬡\x20ᴘʟᴀʏ3*\x0a*┋*\x20*⬡\x20ᴠɪᴅᴇᴏ*\x0a*┋*\x20*⬡\x20ᴠɪᴅᴇᴏ2*\x0a*┋*\x20*⬡\x20ᴠɪᴅᴇᴏ3*\x0a*┋*\x20*⬡\x20ɢɪᴛᴄʟᴏɴᴇ*\x0a*┋*\x20*⬡\x20ɪᴍɢ*\x0a*┋*\x20*⬡\x20ᴀᴘᴋ*\x0a*┋*\x20*⬡\x20ʏᴛᴍᴘ3*\x0a*┋*\x20*⬡\x20ʏᴛᴍᴘ4*\x0a*┋*\x20*⬡\x20ᴘɪɴᴛᴇʀᴇsᴛ*\x0a*┋*\x20*⬡\x20ʙᴀɪsᴄᴏᴘᴇ*\x0a*┋*\x20*⬡\x20ɢɪɴɪsɪsɪʟᴀ*\x0a*╰─────────────╶╶···◈*\x0a\x0a*🔎\x20`SEARCH-CMD`\x20🔍*\x20\x0a\x0a╭─────────────···◈\x0a*┋*\x20*⬡\x20ʏᴛꜱ*\x0a*┋*\x20*⬡\x20ʏᴛᴀ*\x0a*┋*\x20*⬡\x20ɢᴏᴏɢʟᴇ*\x0a*┋*\x20*⬡\x20ʟᴏʟɪ*\x0a*┋*\x20*⬡\x20ɢɪᴛsᴛᴀʟᴋ*\x0a*┋*\x20*⬡\x20ᴡɪᴋɪᴘᴇᴅɪᴀ*\x0a*┋*\x20*⬡\x20ᴍᴏᴠɪᴇɪɴғᴏ*\x0a*┋*\x20*⬡\x20ɢᴏᴏɢʟᴇ*\x0a*┋*\x20*⬡\x20ʙɪʙʟᴇ*\x0a*┋*\x20*⬡\x20ᴍᴏᴠɪᴇ*\x0a*┋*\x20*⬡\x20ᴡᴇᴀᴛʜᴇʀ*\x0a*┋*\x20*⬡\x20ssᴡᴇʙ\x0a*┋*\x20*⬡\x20ɴᴘᴍ*\x0a*╰─────────────╶╶···◈*\x0a*🧠\x20`AI-CMD`\x20🧠*\x20\x0a\x0a╭─────────────···◈\x0a*┋*\x20*⬡\x20ɢᴘᴛ*\x0a*┋*\x20*⬡\x20ᴀɪ*\x0a*┋*\x20*⬡\x20sᴜʙᴢᴇʀᴏ*\x0a*┋*\x20*⬡\x20ɢᴇᴍɪɴɪ*\x0a*┋*\x20*⬡\x20ʙɪɴɢ*\x0a*┋*\x20*⬡\x20ᴄᴏᴘɪʟᴏᴛ*\x0a*┋*\x20*⬡\x20ᴄʟᴀᴜᴅᴇᴀɪ*\x0a*┋*\x20*⬡\x20ᴀʀᴛ*\x0a*┋*\x20*⬡\x20ᴍɪsᴛʀᴀᴀɪ*\x0a*┋*\x20*⬡\x20ᴍᴇᴛᴀᴀɪ*\x0a*┋*\x20*⬡\x20ᴄʜᴀᴛɢᴘᴛ*\x0a*┋*\x20*⬡\x20ɢᴘᴛ3*\x0a*┋*\x20*⬡\x20ɢᴘᴛ4*\x0a*┋*\x20*⬡\x20ɢᴘᴛ4ᴏ*\x0a*┋*\x20*⬡\x20ʟʟᴀᴍᴀ2*\x0a*┋*\x20*⬡\x20ʟʟᴀᴍᴀ3*\x0a*┋*\x20*⬡\x20ғʟᴜx*\x0a*┋*\x20*⬡\x20ɪᴍᴀɢɪɴᴇ*\x0a*┋*\x20*⬡\x20ᴅᴀʟʟᴇ*\x0a╰─────────────╶╶···◈\x0a\x0a*👨‍💻\x20`OWNER-CMD`\x20👨‍💻*\x20\x0a\x0a╭─────────────···◈\x0a*┋*\x20*⬡\x20ᴜᴘᴅᴀᴛᴇᴄᴍᴅ*\x0a*┋*\x20*⬡\x20sᴇᴛᴛɪɴɢs*\x0a*┋*\x20*⬡\x20ᴏᴡɴᴇʀ*\x0a*┋*\x20*⬡\x20ʀᴇᴘᴏ*\x0a*┋*\x20*⬡\x20ʙᴏᴛsᴇᴛᴛɪɴɢs*\x0a*┋*\x20*⬡\x20ꜱʏꜱᴛᴇᴍ*\x0a*┋*\x20*⬡\x20ᴜᴘᴅᴀᴛᴇ*\x0a*┋*\x20*⬡\x20ꜱᴛᴀᴛᴜꜱ*\x0a*┋*\x20*⬡\x20ʙʟᴏᴄᴋ*\x0a*┋*\x20*⬡\x20ᴜɴʙʟᴏᴄᴋ*\x0a*┋*\x20*⬡\x20sʜᴜᴛᴅᴏᴡɴ*\x0a*┋*\x20*⬡\x20ᴄʟᴇᴀʀᴄʜᴀᴛs*\x0a*┋*\x20*⬡\x20sᴇᴛᴘᴘ*\x0a*┋*\x20*⬡\x20ғᴜʟʟᴘᴘ*\x0a*┋*\x20*⬡\x20ʙʀᴏᴀᴅᴄᴀsᴛ*\x0a*┋*\x20*⬡\x20ᴊɪᴅ*\x0a*┋*\x20*⬡\x20ɢᴊɪᴅ*\x0a*┋*\x20*⬡\x20ʀᴇꜱᴛᴀʀᴛ*\x0a╰─────────────╶╶···◈\x0a\x0a*👥\x20`GROUP-CMD`\x20👥*\x20\x0a\x0a╭─────────────···◈\x0a*┋*\x20*⬡\x20ʀᴇᴍᴏᴠᴇ*\x0a*┋*\x20*⬡\x20ᴅᴇʟᴇᴛᴇ*\x0a*┋*\x20*⬡\x20ᴀᴅᴅ*\x0a*┋*\x20*⬡\x20ᴋɪᴄᴋ*\x0a*┋*\x20*⬡\x20ᴋɪᴄᴋᴀʟʟ*\x0a*┋*\x20*⬡\x20sᴇᴛɢᴏᴏᴅʙʏᴇ*\x0a*┋*\x20*⬡\x20sᴇᴛᴡᴇʟᴄᴏᴍᴇ*\x0a*┋*\x20*⬡\x20ᴘʀᴏᴍᴏᴛᴇ*\x0a*┋*\x20*⬡\x20ᴅᴇᴍᴏᴛᴇ*\x0a*┋*\x20*⬡\x20ᴛᴀɢᴀʟʟ*\x0a*┋*\x20*⬡\x20ɢᴇᴛᴘɪᴄ*\x0a*┋*\x20*⬡\x20ɪɴᴠɪᴛᴇ*\x0a*┋*\x20*⬡\x20ʀᴇᴠᴏᴋᴇ*\x0a*┋*\x20*⬡\x20ᴊᴏɪɴʀᴇǫᴜᴇsᴛs*\x0a*┋*\x20*⬡\x20ᴀʟʟʀᴇǫ*\x0a*┋*\x20*⬡\x20ᴍᴜᴛᴇ*\x0a*┋*\x20*⬡\x20ᴜɴᴍᴜᴛᴇ*\x0a*┋*\x20*⬡\x20ʟᴏᴄᴋɢᴄ*\x0a*┋*\x20*⬡\x20ᴜɴʟᴏᴄᴋɢᴄ*\x0a*┋*\x20*⬡\x20ʟᴇᴀᴠᴇ*\x0a*┋*\x20*⬡\x20ᴜᴘᴅᴀᴛᴇɢɴᴀᴍᴇ*\x0a*┋*\x20*⬡\x20ᴜᴘᴅᴀᴛᴇɢᴅᴇsᴄ*\x0a*┋*\x20*⬡\x20ᴊᴏɪɴ*\x0a*┋*\x20*⬡\x20ʜɪᴅᴇᴛᴀɢ*\x0a*┋*\x20*⬡\x20ɢɪɴғᴏ*\x0a*┋*\x20*⬡\x20ᴅɪsᴀᴘᴘᴇᴀʀ\x20ᴏɴ*\x0a*┋*\x20*⬡\x20ᴅɪsᴀᴘᴘᴇᴀʀ\x20ᴏғғ*\x0a*┋*\x20*⬡\x20ᴅɪsᴀᴘᴘᴇᴀʀ\x207ᴅ\x2024ʜ\x2090ᴅ*\x0a*┋*\x20*⬡\x20sᴇɴᴅᴅᴍ*\x0a*┋*\x20*⬡\x20ᴏᴘᴇɴᴛɪᴍᴇ*\x0a*┋*\x20*⬡\x20ᴄʟᴏsᴇᴛɪᴍᴇ*\x0a╰─────────────╶╶···◈\x0a\x0a*📃\x20`INFO-CMD`\x20📃*\x20\x0a\x0a╭─────────────···◈\x0a*┋*\x20*⬡\x20ᴍᴇɴᴜ*\x0a*┋*\x20*⬡\x20ᴀʟʟᴍᴇɴᴜ*\x0a*┋*\x20*⬡\x20ʙᴇᴛᴀᴍᴇɴᴜ*\x0a*┋*\x20*⬡\x20ᴀʙᴏᴜᴛ*\x0a*┋*\x20*⬡\x20sᴄʀɪᴘᴛ*\x0a*┋*\x20*⬡\x20ʀᴇᴘᴏ*\x0a*┋*\x20*⬡\x20ᴍʀғʀᴀɴᴋ*\x0a*┋*\x20*⬡\x20ᴀʟɪᴠᴇ*\x0a*┋*\x20*⬡\x20ʙᴏᴛɪɴꜰᴏ*\x0a*┋*\x20*⬡\x20ꜱᴛᴀᴛᴜꜱ*\x0a*┋*\x20*⬡\x20ꜱᴜᴘᴘᴏʀᴛ*\x0a*┋*\x20*⬡\x20ᴘɪɴɢ*\x0a*┋*\x20*⬡\x20ᴘɪɴɢ2*\x0a*┋*\x20*⬡\x20sᴜʙᴢᴇʀᴏɪɴᴄ*\x0a*┋*\x20*⬡\x20ꜱʏꜱᴛᴇᴍ*\x0a*┋*\x20*⬡\x20ᴘᴀɪʀ*\x0a*┋*\x20*⬡\x20ᴘᴀɪʀ2*\x0a╰─────────────╶╶···◈\x0a\x0a*🍭\x20`CONVERTER-CMD`\x20🍭*\x20\x0a\x0a╭─────────────···◈\x0a*┋*\x20*⬡\x20sᴛɪᴄᴋᴇʀ*\x0a*┋*\x20*⬡\x20ᴛʀᴛ*\x0a*┋*\x20*⬡\x20ᴛᴛs*\x0a*┋*\x20*⬡\x20ᴀᴛᴛᴘ*\x0a*┋*\x20*⬡\x20ʟᴏɢᴏ*\x0a*┋*\x20*⬡\x20ʟᴏɢᴏ1*\x0a*┋*\x20*⬡\x20ʟᴏɢᴏ2*\x0a*┋*\x20*⬡\x20ғᴀɴᴄʏ*\x0a*┋*\x20*⬡\x20ᴠᴠ*\x0a*┋*\x20*⬡\x20ᴛᴇᴍᴘᴍᴀɪʟ*\x0a╰─────────────╶╶···◈\x0a\x0a*⚙️\x20`SUBZERO-SETTINGS`\x20⚙️*\x20\x0a\x0a╭─────────────···◈\x0a*┋*\x20*⬡\x20sᴜʙᴢᴇʀᴏᴇɴᴠ*\x0a*┋*\x20*⬡\x20ᴜᴘᴅᴀᴛᴇ*\x0a*┋*\x20*⬡\x20ᴘɪɴɢ*\x0a*┋*\x20*⬡\x20ᴍʀғʀᴀɴᴋ*\x0a*┋*\x20*⬡\x20ᴏᴡɴᴇʀ*\x0a*┋*\x20*⬡\x20sᴜʙᴢᴇʀᴏɪɴᴄ*\x0a*┋*\x20*⬡\x20ᴀʙᴏᴜᴛ*\x0a*┋*\x20*⬡\x20sᴇᴛᴛɪɴɢs*\x0a*┋*\x20*⬡\x20ᴀʟɪᴠᴇ*\x0a╰─────────────╶╶···◈\x0a\x0a*♻️\x20`RANDOM-CMD`\x20♻️*\x20\x0a\x0a╭─────────────···◈\x0a*┋*\x20*⬡\x20ᴄᴘᴘ*\x0a*┋*\x20*⬡\x20ᴅᴏɢ*\x0a*┋*\x20*⬡\x20ʀᴀɴᴅᴏᴍᴡᴀʟʟᴘᴇʀ*\x0a*┋*\x20*⬡\x20ʟᴏʟɪ*\x0a*┋*\x20*⬡\x20ᴀᴡᴏᴏ*\x0a*┋*\x20*⬡\x20ᴡᴀɪғᴜ*\x0a*┋*\x20*⬡\x20ɢᴀʀʟ*\x0a*┋*\x20*⬡\x20ᴍᴀɪᴅ*\x0a*┋*\x20*⬡\x20ɴᴇᴋᴏ*\x0a*┋*\x20*⬡\x20ᴀɴɪᴍᴇ*\x0a*┋*\x20*⬡\x20ᴀɴɪᴍᴇɢɪʀʟ*\x0a*┋*\x20*⬡\x20ᴀɴɪᴍᴇɢɪʀʟ1*\x0a*┋*\x20*⬡\x20ᴀɴɪᴍᴇɢɪʀʟ2*\x0a*┋*\x20*⬡\x20ᴀɴɪᴍᴇɢɪʀʟ3*\x0a*┋*\x20*⬡\x20ᴀɴɪᴍᴇɢɪʀʟ4*\x0a*┋*\x20*⬡\x20ᴀɴɪᴍᴇɢɪʀʟ5*\x0a╰─────────────╶╶···◈\x0a\x0a*🎀\x20`WALLPAPERS-CMD`\x20🎀*\x20\x0a\x0a╭─────────────···◈\x0a*┋*\x20*⬡\x20ɪᴍɢ*\x0a*┋*\x20*⬡\x20ᴡᴀʟʟᴘᴀᴘᴇʀ*\x0a╰─────────────╶╶···◈\x0a\x0a*😆\x20`FUN-CMD`\x20😆*\x20\x0a\x0a╭─────────────···◈\x0a*┋*\x20*⬡\x20sʜʏ*\x0a*┋*\x20*⬡\x20sʜʏʏ*\x0a*┋*\x20*⬡\x20ʜᴀᴘᴘʏ*\x0a*┋*\x20*⬡\x20sᴀᴅ*\x0a*┋*\x20*⬡\x20ᴀɴɢʀʏ*\x0a*┋*\x20*⬡\x20ʜᴀɴᴅ*\x0a*┋*\x20*⬡\x20ɴɪᴋᴀʟ*\x0a*┋*\x20*⬡\x20ʜᴜɢ*\x0a*┋*\x20*⬡\x20ᴍᴏᴏɴ*\x0a*┋*\x20*⬡\x20ᴋɪss*\x0a*┋*\x20*⬡\x20ᴄᴏɴғᴜsᴇᴅ*\x0a*┋*\x20*⬡\x20ʜᴇᴀʀᴛ*\x0a*┋*\x20*⬡\x20ᴘɪᴄᴋᴜᴘʟɪɴᴇ*\x0a*┋*\x20*⬡\x20ғᴀᴄᴛ*\x0a*┋*\x20*⬡\x20ᴛʀᴜᴛʜ*\x0a*┋*\x20*⬡\x20ᴅᴀʀᴇ*\x0a*┋*\x20*⬡\x20ᴄʜᴀʀᴀᴄᴛᴇʀ*\x0a╰─────────────╶╶···◈\x0a\x0a\x0a*❄️\x20`TOOLS-CMD`\x20❄️*\x20\x0a\x0a╭─────────────···◈\x0a*┋*\x20*⬡\x20ᴛʀᴛ*\x0a*┋*\x20*⬡\x20ᴊᴏᴋᴇ*\x0a*┋*\x20*⬡\x20ᴛᴛs*\x0a*┋*\x20*⬡\x20ꜰᴀᴄᴛ*\x0a*┋*\x20*⬡\x20ɢɪᴛʜᴜʙ*\x0a*┋*\x20*⬡\x20ɢᴘᴀꜱꜱ*\x0a*┋*\x20*⬡\x20ssᴡᴇʙ*\x0a*┋*\x20*⬡\x20sʜᴏʀᴛᴇɴ*\x0a*┋*\x20*⬡\x20ᴛɪɴʏᴜʀʟ*\x0a*┋*\x20*⬡\x20ʜᴀᴄᴋ*\x0a*┋*\x20*⬡\x20ǫᴜᴏᴛᴇ*\x0a*┋*\x20*⬡\x20ʀᴇᴘᴏ*\x0a*┋*\x20*⬡\x20ᴛɢsᴛɪᴄᴋᴇʀ*\x0a*┋*\x20*⬡\x20sʀᴇᴘᴏ*\x0a*┋*\x20*⬡\x20ᴅᴇꜰɪɴᴇ*\x0a*┋*\x20*⬡\x20ᴀɴᴛɪᴠɪᴇᴡᴏɴᴄᴇ*\x0a╰─────────────╶╶···◈\x0a\x0a*🔞\x20`NSFW-CMD`\x20🔞*\x20\x0a\x0a╭─────────────···◈\x0a*┋*\x20*⬡\x20ᴇᴊᴀᴄᴜʟᴀᴛɪᴏɴ*\x0a*┋*\x20*⬡\x20ᴘᴇɴɪs*\x0a*┋*\x20*⬡\x20ᴇʀᴇᴄ*\x0a*┋*\x20*⬡\x20ɴᴜᴅᴇ*\x0a*┋*\x20*⬡\x20sᴇx*\x0a*┋*\x20*⬡\x20ᴄᴜᴛᴇ*\x0a*┋*\x20*⬡\x20ᴏʀɢᴀsᴍ*\x0a*┋*\x20*⬡\x20ᴀɴᴀʟ*\x0a*┋*\x20*⬡\x20sᴜsᴘᴇɴsɪᴏɴ*\x0a*┋*\x20*⬡\x20ᴋɪss*\x0a╰─────────────╶╶···◈\x0a\x0a\x0a*━━━━━━━━━━━━━━━━━━━━*⁠⁠⁠⁠\x0a>\x20MADE\x20BY\x20MR\x20FRANK\x0a*━━━━━━━━━━━━━━━━━━━━━*\x0a';await _0xb78071[_0x579638(0x13d)](_0x23cb47,{'image':{'url':_0x579638(0x130)},'caption':_0x8c7ef4,'contextInfo':{'mentionedJid':[_0x205d0a[_0x579638(0x148)]],'forwardingScore':0x3e7,'isForwarded':!![],'forwardedNewsletterMessageInfo':{'newsletterJid':'120363304325601080@newsletter','newsletterName':'❄️『\x20𝐒𝐔𝐁𝐙𝐄𝐑𝐎\x20𝐌𝐃\x20』❄️\x20','serverMessageId':0x8f}}},{'quoted':_0x3fa35b}),await _0xb78071['sendMessage'](_0x23cb47,{'audio':{'url':'https://github.com/mrfrank-ofc/SUBZERO-MD-DATABASE/raw/refs/heads/main/audios/subzero-menu.mp3'},'mimetype':_0x579638(0x141),'ptt':!![]},{'quoted':_0x3fa35b});}catch(_0x48e21c){console['log'](_0x48e21c),_0x40073d(''+_0x48e21c);}}); +// Just Deploy Bro +// Fuck you diff --git a/plugins/main-menu2.js b/plugins/main-menu2.js new file mode 100644 index 0000000000000000000000000000000000000000..3e40d99821271658ea369832a197625cad43e0d3 --- /dev/null +++ b/plugins/main-menu2.js @@ -0,0 +1,490 @@ + +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const config = require('../config') +const { cmd, commands } = require('../command'); +const os = require("os") +const {runtime} = require('../lib/functions') +const axios = require('axios') + +cmd({ + pattern: "allmenu", + alias: "menu2", + desc: "menu the bot", + category: "menu2", + react: "🛠️", + filename: __filename +}, +async (conn, mek, m, { from, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply }) => { + try { + let dec = `╭━━━〔 *${config.BOT_NAME}* 〕━━━┈⊷ +┃★╭────────────── +┃★│ Owner : *${config.OWNER_NAME}* +┃★│ Baileys : *Multi Device* +┃★│ Type : *NodeJs* +┃★│ Platform : *Heroku* +┃★│ Mode : *[${config.MODE}]* +┃★│ Prefix : *[${config.PREFIX}]* +┃★│ Version : *1.0.3 Bᴇᴛᴀ* +┃★╰────────────── +╰━━━━━━━━━━━━━━━┈⊷ +╭━━〔 *Download Menu* 〕━━┈⊷ +┃◈╭─────────────·๏ +┃◈┃• facebook +┃◈┃• mediafire +┃◈┃• tiktok +┃◈┃• twitter +┃◈┃• Insta +┃◈┃• apk +┃◈┃• img +┃◈┃• tt2 +┃◈┃• git +┃◈┃• spotify +┃◈┃• play +┃◈┃• play2 +┃◈┃• play3 +┃◈┃• audio +┃◈┃• video +┃◈┃• video2 +┃◈┃• ytmp3 +┃◈┃• ytmp4 +┃◈┃• song +┃◈┃• darama +┃◈┃• gdrive +┃◈┃• smovie +┃◈┃• baiscope +┃◈┃• ginisilia +┃◈└───────────┈⊷ +╰──────────────┈⊷ +╭━━〔 *Group Menu* 〕━━┈⊷ +┃◈╭─────────────·๏ +┃◈┃• grouplink +┃◈┃• kickall +┃◈┃• kickall2 +┃◈┃• kickall3 +┃◈┃• add +┃◈┃• remove +┃◈┃• kick +┃◈┃• promote +┃◈┃• demote +┃◈┃• dismiss +┃◈┃• revoke +┃◈┃• setgoodbye +┃◈┃• setwelcome +┃◈┃• delete +┃◈┃• getpic +┃◈┃• ginfo +┃◈┃• delete +┃◈┃• disappear on +┃◈┃• disappear off +┃◈┃• disappear 7D,24H +┃◈┃• allreq +┃◈┃• updategname +┃◈┃• updategdesc +┃◈┃• joinrequests +┃◈┃• senddm +┃◈┃• nikal +┃◈┃• mute +┃◈┃• unmute +┃◈┃• lockgc +┃◈┃• unlockgc +┃◈┃• invite +┃◈┃• tag +┃◈┃• hidetag +┃◈┃• tagall +┃◈┃• tagadmins +┃◈└───────────┈⊷ +╰──────────────┈⊷ +╭━━〔 *Owner Menu* 〕━━┈⊷ +┃◈╭─────────────·๏ +┃◈┃• owner +┃◈┃• menu +┃◈┃• menu2 +┃◈┃• vv +┃◈┃• listcmd +┃◈┃• allmenu +┃◈┃• repo +┃◈┃• block +┃◈┃• unblock +┃◈┃• fullpp +┃◈┃• setpp +┃◈┃• restart +┃◈┃• shutdown +┃◈┃• updatecmd +┃◈┃• alive +┃◈┃• ping +┃◈┃• gjid +┃◈┃• jid +┃◈└───────────┈⊷ +╰──────────────┈⊷ +╭━━〔 *Fun Menu* 〕━━┈⊷ +┃◈╭─────────────·๏ +┃◈┃• insult +┃◈┃• hack +┃◈┃• ship +┃◈┃• character +┃◈┃• pickup +┃◈┃• joke +┃◈┃• hrt +┃◈┃• hpy +┃◈┃• syd +┃◈┃• anger +┃◈┃• shy +┃◈┃• kiss +┃◈┃• mon +┃◈┃• cunfuzed +┃◈┃• setpp +┃◈┃• hand +┃◈┃• nikal +┃◈┃• hold +┃◈┃• hug +┃◈┃• nikal +┃◈┃• hifi +┃◈┃• poke +┃◈└───────────┈⊷ +╰──────────────┈⊷ +╭━━〔 *Convert Menu* 〕━━┈⊷ +┃◈╭─────────────·๏ +┃◈┃• sticker +┃◈┃• sticker2 +┃◈┃• fancy +┃◈┃• take +┃◈┃• tomp3 +┃◈┃• tts +┃◈┃• trt +┃◈└───────────┈⊷ +╰──────────────┈⊷ +╭━━〔 *Ai Menu* 〕━━┈⊷ +┃◈╭─────────────·๏ +┃◈┃• ai +┃◈┃• gpt +┃◈┃• meta +┃◈┃• blackbox +┃◈┃• gpt4 +┃◈┃• bing +┃◈┃• copilot +┃◈└───────────┈⊷ +╰──────────────┈⊷ +╭━━〔 *Main Menu* 〕━━┈⊷ +┃◈╭─────────────·๏ +┃◈┃• ping +┃◈┃• ping2 +┃◈┃• speed +┃◈┃• live +┃◈┃• alive +┃◈┃• runtime +┃◈┃• uptime +┃◈┃• repo +┃◈┃• owner +┃◈┃• menu +┃◈┃• menu2 +┃◈┃• restart +┃◈└───────────┈⊷ +╰──────────────┈⊷ +╭━━〔 *Anime Menu* 〕━━┈⊷ +┃◈╭─────────────·๏ +┃◈┃• fack +┃◈┃• truth +┃◈┃• dare +┃◈┃• dog +┃◈┃• awoo +┃◈┃• garl +┃◈┃• waifu +┃◈┃• neko +┃◈┃• megnumin +┃◈┃• neko +┃◈┃• maid +┃◈┃• loli +┃◈┃• animegirl +┃◈┃• animegirl +┃◈┃• animegirl1 +┃◈┃• animegirl2 +┃◈┃• animegirl3 +┃◈┃• animegirl4 +┃◈┃• animegirl5 +┃◈┃• anime1 +┃◈┃• anime1 +┃◈┃• anime2 +┃◈┃• anime3 +┃◈┃• anime4 +┃◈┃• anime5 +┃◈┃• animenews +┃◈┃• foxgirl +┃◈┃• naruto +┃◈└───────────┈⊷ +╰──────────────┈⊷ +╭━━〔 *Other Menu* 〕━━┈⊷ +┃◈╭─────────────·๏ +┃◈┃• fact +┃◈┃• cpp +┃◈┃• rw +┃◈┃• pair +┃◈┃• pair2 +┃◈┃• fancy +┃◈┃• logo +┃◈┃• define +┃◈┃• news +┃◈┃• movie +┃◈┃• weather +┃◈┃• srepo +┃◈┃• insult +┃◈┃• save +┃◈┃• wikipedia +┃◈┃• gpass +┃◈┃• githubstalk +┃◈┃• yts +┃◈┃• ytv +┃◈└───────────┈⊷ +╰──────────────┈⊷ +> ${config.DESCRIPTION}`; + + await conn.sendMessage( + from, + { + image: { url: `https://i.postimg.cc/yNf7rQFw/prn.jpg` }, + caption: dec, + contextInfo: { + mentionedJid: [m.sender], + forwardingScore: 999, + isForwarded: true, + forwardedNewsletterMessageInfo: { + newsletterJid: '120363304325601080@newsletter', + newsletterName: 'ѕυϐzєяο м∂ ω.α ϐοτ', + serverMessageId: 143 + } + } + }, + { quoted: mek } + ); + + // Send audio + await conn.sendMessage(from, { + audio: { url: 'https://github.com/mrfrank-ofc/SUBZERO-MD-DATABASE/raw/refs/heads/main/audios/subzero-menu.mp3' }, + mimetype: 'audio/mp4', + ptt: true + }, { quoted: mek }); + + } catch (e) { + console.log(e); + reply(`${e}`); + } +}); diff --git a/plugins/main-owner.js b/plugins/main-owner.js new file mode 100644 index 0000000000000000000000000000000000000000..c69a0228bb6d2ffe638a91e91ef94f89f5679256 --- /dev/null +++ b/plugins/main-owner.js @@ -0,0 +1,285 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const { cmd } = require('../command'); +const config = require('../config'); + +cmd({ + pattern: "owner", + react: "✅", + desc: "Get owner number", + category: "main", + filename: __filename +}, +async (conn, mek, m, { from }) => { + try { + const ownerNumber = config.OWNER_NUMBER; // Fetch owner number from config + const ownerName = config.OWNER_NAME; // Fetch owner name from config + + const vcard = 'BEGIN:VCARD\n' + + 'VERSION:3.0\n' + + `FN:${ownerName}\n` + + `TEL;type=CELL;type=VOICE;waid=${ownerNumber.replace('+', '')}:${ownerNumber}\n` + + 'END:VCARD'; + + // Send the vCard + const sentVCard = await conn.sendMessage(from, { + contacts: { + displayName: ownerName, + contacts: [{ vcard }] + } + }); + + // Send the owner contact message with image and audio + await conn.sendMessage(from, { + image: { url: 'https://i.postimg.cc/Tw01QQgN/White-and-Green-Simple-Professional-Business-Project-Presentation-3.jpg' }, // Image URL from your request + caption: `╭━━〔 *SUBZERO MD* 〕━━┈⊷ +┃◈╭─────────────·๏ +┃◈┃• *Here is the owner details* +┃◈┃• *Name* - ${ownerName} +┃◈┃• *Number* ${ownerNumber} +┃◈┃• *Version*: 1.0.4 +┃◈└───────────┈⊷ +╰──────────────┈⊷ +> © ᴘᴏᴡᴇʀᴇᴅ ʙʏ ᴍʀ ꜰʀᴀɴᴋ`, // Display the owner's details + contextInfo: { + mentionedJid: [`${ownerNumber.replace('+', '')}@s.whatsapp.net`], + forwardingScore: 999, + isForwarded: true, + forwardedNewsletterMessageInfo: { + newsletterJid: '120363304325601080@newsletter', + newsletterName: 'Mr Frank OFC', + serverMessageId: 143 + } + } + }, { quoted: mek }); + + // Send audio as per your request + await conn.sendMessage(from, { + audio: { url: 'https://github.com/mrfrank-ofc/SUBZERO-MD-DATABASE/blob/main/audios/subzero-yali.mp3' }, // Audio URL + mimetype: 'audio/mp4', + ptt: true + }, { quoted: mek }); + + } catch (error) { + console.error(error); + reply(`An error occurred: ${error.message}`); + } +}); diff --git a/plugins/main-repo.js b/plugins/main-repo.js new file mode 100644 index 0000000000000000000000000000000000000000..bcdc524ab114f73b951121187961cba8173cf9c5 --- /dev/null +++ b/plugins/main-repo.js @@ -0,0 +1,222 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +function _0x2670(_0x5c5200,_0x32c412){const _0x8bb983=_0x8bb9();return _0x2670=function(_0x2670d6,_0x212cef){_0x2670d6=_0x2670d6-0x140;let _0x769225=_0x8bb983[_0x2670d6];return _0x769225;},_0x2670(_0x5c5200,_0x32c412);}const _0x1188db=_0x2670;function _0x8bb9(){const _0x1dce14=['*Hello\x20There\x20SUBZERO\x20W.A\x20BOT\x20User!\x20😄👋*\x20\x0a\x0a>\x20Simple,\x20Icy,\x20Cold\x20\x20&\x20Rich\x20Loaded\x20Bot\x20With\x20Amazing\x20Features,\x20SubZero\x20WhatsApp\x20Bot.\x20❄️\x0a\x0a*Thanks\x20for\x20using\x20SubZero\x20MD🌹🫶*\x20\x0a\x0a>\x20Don\x27t\x20forget\x20to\x20star\x20&\x20fork\x20the\x20repo🌟🍴\x0a\x0ahttps://github.com/mrfrank-ofc/SUBZERO-MD','repo','audio/mp4','script','6352100HuHVBg','16MyRyGi','log','120363304325601080@newsletter','6ztDjDi','Hello\x20World!','366nHCfcJ','🗂️','info','https://github.com/mrfrank-ofc/SUBZERO-MD-DATABASE/raw/refs/heads/main/audios/subzero-yali.mp3','Info\x20about\x20the\x20bot\x20repository','sender','576951xFMEbw','752609ouBMOR','143610ObVMeo','97580XfbYUx','../command','3364MpVTSO','3639213HrsTfy','sendMessage','685mqeTtu','『\x20SᴜʙZᴇʀᴏ\x20ᴍᴅ\x20』'];_0x8bb9=function(){return _0x1dce14;};return _0x8bb9();}(function(_0x2dca43,_0x345715){const _0x4565e2=_0x2670,_0x323d4b=_0x2dca43();while(!![]){try{const _0x311a5a=-parseInt(_0x4565e2(0x155))/0x1+parseInt(_0x4565e2(0x157))/0x2*(-parseInt(_0x4565e2(0x14d))/0x3)+-parseInt(_0x4565e2(0x140))/0x4*(-parseInt(_0x4565e2(0x143))/0x5)+-parseInt(_0x4565e2(0x14f))/0x6*(-parseInt(_0x4565e2(0x158))/0x7)+parseInt(_0x4565e2(0x14a))/0x8*(parseInt(_0x4565e2(0x141))/0x9)+-parseInt(_0x4565e2(0x149))/0xa+parseInt(_0x4565e2(0x156))/0xb;if(_0x311a5a===_0x345715)break;else _0x323d4b['push'](_0x323d4b['shift']());}catch(_0x3cda68){_0x323d4b['push'](_0x323d4b['shift']());}}}(_0x8bb9,0x76e07));function hi(){const _0x32cd3b=_0x2670;console[_0x32cd3b(0x14b)](_0x32cd3b(0x14e));}hi();function hi(){const _0x10baab=_0x2670;console[_0x10baab(0x14b)](_0x10baab(0x14e));}hi();const {cmd,commands}=require(_0x1188db(0x159));cmd({'pattern':_0x1188db(0x146),'alias':['sc',_0x1188db(0x148),_0x1188db(0x151)],'desc':_0x1188db(0x153),'category':'main','react':_0x1188db(0x150),'filename':__filename},async(_0x3971cd,_0xcb4fa5,_0x20f089,{from:_0x19995a,quoted:_0x742871,body:_0x57816e,isCmd:_0x205269,command:_0x1d2284,args:_0x12b9c2,q:_0x530a94,isGroup:_0x123847,sender:_0x1ed810,senderNumber:_0x146fff,botNumber2:_0x4cc94f,botNumber:_0x482c07,pushname:_0x35213c,isMe:_0x34969f,isOwner:_0x895177,groupMetadata:_0x14ccaf,groupName:_0x3468fc,participants:_0x55bede,groupAdmins:_0x20e822,isBotAdmins:_0x555436,isAdmins:_0x26bca2,reply:_0xcbbddf})=>{const _0x28fb3e=_0x1188db;try{await _0x3971cd[_0x28fb3e(0x142)](_0x19995a,{'image':{'url':'https://i.postimg.cc/7hL6R7NH/White-and-Green-Simple-Professional-Business-Project-Presentation-1.jpg'},'caption':_0x28fb3e(0x145),'contextInfo':{'mentionedJid':[_0x20f089[_0x28fb3e(0x154)]],'forwardingScore':0x3e7,'isForwarded':!![],'forwardedNewsletterMessageInfo':{'newsletterJid':_0x28fb3e(0x14c),'newsletterName':_0x28fb3e(0x144),'serverMessageId':0x8f}}},{'quoted':_0xcb4fa5}),await _0x3971cd[_0x28fb3e(0x142)](_0x19995a,{'audio':{'url':_0x28fb3e(0x152)},'mimetype':_0x28fb3e(0x147),'ptt':!![]},{'quoted':_0xcb4fa5});}catch(_0x3a9329){console['log'](_0x3a9329),_0xcbbddf(''+_0x3a9329);}}); diff --git a/plugins/main-restart.js b/plugins/main-restart.js new file mode 100644 index 0000000000000000000000000000000000000000..253d2aedfacec3c53e4ec3936e5aeafff0f2dc03 --- /dev/null +++ b/plugins/main-restart.js @@ -0,0 +1,248 @@ + +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const { cmd } = require('../command'); +const { sleep } = require('../lib/functions'); + +cmd({ + pattern: "restart", + desc: "Restart the SubZero Md", + category: "owner", + filename: __filename +}, +async (conn, mek, m, { + from, quoted, body, isCmd, command, args, q, isGroup, senderNumber, reply +}) => { + try { + // Get the bot owner's number dynamically from conn.user.id + const botOwner = conn.user.id.split(":")[0]; // Extract the bot owner's number + if (senderNumber !== botOwner) { + return reply("Only the bot owner can use this command."); + } + + const { exec } = require("child_process"); + reply("> Subzero Bot Restarting..."); + await sleep(1500); + exec("pm2 restart all"); + } catch (e) { + console.error(e); + reply(`${e}`); + } +}); diff --git a/plugins/main-settings.js b/plugins/main-settings.js new file mode 100644 index 0000000000000000000000000000000000000000..b59a9a83043bbe51b05546171887f00df664820c --- /dev/null +++ b/plugins/main-settings.js @@ -0,0 +1,221 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const _0xf9145=_0x5a98;function _0x5a98(_0x1d97a4,_0x1bd7b4){const _0x4d6363=_0x4d63();return _0x5a98=function(_0x5a9845,_0x5719d6){_0x5a9845=_0x5a9845-0x1e3;let _0x4b607e=_0x4d6363[_0x5a9845];return _0x4b607e;},_0x5a98(_0x1d97a4,_0x1bd7b4);}(function(_0x2b2b6e,_0xdadc34){const _0x273ff9=_0x5a98,_0x1ef92e=_0x2b2b6e();while(!![]){try{const _0x4e48c2=-parseInt(_0x273ff9(0x1e4))/0x1+-parseInt(_0x273ff9(0x1eb))/0x2*(-parseInt(_0x273ff9(0x1fb))/0x3)+-parseInt(_0x273ff9(0x1ef))/0x4*(parseInt(_0x273ff9(0x1e9))/0x5)+parseInt(_0x273ff9(0x1f2))/0x6+-parseInt(_0x273ff9(0x1ee))/0x7*(parseInt(_0x273ff9(0x208))/0x8)+-parseInt(_0x273ff9(0x210))/0x9+parseInt(_0x273ff9(0x214))/0xa;if(_0x4e48c2===_0xdadc34)break;else _0x1ef92e['push'](_0x1ef92e['shift']());}catch(_0x454dc3){_0x1ef92e['push'](_0x1ef92e['shift']());}}}(_0x4d63,0x56aa2));function hi(){console['log']('Hello\x20World!');}hi();function _0x4d63(){const _0x37e5f7=['\x0a┇๏\x20*Custom\x20Reacts:*\x20','ALWAYS_ONLINE','5895EKXBtq','../command','\x0a┇๏\x20*Anti-Link:*\x20','audio/mp4','\x0a┇๏\x20*Anti-Bad\x20Words:*\x20','READ_MESSAGE','DELETE_LINKS','Settings\x20of\x20bot','../config','Disabled\x20❌','settings','message','╭━━━〔\x20*SUBZERO-MD*\x20〕━━━┈⊷\x0a┃▸╭───────────\x0a┃▸┃๏\x20*SUBZERO\x20MD\x20SETTINGS\x20❄️*\x0a┃▸└───────────···๏\x0a╰────────────────┈⊷\x0a╭━━〔\x20*Enabled\x20Disabled*\x20〕━━┈⊷\x0a┇๏\x20*Auto\x20Read\x20Status:*\x20','40GUSuwK','sendMessage','allvar','AUTO_STICKER','Error:\x20','log','menu','CUSTOM_REACT','2002545TEeFyp','\x0a┇๏\x20*Auto\x20Recording:*\x20','\x0a┇๏\x20*Auto\x20Reply:*\x20','\x0a┇๏\x20*Auto\x20Voice:*\x20','14931600nvtNRj','DESCRIPTION','AUTO_VOICE','Enabled\x20✅','https://i.postimg.cc/yNf7rQFw/prn.jpg','214198fNCFKY','\x0a┇๏\x20*Delete\x20Links:*\x20','toString','AUTO_REPLY','PUBLIC_MODE','615yChtCp','subzeroenv','240UqbKKu','AUTO_RECORDING','axios','560644MppSii','21268rYWYxB','toLowerCase','AUTO_STATUS_REPLY','703032dNWLFb','\x0a┇๏\x20*Auto\x20Typing:*\x20','../lib/functions','ANTI_LINK','❄️『\x20𝐒𝐔𝐁𝐙𝐄𝐑𝐎\x20𝐌𝐃\x20』❄️','true','\x0a┇๏\x20*Always\x20Online:*\x20'];_0x4d63=function(){return _0x37e5f7;};return _0x4d63();}const config=require(_0xf9145(0x203)),{cmd,commands}=require(_0xf9145(0x1fc)),{runtime}=require(_0xf9145(0x1f4)),axios=require(_0xf9145(0x1ed));function isEnabled(_0x3264b4){const _0xd71950=_0xf9145;return _0x3264b4&&_0x3264b4[_0xd71950(0x1e6)]()[_0xd71950(0x1f0)]()===_0xd71950(0x1f7);}cmd({'pattern':_0xf9145(0x1ea),'alias':[_0xf9145(0x205),_0xf9145(0x20a),'botsettings'],'desc':_0xf9145(0x202),'category':_0xf9145(0x20e),'react':'⚙️','filename':__filename},async(_0x348789,_0x2be45f,_0x472b12,{from:_0x48385f,quoted:_0x2a403d,reply:_0x1108df})=>{const _0x23b48e=_0xf9145;try{let _0x3f94d8=_0x23b48e(0x207)+(isEnabled(config['AUTO_STATUS_SEEN'])?_0x23b48e(0x217):_0x23b48e(0x204))+'\x0a┇๏\x20*Auto\x20Reply\x20Status:*\x20'+(isEnabled(config[_0x23b48e(0x1f1)])?_0x23b48e(0x217):_0x23b48e(0x204))+_0x23b48e(0x212)+(isEnabled(config[_0x23b48e(0x1e7)])?_0x23b48e(0x217):_0x23b48e(0x204))+'\x0a┇๏\x20*Auto\x20Sticker:*\x20'+(isEnabled(config[_0x23b48e(0x20b)])?_0x23b48e(0x217):_0x23b48e(0x204))+_0x23b48e(0x213)+(isEnabled(config[_0x23b48e(0x216)])?_0x23b48e(0x217):_0x23b48e(0x204))+_0x23b48e(0x1f9)+(isEnabled(config[_0x23b48e(0x20f)])?_0x23b48e(0x217):_0x23b48e(0x204))+'\x0a┇๏\x20*Auto\x20React:*\x20'+(isEnabled(config['AUTO_REACT'])?_0x23b48e(0x217):_0x23b48e(0x204))+_0x23b48e(0x1e5)+(isEnabled(config[_0x23b48e(0x201)])?'Enabled\x20✅':_0x23b48e(0x204))+_0x23b48e(0x1fd)+(isEnabled(config[_0x23b48e(0x1f5)])?_0x23b48e(0x217):_0x23b48e(0x204))+_0x23b48e(0x1ff)+(isEnabled(config['ANTI_BAD'])?_0x23b48e(0x217):_0x23b48e(0x204))+_0x23b48e(0x1f3)+(isEnabled(config['AUTO_TYPING'])?_0x23b48e(0x217):_0x23b48e(0x204))+_0x23b48e(0x211)+(isEnabled(config[_0x23b48e(0x1ec)])?_0x23b48e(0x217):'Disabled\x20❌')+_0x23b48e(0x1f8)+(isEnabled(config[_0x23b48e(0x1fa)])?'Enabled\x20✅':'Disabled\x20❌')+'\x0a┇๏\x20*Public\x20Mode:*\x20'+(isEnabled(config[_0x23b48e(0x1e8)])?_0x23b48e(0x217):_0x23b48e(0x204))+'\x0a┇๏\x20*Read\x20Message:*\x20'+(isEnabled(config[_0x23b48e(0x200)])?_0x23b48e(0x217):_0x23b48e(0x204))+'\x0a╰━━━━━━━━━━━━──┈⊷\x0a>\x20'+config[_0x23b48e(0x215)];await _0x348789[_0x23b48e(0x209)](_0x48385f,{'image':{'url':_0x23b48e(0x1e3)},'caption':_0x3f94d8,'contextInfo':{'mentionedJid':[_0x472b12['sender']],'forwardingScore':0x3e7,'isForwarded':!![],'forwardedNewsletterMessageInfo':{'newsletterJid':'120363304325601080@newsletter','newsletterName':_0x23b48e(0x1f6),'serverMessageId':0x8f}}},{'quoted':_0x2be45f}),await _0x348789[_0x23b48e(0x209)](_0x48385f,{'audio':{'url':'https://github.com/mrfrank-ofc/SUBZERO-MD-DATABASE/blob/main/audios/subzero-menu.mp3'},'mimetype':_0x23b48e(0x1fe),'ptt':!![]},{'quoted':_0x2be45f});}catch(_0x51ee1f){console[_0x23b48e(0x20d)](_0x51ee1f),_0x1108df(_0x23b48e(0x20c)+_0x51ee1f[_0x23b48e(0x206)]);}}); \ No newline at end of file diff --git a/plugins/main-subzero.js b/plugins/main-subzero.js new file mode 100644 index 0000000000000000000000000000000000000000..cb5bbf2800fd9760adad443e1e242001f514d3fb --- /dev/null +++ b/plugins/main-subzero.js @@ -0,0 +1 @@ +function _0x3168(){const _0xf8f60b=['1422odcxnH','600446EBTNHP','All\x20About\x20The\x20Bot\x20&\x20Dev','https://i.postimg.cc/FHN6KVzM/In-Shot-20241227-205053424.jpg','../command','❌\x20*An\x20error\x20occurred\x20while\x20fetching\x20the\x20family\x20list.\x20Please\x20try\x20again.*','15264unuNlt','12210wXlCFM','1869850KRbtFu','5523702XirFFM','8PdYRwQ','\x20\x20*⟣────────────⟢*\x0a\x20\x20\x20\x20*[\x20•\x20Developer:\x20Darrell\x20M\x20]*\x0a\x20*⟣────────────•⟢*\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20*⟣┈───────────────⟢*\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20🗂️\x20*REPOSITORY*\x0a\x20\x20\x20\x20\x20\x20\x20https://github.com/mrfrank-ofc/SUBZERO-MD\x0a\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20*⟣┈───────────────•*\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20🔗\x20*PROJECT\x20NAME*\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20SUBZERO-MD\x20W.A\x20BOT\x0a\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20*⟣┈───────────────•*\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20👨‍💻\x20*DEVELOPER*\x0a\x20\x20\x20\x20\x20https://github.com/mrfrank-ofc\x0a\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20*⟣┈───────────────•*\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20🧮\x20*RELEASE\x20DATE*\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x2015\x20December\x202024\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20*⟣┈───────────────•*\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20📩\x20*SUPPORT\x20GROUP*\x20\x0a\x20\x20\x20\x20\x20\x20https://chat.whatsapp.com/InsR5qk3cBsG2781A6uxcO\x0a\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20*⟣┈───────────────•*\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20🎀\x20*SUPPORT\x20CHANNEL*\x0a\x20\x20\x20\x20\x20\x20https://whatsapp.com/channel/0029VagQEmB002T7MWo3Sj1D\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20◦🪄\x20\x20Hit\x20Me\x20Here\x20:wa.me/263719647303*\x20\x0a\x20\x20\x20\x20\x20\x20*⟝┈───────────────⟞*\x0a\x20\x20\x20\x20\x20\x20\x20\x20*⟣────────────•⟢*\x0a\x20\x20\x20\x20','2697088SWXRut','2763ULxgJQ','chat','Hello\x20World!','error','log','sendMessage','3432947vrvpBW','trim'];_0x3168=function(){return _0xf8f60b;};return _0x3168();}function _0x2c13(_0x56be2b,_0x120487){const _0x316880=_0x3168();return _0x2c13=function(_0x2c1316,_0x14e15a){_0x2c1316=_0x2c1316-0x113;let _0x2a5cbf=_0x316880[_0x2c1316];return _0x2a5cbf;},_0x2c13(_0x56be2b,_0x120487);}const _0x1e6434=_0x2c13;(function(_0x4200d9,_0x312449){const _0x19693e=_0x2c13,_0x300287=_0x4200d9();while(!![]){try{const _0x339162=parseInt(_0x19693e(0x121))/0x1+-parseInt(_0x19693e(0x120))/0x2*(parseInt(_0x19693e(0x118))/0x3)+-parseInt(_0x19693e(0x117))/0x4+-parseInt(_0x19693e(0x113))/0x5+-parseInt(_0x19693e(0x114))/0x6+-parseInt(_0x19693e(0x11e))/0x7*(-parseInt(_0x19693e(0x115))/0x8)+-parseInt(_0x19693e(0x126))/0x9*(-parseInt(_0x19693e(0x127))/0xa);if(_0x339162===_0x312449)break;else _0x300287['push'](_0x300287['shift']());}catch(_0x55c285){_0x300287['push'](_0x300287['shift']());}}}(_0x3168,0x83589));function hi(){const _0x31d583=_0x2c13;console[_0x31d583(0x11c)](_0x31d583(0x11a));}hi();const {cmd}=require(_0x1e6434(0x124));cmd({'pattern':'subzeroinc','desc':_0x1e6434(0x122),'category':'fun','react':'🦄','filename':__filename},async(_0x1d77c6,_0x3bc605,_0x33505d,{reply:_0x149ecd})=>{const _0x989e01=_0x1e6434,_0x48000e=_0x989e01(0x116);try{await _0x1d77c6[_0x989e01(0x11d)](_0x33505d[_0x989e01(0x119)],{'image':{'url':_0x989e01(0x123)},'caption':_0x48000e[_0x989e01(0x11f)]()},{'quoted':_0x3bc605});}catch(_0x175db9){console[_0x989e01(0x11b)](_0x175db9),_0x149ecd(_0x989e01(0x125));}}); \ No newline at end of file diff --git a/plugins/main-wa-presence.js b/plugins/main-wa-presence.js new file mode 100644 index 0000000000000000000000000000000000000000..12b3daf00bd09ab808771f88070344baa3776cab --- /dev/null +++ b/plugins/main-wa-presence.js @@ -0,0 +1,346 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const fs = require('fs'); +const path = require('path'); +const config = require('../config') +const {cmd , commands} = require('../command') + + +//auto recording +cmd({ + on: "body" +}, +async (conn, mek, m, { from, body, isOwner }) => { + if (config.AUTO_RECORDING === 'true') { + await conn.sendPresenceUpdate('recording', from); + } + } + ); + +//auto_voice +cmd({ + on: "body" +}, +async (conn, mek, m, { from, body, isOwner }) => { + const filePath = path.join(__dirname, '../data/autovoice.json'); + const data = JSON.parse(fs.readFileSync(filePath, 'utf8')); + for (const text in data) { + if (body.toLowerCase() === text.toLowerCase()) { + + if (config.AUTO_VOICE === 'true') { + //if (isOwner) return; + await conn.sendPresenceUpdate('recording', from); + await conn.sendMessage(from, { audio: { url: data[text] }, mimetype: 'audio/mpeg', ptt: true }, { quoted: mek }); + } + } + } +}); + +//auto sticker +cmd({ + on: "body" +}, +async (conn, mek, m, { from, body, isOwner }) => { + const filePath = path.join(__dirname, '../data/autosticker.json'); + const data = JSON.parse(fs.readFileSync(filePath, 'utf8')); + for (const text in data) { + if (body.toLowerCase() === text.toLowerCase()) { + + if (config.AUTO_STICKER === 'true') { + //if (isOwner) return; + await conn.sendMessage(from,{sticker: { url : data[text]},package: 'SUBZERO-MD'},{ quoted: mek }) + + } + } + } +}); + +//auto reply +cmd({ + on: "body" +}, +async (conn, mek, m, { from, body, isOwner }) => { + const filePath = path.join(__dirname, '../data/autoreply.json'); + const data = JSON.parse(fs.readFileSync(filePath, 'utf8')); + for (const text in data) { + if (body.toLowerCase() === text.toLowerCase()) { + + if (config.AUTO_REPLY === 'true') { + //if (isOwner) return; + await m.reply(data[text]) + + } + } + } +}); + +// Composing (Auto Typing) +cmd({ + on: "body" +}, +async (conn, mek, m, { from, body, isOwner }) => { + if (config.AUTO_TYPING === 'true') { + await conn.sendPresenceUpdate('composing', from); // send typing + } +}); + + +// Always Online +cmd({ + on: "body" +}, async (conn, mek, m, { from, isOwner }) => { + try { + if (config.ALWAYS_ONLINE === "true") { + // Always Online Mode: Bot always appears online (double tick) + await conn.sendPresenceUpdate("available", from); + } else { + // Dynamic Mode: Adjust presence based on owner's status + if (isOwner) { + // If the owner is online, show as available (double tick) + await conn.sendPresenceUpdate("available", from); + } else { + // If the owner is offline, show as unavailable (single tick) + await conn.sendPresenceUpdate("unavailable", from); + } + } + } catch (e) { + console.log(e); + } +}); + +// Public Mod +cmd({ + on: "body" +}, async (conn, mek, m, { from, isOwner }) => { + try { + if (config.ALWAYS_ONLINE === "true") { + // Public Mode + Always Online: Always show as online + await conn.sendPresenceUpdate("available", from); + } else if (config.PUBLIC_MODE === "true") { + // Public Mode + Dynamic: Respect owner's presence + if (isOwner) { + // If owner is online, show available + await conn.sendPresenceUpdate("available", from); + } else { + // If owner is offline, show unavailable + await conn.sendPresenceUpdate("unavailable", from); + } + } + } catch (e) { + console.log(e); + } +}); diff --git a/plugins/mixed-emotions.js b/plugins/mixed-emotions.js new file mode 100644 index 0000000000000000000000000000000000000000..cb448f726e800a31d88214d367df76abdacc677d --- /dev/null +++ b/plugins/mixed-emotions.js @@ -0,0 +1,544 @@ + +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const { + cmd, + commands +} = require("../command"); +cmd({ + 'pattern': "hand", + 'desc': "Displays a dynamic edit msg for fun.", + 'category': "tools", + 'react': '✊', + 'filename': __filename +}, async (_0x45cd83, _0x286d49, _0x19855e, { + from: _0x96d404, + reply: _0x47c6bc +}) => { + try { + const _0x1d39fa = await _0x45cd83.sendMessage(_0x96d404, { + 'text': "✊🏻 *STARTED...* 💦" + }); + const _0x3eccb1 = ['8✊️===D', "8=✊️==D", "8==✊️=D", "8===✊️D", "8==✊️=D", "8=✊️==D", "8✊️===D", "8=✊️==D", "8==✊️=D", '8===✊️D', "8==✊️=D", "8=✊️==D", '8✊️===D', "8=✊️==D", "8==✊️=D", "8===✊️D", "8==✊️=D", '8=✊️==D', "8✊️===D", '8=✊️==D', "8==✊️=D", "8===✊️D 💦", "8==✊️=D💦 💦", "8=✊️==D 💦💦 💦"]; + for (const _0x406c5e of _0x3eccb1) { + await new Promise(_0x2b41ff => setTimeout(_0x2b41ff, 0x3e8)); + await _0x45cd83.relayMessage(_0x96d404, { + 'protocolMessage': { + 'key': _0x1d39fa.key, + 'type': 0xe, + 'editedMessage': { + 'conversation': _0x406c5e + } + } + }, {}); + } + } catch (_0x57d8ae) { + console.log(_0x57d8ae); + _0x47c6bc("❌ *Error!* " + _0x57d8ae.message); + } +}); +cmd({ + 'pattern': "happy", + 'desc': "Displays a dynamic edit msg for fun.", + 'category': "tools", + 'react': '😁', + 'filename': __filename +}, async (_0x353111, _0x52aa7e, _0x362309, { + from: _0x3d98dd, + reply: _0x46f413 +}) => { + try { + const _0xce6d4d = await _0x353111.sendMessage(_0x3d98dd, { + 'text': '😂' + }); + const _0x47a009 = ['😃', '😄', '😁', '😊', '😎', '🥳', '😸', '😹', '🌞', '🌈', '😃', '😄', '😁', '😊', '😎', '🥳', '😸', '😹', '🌞', '🌈', '😃', '😄', '😁', '😊']; + for (const _0x445d2a of _0x47a009) { + await new Promise(_0x3a1a76 => setTimeout(_0x3a1a76, 0x320)); + await _0x353111.relayMessage(_0x3d98dd, { + 'protocolMessage': { + 'key': _0xce6d4d.key, + 'type': 0xe, + 'editedMessage': { + 'conversation': _0x445d2a + } + } + }, {}); + } + } catch (_0x3d2162) { + console.log(_0x3d2162); + _0x46f413("❌ *Error!* " + _0x3d2162.message); + } +}); +cmd({ + 'pattern': "heart", + 'desc': "Displays a dynamic edit msg for fun.", + 'category': "tools", + 'react': '🫀', + 'filename': __filename +}, async (_0x468a9f, _0x3a7e90, _0xac39dc, { + from: _0x53a037, + reply: _0x542a66 +}) => { + try { + const _0x39d571 = await _0x468a9f.sendMessage(_0x53a037, { + 'text': '❤️' + }); + const _0x52271e = ['💖', '💗', '💕', '❤️', '💛', '💚', '🫀', '💙', '💜', '🖤', '♥️', '🤍', '🤎', '💗', '💞', '💓', '💘', '💝', '♥️', '💟', '🫀', '❤️']; + for (const _0x42a679 of _0x52271e) { + await new Promise(_0xc0ed08 => setTimeout(_0xc0ed08, 0x1f4)); + await _0x468a9f.relayMessage(_0x53a037, { + 'protocolMessage': { + 'key': _0x39d571.key, + 'type': 0xe, + 'editedMessage': { + 'conversation': _0x42a679 + } + } + }, {}); + } + } catch (_0x2f7fbb) { + console.log(_0x2f7fbb); + _0x542a66("❌ *Error!* " + _0x2f7fbb.message); + } +}); +cmd({ + 'pattern': "anger", + 'desc': "Displays a dynamic edit msg for fun.", + 'category': "tools", + 'react': '🤡', + 'filename': __filename +}, async (_0x4c63a0, _0x2a2d0f, _0xfd1920, { + from: _0x7c1f05, + reply: _0x2fc617 +}) => { + try { + const _0x471762 = await _0x4c63a0.sendMessage(_0x7c1f05, { + 'text': '🤡' + }); + const _0x4383e5 = ['😡', '😠', '🤬', '😤', '😾', '😡', '😠', '🤬', '😤', '😾']; + for (const _0x562bf3 of _0x4383e5) { + await new Promise(_0x2be7c0 => setTimeout(_0x2be7c0, 0x3e8)); + await _0x4c63a0.relayMessage(_0x7c1f05, { + 'protocolMessage': { + 'key': _0x471762.key, + 'type': 0xe, + 'editedMessage': { + 'conversation': _0x562bf3 + } + } + }, {}); + } + } catch (_0x44a0c5) { + console.log(_0x44a0c5); + _0x2fc617("❌ *Error!* " + _0x44a0c5.message); + } +}); +cmd({ + 'pattern': "sad", + 'desc': "Displays a dynamic edit msg for fun.", + 'category': "tools", + 'react': '😫', + 'filename': __filename +}, async (_0x33fcee, _0x1876fe, _0xc17cb8, { + from: _0x15bb18, + reply: _0xee066f +}) => { + try { + const _0x4c06fd = await _0x33fcee.sendMessage(_0x15bb18, { + 'text': '😭' + }); + const _0x2d9a88 = ['🥺', '😟', '😕', '😖', '😫', '🙁', '😩', '😥', '😓', '😪', '😢', '😔', '😞', '😭', '💔', '😭', '😿']; + for (const _0x336d71 of _0x2d9a88) { + await new Promise(_0x6eece4 => setTimeout(_0x6eece4, 0x3e8)); + await _0x33fcee.relayMessage(_0x15bb18, { + 'protocolMessage': { + 'key': _0x4c06fd.key, + 'type': 0xe, + 'editedMessage': { + 'conversation': _0x336d71 + } + } + }, {}); + } + } catch (_0x345651) { + console.log(_0x345651); + _0xee066f("❌ *Error!* " + _0x345651.message); + } +}); +cmd({ + 'pattern': 'shy', + 'desc': "Displays a dynamic edit msg for fun.", + 'category': "tools", + 'react': '😳', + 'filename': __filename +}, async (_0x5cfd31, _0x13a257, _0x4fe9cd, { + from: _0x453318, + reply: _0x138a01 +}) => { + try { + const _0x361884 = await _0x5cfd31.sendMessage(_0x453318, { + 'text': "> SUBZERO MD" + }); + const _0x206081 = ['😳', '😊', '😶', '🙈', '🙊', '😳', '😊', '😶', '🙈', '🙊']; + for (const _0x5ccb6e of _0x206081) { + await new Promise(_0x23b67b => setTimeout(_0x23b67b, 0x3e8)); + await _0x5cfd31.relayMessage(_0x453318, { + 'protocolMessage': { + 'key': _0x361884.key, + 'type': 0xe, + 'editedMessage': { + 'conversation': _0x5ccb6e + } + } + }, {}); + } + } catch (_0x3775a4) { + console.log(_0x3775a4); + _0x138a01("❌ *Error!* " + _0x3775a4.message); + } +}); +cmd({ + 'pattern': "moon", + 'desc': "Displays a dynamic edit msg for fun.", + 'category': 'tools', + 'react': '🌙', + 'filename': __filename +}, async (_0x2adc05, _0x574382, _0xe7924c, { + from: _0x10f877, + reply: _0x1797ef +}) => { + try { + const _0x16fb04 = await _0x2adc05.sendMessage(_0x10f877, { + 'text': '🌙' + }); + const _0x226056 = ['🌗', '🌘', '🌑', '🌒', '🌓', '🌔', '🌕', '🌖', '🌗', '🌘', '🌑', '🌒', '🌓', '🌔', '🌕', '🌖', '🌗', '🌘', '🌑', '🌒', '🌓', '🌔', '🌕', '🌖', '🌗', '🌘', '🌑', '🌒', '🌓', '🌔', '🌕', "🌚🌝"]; + for (const _0x3ad6c8 of _0x226056) { + await new Promise(_0x1eba41 => setTimeout(_0x1eba41, 0x3e8)); + await _0x2adc05.relayMessage(_0x10f877, { + 'protocolMessage': { + 'key': _0x16fb04.key, + 'type': 0xe, + 'editedMessage': { + 'conversation': _0x3ad6c8 + } + } + }, {}); + } + } catch (_0x31361e) { + console.log(_0x31361e); + _0x1797ef("❌ *Error!* " + _0x31361e.message); + } +}); +cmd({ + 'pattern': "confused", + 'desc': "Displays a dynamic edit msg for fun.", + 'category': 'tools', + 'react': '🙀', + 'filename': __filename +}, async (_0x4e5dcf, _0x197ed7, _0x4e6e55, { + from: _0x419892, + reply: _0x1f258d +}) => { + try { + const _0x566b9e = await _0x4e5dcf.sendMessage(_0x419892, { + 'text': '🙀' + }); + const _0x35a517 = ['😕', '😟', '😵', '🤔', '😖', '😲', '😦', '🤷', "🤷‍♂️", '🤷‍♀️']; + for (const _0x177123 of _0x35a517) { + await new Promise(_0x19e7ff => setTimeout(_0x19e7ff, 0x3e8)); + await _0x4e5dcf.relayMessage(_0x419892, { + 'protocolMessage': { + 'key': _0x566b9e.key, + 'type': 0xe, + 'editedMessage': { + 'conversation': _0x177123 + } + } + }, {}); + } + } catch (_0x3914f5) { + console.log(_0x3914f5); + _0x1f258d("❌ *Error!* " + _0x3914f5.message); + } +}); +cmd({ + 'pattern': 'kiss', + 'desc': "Displays a dynamic edit msg for fun.", + 'category': "tools", + 'react': '♥️', + 'filename': __filename +}, async (_0x5534d6, _0xea351e, _0x4a659, { + from: _0x3549d3, + reply: _0x38bcdd +}) => { + try { + const _0x3d3056 = await _0x5534d6.sendMessage(_0x3549d3, { + 'text': '♥️' + }); + const _0x548d62 = ['🥵', '❤️', '💋', '😫', '🤤', '😋', '🥵', '🥶', '🙊', '😻', '🙈', '💋', '🫂', '🫀', '👅', '👄', '💋']; + for (const _0x2ae417 of _0x548d62) { + await new Promise(_0x3260b1 => setTimeout(_0x3260b1, 0x3e8)); + await _0x5534d6.relayMessage(_0x3549d3, { + 'protocolMessage': { + 'key': _0x3d3056.key, + 'type': 0xe, + 'editedMessage': { + 'conversation': _0x2ae417 + } + } + }, {}); + } + } catch (_0x1763fc) { + console.log(_0x1763fc); + _0x38bcdd("❌ *Error!* " + _0x1763fc.message); + } +}); +cmd({ + 'pattern': 'nikal', + 'desc': "Displays a dynamic edit msg for fun.", + 'category': "tools", + 'react': '🗿', + 'filename': __filename +}, async (_0x125191, _0x3f957c, _0xb9d01a, { + from: _0x3ae285, + reply: _0x30a5f5 +}) => { + try { + const _0x19567b = await _0x125191.sendMessage(_0x3ae285, { + 'text': "Mr Frank OFC🗿" + }); + const _0x1c80f3 = ["⠀⠀⠀⣠⣶⡾⠏⠉⠙⠳⢦⡀⠀⠀⠀⢠⠞⠉⠙⠲⡀⠀\n ⠀⣴⠿⠏⠀⠀⠀⠀⠀ ⢳⡀⠀⡏⠀⠀⠀ ⠀ ⢷\n⢠⣟⣋⡀⢀⣀⣀⡀⠀⣀⡀ ⣧⠀⢸⠀⠀⠀ ⠀ ⡇\n⢸⣯⡭⠁⠸⣛⣟⠆⡴⣻⡲ ⣿ ⣸ Mr ⡇\n ⣟⣿⡭⠀⠀⠀⠀⠀⢱⠀⠀ ⣿ ⢹⠀ ⡇\n ⠙⢿⣯⠄⠀⠀⠀__⠀ ⠀ ⡿ ⠀⡇⠀⠀⠀⠀ ⡼\n⠀⠀⠀⠹⣶⠆⠀⠀⠀⠀⠀⡴⠃⠀ ⠘⠤⣄⣠⠞⠀\n⠀⠀⠀⠀⢸⣷⡦⢤⡤⢤⣞⣁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀\n⠀⢀⣤⣴⣿⣏⠁⠀⠀⠸⣏⢯⣷⣖⣦⡀⠀⠀⠀⠀⠀⠀\n⢀⣾⣽⣿⣿⣿⣿⠛⢲⣶⣾⢉⡷⣿⣿⠵⣿⠀⠀⠀⠀⠀⠀\n⣼⣿⠍⠉⣿⡭⠉⠙⢺⣇⣼⡏⠀⠀ ⠀⣄⢸⠀⠀⠀⠀⠀⠀`", "⠀⠀⠀⣠⣶⡾⠏⠉⠙⠳⢦⡀⠀⠀⠀⢠⠞⠉⠙⠲⡀⠀\n ⠀⣴⠿⠏⠀⠀⠀⠀⠀ ⠀ ⢳⡀⠀⡏⠀⠀⠀ ⠀ ⢷\n⢠⣟⣋⡀⢀⣀⣀⡀⠀⣀⡀ ⣧⠀⢸⠀⠀⠀ ⡇\n⢸⣯⡭⠁⠸⣛⣟⠆⡴⣻⡲ ⣿ ⣸ Frank ⡇\n ⣟⣿⡭⠀⠀⠀⠀⠀⢱⠀⠀ ⣿ ⢹⠀ ⡇\n ⠙⢿⣯⠄⠀⠀|__|⠀⠀ ⡿ ⠀⡇⠀⠀⠀⠀ ⡼\n⠀⠀⠀⠹⣶⠆⠀⠀⠀⠀⠀⡴⠃⠀ ⠘⠤⣄⣠⠞⠀\n⠀⠀⠀⠀⢸⣷⡦⢤⡤⢤⣞⣁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀\n⠀⢀⣤⣴⣿⣏⠁⠀⠀⠸⣏⢯⣷⣖⣦⡀⠀⠀⠀⠀⠀⠀\n⢀⣾⣽⣿⣿⣿⣿⠛⢲⣶⣾⢉⡷⣿⣿⠵⣿⠀⠀⠀⠀⠀⠀\n⣼⣿⠍⠉⣿⡭⠉⠙⢺⣇⣼⡏⠀⠀ ⠀⣄⢸⠀⠀⠀⠀⠀⠀`", "⠀⠀⠀⣠⣶⡾⠏⠉⠙⠳⢦⡀⠀⠀⠀⢠⠞⠉⠙⠲⡀⠀\n ⠀⣴⠿⠏⠀⠀ ⠀ ⢳⡀⠀⡏⠀⠀ ⠀ ⢷\n⢠⣟⣋⡀⢀⣀⣀⡀⠀⣀⡀ ⣧⠀⢸⠀⠀⠀⠀ ⡇\n⢸⣯⡭⠁⠸⣛⣟⠆⡴⣻⡲ ⣿ ⣸ OFC ⡇\n ⣟⣿⡭⠀⠀⠀⠀⠀⢱⠀⠀ ⣿ ⢹⠀ ⡇\n ⠙⢿⣯⠄⠀⠀(P)⠀⠀ ⡿ ⠀⡇⠀⠀⠀⠀ ⡼\n⠀⠀⠀⠹⣶⠆⠀⠀⠀⠀⠀⡴⠃⠀ ⠘⠤⣄⣠⠞⠀\n⠀⠀⠀⠀⢸⣷⡦⢤⡤⢤⣞⣁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀\n⠀⢀⣤⣴⣿⣏⠁⠀⠀⠸⣏⢯⣷⣖⣦⡀⠀⠀⠀⠀⠀⠀\n⢀⣾⣽⣿⣿⣿⣿⠛⢲⣶⣾⢉⡷⣿⣿⠵⣿⠀⠀⠀⠀⠀⠀\n⣼⣿⠍⠉⣿⡭⠉⠙⢺⣇⣼⡏⠀⠀ ⠀⣄⢸⠀⠀⠀⠀⠀⠀`", "⠀⠀⠀⣠⣶⡾⠏⠉⠙⠳⢦⡀⠀⠀⠀⢠⠞⠉⠙⠲⡀⠀\n ⠀⣴⠿⠏⠀⠀ ⠀ ⢳⡀⠀⡏⠀⠀ ⠀ ⢷\n⢠⣟⣋⡀⢀⣀⣀⡀⠀⣀⡀ ⣧⠀⢸⠀ ⠀ ⡇\n⢸⣯⡭⠁⠸⣛⣟⠆⡴⣻⡲ ⣿ ⣸ Zimbabwe ⡇\n ⣟⣿⡭⠀⠀⠀⠀⠀⢱⠀ ⣿ ⢹⠀ ⡇\n ⠙⢿⣯⠄⠀⠀⠀__ ⠀ ⠀ ⡿ ⠀⡇⠀⠀⠀⠀ ⡼\n⠀⠀⠀⠹⣶⠆⠀⠀⠀⠀⠀⡴⠃⠀ ⠘⠤⣄⣠⠞⠀\n⠀⠀⠀⠀⢸⣷⡦⢤⡤⢤⣞⣁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀\n⠀⢀⣤⣴⣿⣏⠁⠀⠀⠸⣏⢯⣷⣖⣦⡀⠀⠀⠀⠀⠀⠀\n⢀⣾⣽⣿⣿⣿⣿⠛⢲⣶⣾⢉⡷⣿⣿⠵⣿⠀⠀⠀⠀⠀⠀\n⣼⣿⠍⠉⣿⡭⠉⠙⢺⣇⣼⡏⠀⠀ ⠀⣄⢸⠀⠀⠀⠀⠀⠀`", "⠀⠀⠀⣠⣶⡾⠏⠉⠙⠳⢦⡀⠀⠀⠀⢠⠞⠉⠙⠲⡀⠀\n ⠀⣴⠿⠏⠀⠀⠀⠀⠀ ⢳⡀⠀⡏⠀⠀ ⠀ ⢷\n⢠⣟⣋⡀⢀⣀⣀⡀⠀⣀⡀ ⣧⠀⢸⠀⠀ ⠀ ⡇\n⢸⣯⡭⠁⠸⣛⣟⠆⡴⣻⡲ ⣿ ⣸ Best ⡇\n ⣟⣿⡭⠀⠀⠀⠀⠀⢱⠀⠀ ⣿ ⢹⠀ ⡇\n ⠙⢿⣯⠄⠀⠀|__| ⠀ ⡿ ⠀⡇⠀⠀⠀⠀ ⡼\n⠀⠀⠀⠹⣶⠆⠀⠀⠀⠀⠀⡴⠃⠀ ⠘⠤⣄⣠⠞⠀\n⠀⠀⠀⠀⢸⣷⡦⢤⡤⢤⣞⣁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀\n⠀⢀⣤⣴⣿⣏⠁⠀⠀⠸⣏⢯⣷⣖⣦⡀⠀⠀⠀⠀⠀⠀\n⢀⣾⣽⣿⣿⣿⣿⠛⢲⣶⣾⢉⡷⣿⣿⠵⣿⠀⠀⠀⠀⠀⠀\n⣼⣿⠍⠉⣿⡭⠉⠙⢺⣇⣼⡏⠀⠀ ⠀⣄⢸⠀⠀⠀⠀⠀⠀`", "⠀⠀⠀⣠⣶⡾⠏⠉⠙⠳⢦⡀⠀⠀⠀⢠⠞⠉⠙⠲⡀⠀\n ⠀⣴⠿⠏⠀⠀⠀⠀ ⠀ ⠀⢳⡀⠀⡏⠀⠀ ⢷\n⢠⣟⣋⡀⢀⣀⣀⡀⠀⣀⡀ ⣧⠀⢸⠀ ⠀ ⡇\n⢸⣯⡭⠁⠸⣛⣟⠆⡴⣻⡲ ⣿ ⣸ Country ⡇\n ⣟⣿⡭⠀⠀⠀⠀⠀⢱⠀ ⣿ ⢹⠀ ⡇\n ⠙⢿⣯⠄⠀⠀Ever⠀⠀ ⡿ ⠀⡇⠀⠀⠀⠀ ⡼\n⠀⠀⠀⠹⣶⠆⠀⠀⠀⠀⠀ ⡴⠃⠀ ⠘⠤⣄⣠⠞⠀\n⠀⠀⠀⠀⢸⣷⡦⢤⡤⢤⣞⣁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀\n⠀⢀⣤⣴⣿⣏⠁⠀⠀⠸⣏⢯⣷⣖⣦⡀⠀⠀⠀⠀⠀⠀\n⢀⣾⣽⣿⣿⣿⣿⠛⢲⣶⣾⢉⡷⣿⣿⠵⣿⠀⠀⠀⠀⠀⠀\n⣼⣿⠍⠉⣿⡭⠉⠙⢺⣇⣼⡏⠀⠀ ⠀⣄⢸⠀"]; + for (const _0x77af75 of _0x1c80f3) { + await new Promise(_0x40d3fb => setTimeout(_0x40d3fb, 0x5dc)); + await _0x125191.relayMessage(_0x3ae285, { + 'protocolMessage': { + 'key': _0x19567b.key, + 'type': 0xe, + 'editedMessage': { + 'conversation': _0x77af75 + } + } + }, {}); + } + } catch (_0x61a6ba) { + console.log(_0x61a6ba); + _0x30a5f5("❌ *Error!* " + _0x61a6ba.message); + } +}); diff --git a/plugins/other-alive.js b/plugins/other-alive.js new file mode 100644 index 0000000000000000000000000000000000000000..34471a8b81919515a34dfe1b8edc1b7a86ae1001 --- /dev/null +++ b/plugins/other-alive.js @@ -0,0 +1,238 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const config = require('../config') +const {cmd , commands} = require('../command') +cmd({ + pattern: "alive", + react: "💗", + desc: "Check bot online or no.", + category: "main", + filename: __filename +}, +async(conn, mek, m,{from, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply}) => { +try{ +return await conn.sendMessage(from,{image: {url: config.ALIVE_IMG},caption: config.LIVE_MSG},{quoted: mek}) +}catch(e){ +console.log(e) +reply(`${e}`) +} +}) diff --git a/plugins/other-tts.js b/plugins/other-tts.js new file mode 100644 index 0000000000000000000000000000000000000000..943e8b657ea48f5fbe3a36860ce2e79446e8695b --- /dev/null +++ b/plugins/other-tts.js @@ -0,0 +1,217 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const _0x32f080=_0x2a22;(function(_0xd9f5f8,_0x211240){const _0x3a81af=_0x2a22,_0xdb5bfb=_0xd9f5f8();while(!![]){try{const _0x1e8382=-parseInt(_0x3a81af(0x151))/0x1*(parseInt(_0x3a81af(0x158))/0x2)+parseInt(_0x3a81af(0x154))/0x3+parseInt(_0x3a81af(0x15b))/0x4+-parseInt(_0x3a81af(0x146))/0x5+parseInt(_0x3a81af(0x15a))/0x6+-parseInt(_0x3a81af(0x14f))/0x7+parseInt(_0x3a81af(0x148))/0x8*(parseInt(_0x3a81af(0x147))/0x9);if(_0x1e8382===_0x211240)break;else _0xdb5bfb['push'](_0xdb5bfb['shift']());}catch(_0x60c6b3){_0xdb5bfb['push'](_0xdb5bfb['shift']());}}}(_0x41da,0x87f06));function _0x2a22(_0x1ab121,_0x3070c3){const _0x41da16=_0x41da();return _0x2a22=function(_0x2a225d,_0x229e60){_0x2a225d=_0x2a225d-0x146;let _0x5a0a7c=_0x41da16[_0x2a225d];return _0x5a0a7c;},_0x2a22(_0x1ab121,_0x3070c3);}function hi(){const _0x4773d1=_0x2a22;console['log'](_0x4773d1(0x15d));}hi();function _0x41da(){const _0x2b02a3=['⚠️\x20An\x20error\x20occurred\x20data\x20while\x20translating\x20the\x20your\x20text.\x20Please\x20try\x20again\x20later🤕','../config','10hVpNTD','https://api.mymemory.translated.net/get?q=','2262012YOludJ','115644TFEemK','log','Hello\x20World!','>\x20*SUBZERO\x20MD\x20TRANSLATION*\x0a\x0a>\x20🔤\x20*Original*:\x20','\x0a\x0a>\x20🔠\x20*Translated*:\x20','toUpperCase','🌍\x20Translate\x20text\x20between\x20languages','length','translate','getAudioUrl','../command','3266755DOYdwK','4950bnLfoG','25056kqCGbO','slice','\x0a\x0a>\x20🌐\x20*Language*:\x20','trt','sendMessage','tts','audio/mpeg','3206392swmmyU','translatedText','100943qdFRiE','https://translate.google.com','join','133245DvcVxx','Need\x20some\x20text.\x20*Eg*.tts\x20SUBZERO-MD'];_0x41da=function(){return _0x2b02a3;};return _0x41da();}const axios=require('axios'),config=require(_0x32f080(0x157)),{cmd,commands}=require(_0x32f080(0x165)),googleTTS=require('google-tts-api');cmd({'pattern':_0x32f080(0x14b),'alias':[_0x32f080(0x163)],'desc':_0x32f080(0x161),'react':'⚡','category':'other','filename':__filename},async(_0x4a8d01,_0xf6ffa1,_0x3e17fe,{from:_0x3d8eef,q:_0x574a18,reply:_0x595457})=>{const _0x1e8c24=_0x32f080;try{const _0x3a5df8=_0x574a18['split']('\x20');if(_0x3a5df8[_0x1e8c24(0x162)]<0x2)return _0x595457('❗\x20Please\x20provide\x20a\x20language\x20code\x20and\x20text.\x20Usage:\x20.translate\x20[language\x20code]\x20[text]');const _0x321123=_0x3a5df8[0x0],_0x311872=_0x3a5df8[_0x1e8c24(0x149)](0x1)[_0x1e8c24(0x153)]('\x20'),_0xb39cad=_0x1e8c24(0x159)+encodeURIComponent(_0x311872)+'&langpair=en|'+_0x321123,_0x2bf583=await axios['get'](_0xb39cad),_0x335607=_0x2bf583['data']['responseData'][_0x1e8c24(0x150)],_0x4561ba=_0x1e8c24(0x15e)+_0x311872+_0x1e8c24(0x15f)+_0x335607+_0x1e8c24(0x14a)+_0x321123[_0x1e8c24(0x160)]();return _0x595457(_0x4561ba);}catch(_0x1ddf7b){return console[_0x1e8c24(0x15c)](_0x1ddf7b),_0x595457(_0x1e8c24(0x156));}}),cmd({'pattern':_0x32f080(0x14d),'desc':'download\x20songs','category':'download','react':'👧','filename':__filename},async(_0x259cc4,_0x1de0c0,_0x46e735,{from:_0x235bbc,quoted:_0x16b999,body:_0x5a13b6,isCmd:_0x2aebb2,command:_0x219243,args:_0x59b84f,q:_0x94e34f,isGroup:_0x3d85e9,sender:_0x137c5c,senderNumber:_0x240c1d,botNumber2:_0x4ef754,botNumber:_0x539868,pushname:_0x3814f0,isMe:_0x3d9a72,isOwner:_0x3afcc1,groupMetadata:_0x2eb301,groupName:_0x598d8a,participants:_0x9acc18,groupAdmins:_0x18ade9,isBotAdmins:_0x4d3f16,isAdmins:_0x12607b,reply:_0x115d2c})=>{const _0xcfe05a=_0x32f080;try{if(!_0x94e34f)return _0x115d2c(_0xcfe05a(0x155));const _0x43ff10=googleTTS[_0xcfe05a(0x164)](_0x94e34f,{'lang':'hi-IN','slow':![],'host':_0xcfe05a(0x152)});await _0x259cc4[_0xcfe05a(0x14c)](_0x235bbc,{'audio':{'url':_0x43ff10},'mimetype':_0xcfe05a(0x14e),'ptt':!![]},{'quoted':_0x1de0c0});}catch(_0x28d4fc){_0x115d2c(''+_0x28d4fc);}}); \ No newline at end of file diff --git a/plugins/owners-tools.js b/plugins/owners-tools.js new file mode 100644 index 0000000000000000000000000000000000000000..3caccfd7b95ee09928bb27150936f1e900ad29a7 --- /dev/null +++ b/plugins/owners-tools.js @@ -0,0 +1,357 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const { cmd ,commands } = require('../command'); +const { exec } = require('child_process'); +const config = require('../config'); +const {sleep} = require('../lib/functions') +// 1. Shutdown Bot +cmd({ + pattern: "shutdown", + desc: "Shutdown the bot.", + category: "owner", + react: "🛑", + filename: __filename +}, +async (conn, mek, m, { from, isOwner, reply }) => { + if (!isOwner) return reply("❌ You are not the owner!"); + reply("🛑 Shutting down...").then(() => process.exit()); +}); +// 2. Broadcast Message to All Groups +cmd({ + pattern: "broadcast", + desc: "Broadcast a message to all groups.", + category: "owner", + react: "📢", + filename: __filename +}, +async (conn, mek, m, { from, isOwner, args, reply }) => { + if (!isOwner) return reply("❌ You are not the owner!"); + if (args.length === 0) return reply("📢 Please provide a message to broadcast."); + const message = args.join(' '); + const groups = Object.keys(await conn.groupFetchAllParticipating()); + for (const groupId of groups) { + await conn.sendMessage(groupId, { text: message }, { quoted: mek }); + } + reply("📢 Message broadcasted to all groups."); +}); +// 3. Set Profile Picture +cmd({ + pattern: "setpp", + desc: "Set bot profile picture.", + category: "owner", + react: "🖼️", + filename: __filename +}, +async (conn, mek, m, { from, isOwner, quoted, reply }) => { + if (!isOwner) return reply("❌ You are not the owner!"); + if (!quoted || !quoted.message.imageMessage) return reply("❌ Please reply to an image."); + try { + const media = await conn.downloadMediaMessage(quoted); + await conn.updateProfilePicture(conn.user.jid, { url: media }); + reply("🖼️ Profile picture updated successfully!"); + } catch (error) { + reply(`❌ Error updating profile picture: ${error.message}`); + } +}); + +// 6. Clear All Chats +cmd({ + pattern: "clearchats", + desc: "Clear all chats from the bot.", + category: "owner", + react: "🧹", + filename: __filename +}, +async (conn, mek, m, { from, isOwner, reply }) => { + if (!isOwner) return reply("❌ You are not the owner!"); + try { + const chats = conn.chats.all(); + for (const chat of chats) { + await conn.modifyChat(chat.jid, 'delete'); + } + reply("🧹 All chats cleared successfully!"); + } catch (error) { + reply(`❌ Error clearing chats: ${error.message}`); + } +}); + +cmd({ + pattern: "jid", + desc: "Get the bot's JID.", + category: "owner", + react: "🤖", + filename: __filename +}, +async (conn, mek, m, { from, isOwner, reply }) => { + if (!isOwner) return reply("❌ You are not the owner!"); + reply(`🤖 *Bot JID:* ${conn.user.jid}`); +}); +// 8. Group JIDs List +cmd({ + pattern: "gjid", + desc: "Get the list of JIDs for all groups the bot is part of.", + category: "owner", + react: "📝", + filename: __filename +}, +async (conn, mek, m, { from, isOwner, reply }) => { + if (!isOwner) return reply("❌ You are not the owner!"); + const groups = await conn.groupFetchAllParticipating(); + const groupJids = Object.keys(groups).join('\n'); + reply(`📝 *Group JIDs:*\n\n${groupJids}`); +}); + + +// block + +cmd({ + pattern: "block", + desc: "Block a user.", + category: "owner", + react: "🚫", + filename: __filename +}, +async (conn, mek, m, { from, isOwner, quoted, reply }) => { + if (!isOwner) return reply("❌ You are not the owner!"); + if (!quoted) return reply("❌ Please reply to the user you want to block."); + const user = quoted.sender; + try { + await conn.updateBlockStatus(user, 'block'); + reply(`🚫 User ${user} blocked successfully.`); + } catch (error) { + reply(`❌ Error blocking user: ${error.message}`); + } +}); +// 5. Unblock User +cmd({ + pattern: "unblock", + desc: "Unblock a user.", + category: "owner", + react: "✅", + filename: __filename +}, +async (conn, mek, m, { from, isOwner, quoted, reply }) => { + if (!isOwner) return reply("❌ You are not the owner!"); + if (!quoted) return reply("❌ Please reply to the user you want to unblock."); + const user = quoted.sender; + try { + await conn.updateBlockStatus(user, 'unblock'); + reply(`✅ User ${user} unblocked successfully.`); + } catch (error) { + reply(`❌ Error unblocking user: ${error.message}`); + } +}); diff --git a/plugins/search-bible.js b/plugins/search-bible.js new file mode 100644 index 0000000000000000000000000000000000000000..c0d41a1956dbb38366abdb0beb2e72fd1671696e --- /dev/null +++ b/plugins/search-bible.js @@ -0,0 +1,258 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const axios = require("axios"); +const { cmd } = require("../command"); + +// Command: bible +cmd({ + pattern: "bible", + desc: "Fetch Bible verses by reference.", + category: "fun", + react: "📖", + filename: __filename +}, async (conn, mek, m, { args, reply }) => { + try { + // Vérifiez si une référence est fournie + if (args.length === 0) { + return reply(`⚠️ *Please provide a Bible reference.*\n\n📝 *Example:*\n.bible John 1:1`); + } + + // Joindre les arguments pour former la référence + const reference = args.join(" "); + + // Appeler l'API avec la référence + const apiUrl = `https://bible-api.com/${encodeURIComponent(reference)}`; + const response = await axios.get(apiUrl); + + // Vérifiez si la réponse contient des données + if (response.status === 200 && response.data.text) { + const { reference: ref, text, translation_name } = response.data; + + // Envoyez la réponse formatée avec des emojis + reply( + `📜 *Bible Verse Found!*\n\n` + + `📖 *Reference:* ${ref}\n` + + `📚 *Text:* ${text}\n\n` + + `🗂️ *Translation:* ${translation_name}\n\n © SUBZERO BIBLE` + ); + } else { + reply("❌ *Verse not found.* Please check the reference and try again."); + } + } catch (error) { + console.error(error); + reply("⚠️ *An error occurred while fetching the Bible verse.* Please try again."); + } +}); diff --git a/plugins/search-define.js b/plugins/search-define.js new file mode 100644 index 0000000000000000000000000000000000000000..86ad0ec4f8b979988f46fefd1e79a77ad14cb85c --- /dev/null +++ b/plugins/search-define.js @@ -0,0 +1,254 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const axios = require('axios'); + const {cmd , commands} = require('../command'); + + cmd({ + pattern: "define", + desc: "📚 Get the definition of a word", + react: "🔍", + category: "Auther", + filename: __filename + }, + async (conn, mek, m, { from, q, reply }) => { + try { + if (!q) return reply("❗ Please provide a word to define. Usage: .define [word]"); + + const word = q; + const url = `https://api.dictionaryapi.dev/api/v2/entries/en/${word}`; + + const response = await axios.get(url); + const definitionData = response.data[0]; + + const definition = definitionData.meanings[0].definitions[0].definition; + const example = definitionData.meanings[0].definitions[0].example || 'No example available'; + const synonyms = definitionData.meanings[0].definitions[0].synonyms.join(', ') || 'No synonyms available'; + +const wordInfo = ` +📚 *Word*: ${definitionData.word} +🔍 *Definition*: ${definition} +📝 *Example*: ${example} +🔗 *Synonyms*: ${synonyms} + +> *© Powered By SubZero*`; + + return reply(wordInfo); + } catch (e) { + console.log(e); + if (e.response && e.response.status === 404) { + return reply("🚫 Word not found. Please check the spelling and try again."); + } + return reply("⚠️ An error occurred while fetching the definition. Please try again later."); + } + }); diff --git a/plugins/search-gitstalk.js b/plugins/search-gitstalk.js new file mode 100644 index 0000000000000000000000000000000000000000..e814486b708381054282fca00c3824fab47e4cb9 --- /dev/null +++ b/plugins/search-gitstalk.js @@ -0,0 +1,251 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const axios = require('axios'); +const config = require('../config'); +const { cmd, commands } = require('../command'); + +cmd({ + pattern: "githubstalk", + desc: "Fetch detailed GitHub user profile including profile picture.", + category: "menu", + react: "🖥️", + filename: __filename +}, +async (conn, mek, m, { from, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply }) => { + try { + const username = args[0]; + if (!username) { + return reply("Please provide a GitHub username. "); + } + const apiUrl = `https://api.github.com/users/${username}`; + const response = await axios.get(apiUrl); + const data = response.data; + + let userInfo = `👤 *Username*: ${data.name || data.login} +🔗 *Github Url*:(${data.html_url}) +📝 *Bio*: ${data.bio || 'Not available'} +🏙️ *Location*: ${data.location || 'Unknown'} +📊 *Public Repos*: ${data.public_repos} +👥 *Followers*: ${data.followers} | Following: ${data.following} +📅 *Created At*: ${new Date(data.created_at).toDateString()} +🔭 *Public Gists*: ${data.public_gists} +> © ᴘᴏᴡᴇʀᴇᴅ ʙʏ Mʀ Fʀᴀɴᴋ`; + const sentMsg = await conn.sendMessage(from,{image:{url: data.avatar_url },caption: userInfo },{quoted:mek }) + } catch (e) { + console.log(e); + reply(`error: ${e.response ? e.response.data.message : e.message}`); + } +}); + +// jawad tech x diff --git a/plugins/search-google.js b/plugins/search-google.js new file mode 100644 index 0000000000000000000000000000000000000000..5bc502ed1d2fe3c0ee570c85133864386ef62a48 --- /dev/null +++ b/plugins/search-google.js @@ -0,0 +1,258 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +// GOOGLE CMD + + +const axios = require("axios"); +const { cmd } = require("../command"); + +cmd({ + pattern: "google", + alias: ["gsearch", "search"], + desc: "Search Google for a query.", + category: "tools", + react: "🌐", + filename: __filename +}, async (conn, mek, m, { args, reply }) => { + try { + // Vérifiez si un mot-clé est fourni + if (args.length === 0) { + return reply(`❗ *Please provide a search query.*\n\n*Example:*\n.google SubZero Md Bot`); + } + + const query = args.join(" "); + const apiKey = "AIzaSyDMbI3nvmQUrfjoCJYLS69Lej1hSXQjnWI"; // Votre clé API Google + const cx = "baf9bdb0c631236e5"; // Votre ID de moteur de recherche personnalisé + const apiUrl = `https://www.googleapis.com/customsearch/v1?q=${encodeURIComponent(query)}&key=${apiKey}&cx=${cx}`; + + // Appel API + const response = await axios.get(apiUrl); + + // Vérifiez si l'API a renvoyé des résultats + if (response.status !== 200 || !response.data.items || response.data.items.length === 0) { + return reply(`❌ *No results found for:* ${query}`); + } + + // Format et envoi des résultats + let results = `🔎 *Google Search Results for:* "${query}"\n\n`; + response.data.items.slice(0, 5).forEach((item, index) => { + results += `*${index + 1}. ${item.title}*\n${item.link}\n${item.snippet}\n\n`; + }); + + reply(results.trim()); + } catch (error) { + console.error(error); + reply(`⚠️ *An error occurred while fetching search results.*\n\n${error.message}`); + } +}); diff --git a/plugins/search-img.js b/plugins/search-img.js new file mode 100644 index 0000000000000000000000000000000000000000..dd5c0ddfb006a404ff447523f707cddf5e673de4 --- /dev/null +++ b/plugins/search-img.js @@ -0,0 +1,273 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const _0x4e1bf7=_0xcd01;(function(_0x48c56c,_0x34d3df){const _0x4bd745=_0xcd01,_0x5783a=_0x48c56c();while(!![]){try{const _0x329a07=parseInt(_0x4bd745(0x1a2))/0x1*(-parseInt(_0x4bd745(0x1a6))/0x2)+-parseInt(_0x4bd745(0x1a7))/0x3+parseInt(_0x4bd745(0x191))/0x4*(parseInt(_0x4bd745(0x18d))/0x5)+parseInt(_0x4bd745(0x18e))/0x6*(-parseInt(_0x4bd745(0x19e))/0x7)+parseInt(_0x4bd745(0x189))/0x8*(-parseInt(_0x4bd745(0x1a5))/0x9)+-parseInt(_0x4bd745(0x188))/0xa+parseInt(_0x4bd745(0x195))/0xb*(parseInt(_0x4bd745(0x1a0))/0xc);if(_0x329a07===_0x34d3df)break;else _0x5783a['push'](_0x5783a['shift']());}catch(_0x4b3958){_0x5783a['push'](_0x5783a['shift']());}}}(_0x2ab7,0xcc09a));function _0xcd01(_0x518b96,_0xaeb532){const _0x2ab7af=_0x2ab7();return _0xcd01=function(_0xcd01f2,_0x1a0e33){_0xcd01f2=_0xcd01f2-0x188;let _0x42b4ae=_0x2ab7af[_0xcd01f2];return _0x42b4ae;},_0xcd01(_0x518b96,_0xaeb532);}function hi(){const _0x1da0e7=_0xcd01;console[_0x1da0e7(0x196)]('Hello\x20World!');}hi();function _0x2ab7(){const _0x4c7f6d=['image','644847jXkvdb','images_url','15548916uXcPmb','```©\x20Gᴇɴᴇʀᴀᴛᴇᴅ\x20ʙʏ\x20SᴜʙZᴇʀᴏ```','67GtjDyv','pinimg','*Please\x20provide\x20search\x20keywords\x20for\x20the\x20image.\x20Eg\x20Subzero*','7512957xaSQia','4362cquLLe','4779549hbaHix','min','❌\x20An\x20error\x20occurred\x20while\x20processing\x20your\x20request.','join','9673790NBjRbf','16aFuzWK','pinterest','img','length','1957180QGpKLG','108OPXVab','.img\x20','❌\x20No\x20images\x20found\x20for\x20\x22','4RlyezA','axios','🖼️','result','55yPlAdG','log','...*','sendMessage','https://apitest1-f7dcf17bd59b.herokuapp.com/download/piniimg?text=','data','get','❌\x20No\x20valid\x20image\x20URLs\x20found\x20in\x20the\x20results.'];_0x2ab7=function(){return _0x4c7f6d;};return _0x2ab7();}const {cmd,commands}=require('../command'),axios=require(_0x4e1bf7(0x192));cmd({'pattern':_0x4e1bf7(0x18b),'alias':[_0x4e1bf7(0x19d),_0x4e1bf7(0x18a),_0x4e1bf7(0x1a3)],'react':_0x4e1bf7(0x193),'desc':'Search\x20and\x20download\x20images\x20from\x20Pinterest\x20using\x20keywords.','category':_0x4e1bf7(0x19d),'use':_0x4e1bf7(0x18f),'filename':__filename},async(_0x2e2074,_0x2ab1e2,_0x1a7c4d,{from:_0x5bc900,args:_0x14015c,reply:_0x446460})=>{const _0x20ad22=_0x4e1bf7;try{const _0x4fbc0c=_0x14015c[_0x20ad22(0x1aa)]('\x20');if(!_0x4fbc0c)return _0x446460(_0x20ad22(0x1a4));_0x446460('*🔍\x20Showing\x20Results\x20For\x20-\x20'+_0x4fbc0c+_0x20ad22(0x197));const _0xd9f91=_0x20ad22(0x199)+encodeURIComponent(_0x4fbc0c),_0x22f8e9=await axios[_0x20ad22(0x19b)](_0xd9f91);if(!_0x22f8e9[_0x20ad22(0x19a)]||!_0x22f8e9[_0x20ad22(0x19a)][_0x20ad22(0x194)]||_0x22f8e9[_0x20ad22(0x19a)][_0x20ad22(0x194)][_0x20ad22(0x18c)]===0x0)return _0x446460(_0x20ad22(0x190)+_0x4fbc0c+'\x22.');const _0x5d4e19=_0x22f8e9[_0x20ad22(0x19a)][_0x20ad22(0x194)];for(let _0x23faa0=0x0;_0x23faa0!_0x54fc16[_0x20ad22(0x19f)])&&_0x446460(_0x20ad22(0x19c));}catch(_0x5c9ebc){console['error'](_0x5c9ebc),_0x446460(_0x20ad22(0x1a9));}}); + + +/*const { cmd } = require('../command'); +const axios = require('axios'); +const { Buffer } = require('buffer'); + +const GOOGLE_API_KEY = 'AIzaSyDMbI3nvmQUrfjoCJYLS69Lej1hSXQjnWI'; // Replace with your Google API key +const GOOGLE_CX = 'baf9bdb0c631236e5'; // Replace with your Google Custom Search Engine ID +//const apiKey = "AIzaSyDMbI3nvmQUrfjoCJYLS69Lej1hSXQjnWI"; // Votre clé API Google +// const cx = "baf9bdb0c631236e5"; / +cmd({ + pattern: "img", + desc: "Search and send images from Google.", + react: "🖼️", + category: "media", + filename: __filename +}, +async (conn, mek, m, { from, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply }) => { + try { + if (!q) return reply("Please provide a search query for the image."); + + // Fetch image URLs from Google Custom Search API + const searchQuery = encodeURIComponent(q); + const url = `https://www.googleapis.com/customsearch/v1?q=${searchQuery}&cx=${GOOGLE_CX}&key=${GOOGLE_API_KEY}&searchType=image&num=5`; + + const response = await axios.get(url); + const data = response.data; + + if (!data.items || data.items.length === 0) { + return reply("No images found for your query."); + } + + // Send images + for (let i = 0; i < data.items.length; i++) { + const imageUrl = data.items[i].link; + + // Download the image + const imageResponse = await axios.get(imageUrl, { responseType: 'arraybuffer' }); + const buffer = Buffer.from(imageResponse.data, 'binary'); + + // Send the image with a footer + await conn.sendMessage(from, { + image: buffer, + caption: ` +*💗 Image ${i + 1} from your search! 💗* + + *© ɢᴇɴᴇʀᴀᴛᴇᴅ ʙʏ sᴜʙᴢᴇʀᴏ! 👾* + +> ❄️ SUBZERO BOT ❄️` +}, { quoted: mek }); +} + + } catch (e) { + console.error(e); + reply(`Error: ${e.message}`); + } +}); +*/ diff --git a/plugins/search-lyrics.js b/plugins/search-lyrics.js new file mode 100644 index 0000000000000000000000000000000000000000..0fef4f6976761790f923a55fc1db79298139c5d7 --- /dev/null +++ b/plugins/search-lyrics.js @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + +const _0x42fca2=_0x48a4;(function(_0x2272f7,_0x2ad34a){const _0x7f4c12=_0x48a4,_0x2a7442=_0x2272f7();while(!![]){try{const _0x5d0e28=-parseInt(_0x7f4c12(0xa8))/0x1+parseInt(_0x7f4c12(0xb8))/0x2+parseInt(_0x7f4c12(0xb6))/0x3*(parseInt(_0x7f4c12(0xb2))/0x4)+parseInt(_0x7f4c12(0xb3))/0x5+-parseInt(_0x7f4c12(0xa4))/0x6*(-parseInt(_0x7f4c12(0xac))/0x7)+parseInt(_0x7f4c12(0xad))/0x8*(parseInt(_0x7f4c12(0xb7))/0x9)+-parseInt(_0x7f4c12(0xb9))/0xa;if(_0x5d0e28===_0x2ad34a)break;else _0x2a7442['push'](_0x2a7442['shift']());}catch(_0x30ba26){_0x2a7442['push'](_0x2a7442['shift']());}}}(_0x3acd,0x3917f));function _0x48a4(_0x4d2cff,_0x5e2841){const _0x3acd95=_0x3acd();return _0x48a4=function(_0x48a415,_0x34d0e0){_0x48a415=_0x48a415-0xa2;let _0x4d807c=_0x3acd95[_0x48a415];return _0x4d807c;},_0x48a4(_0x4d2cff,_0x5e2841);}function hi(){const _0xbbad38=_0x48a4;console[_0xbbad38(0xa7)](_0xbbad38(0xb0));}hi();const config=require(_0x42fca2(0xb4)),{cmd,commands}=require(_0x42fca2(0xb1)),{fetchJson}=require(_0x42fca2(0xab));function _0x3acd(){const _0x3d05dd=['\x20\x20\x20\x20*LYRICS\x20FOUND!*\x0a\x20\x0a>\x20©\x20Gᴇɴᴇʀᴀᴛᴇᴅ\x20Bʏ\x20SᴜʙZᴇʀᴏ\x20📂\x0a\x0a','log','443282zBZMiY','lyrics','result','../lib/functions','7hItTjw','44648iZNgmv','error','🎙️','Hello\x20World!','../command','4voFvdR','1320075AlHjOW','../config','Get\x20song\x20lyrics.','595227sbDwVY','423FcVWlD','131984LoPImP','1772030tqFVHQ','lyric','liri','music','381702eKdTwc','No\x20lyrics\x20found\x20for\x20that\x20song.'];_0x3acd=function(){return _0x3d05dd;};return _0x3acd();}cmd({'pattern':_0x42fca2(0xa9),'alias':[_0x42fca2(0xa2),_0x42fca2(0xba)],'react':_0x42fca2(0xaf),'desc':_0x42fca2(0xb5),'category':_0x42fca2(0xa3),'filename':__filename},async(_0x177263,_0x4f8bba,_0x2b7c95,{from:_0x1d3955,quoted:_0x21ae20,body:_0xda4f0e,isCmd:_0x49f44f,command:_0x4060ca,args:_0x5031a4,q:_0x189192,isGroup:_0x175708,sender:_0x419ffe,senderNumber:_0x157ecb,botNumber2:_0x1f4ec6,botNumber:_0x334a4a,pushname:_0x3f228b,isMe:_0x3fee67,isOwner:_0x3d7c8c,groupMetadata:_0x4cbf24,groupName:_0x5edbbc,participants:_0x538ec0,groupAdmins:_0x3dc8e3,isBotAdmins:_0x2c3f7c,isAdmins:_0x1cc23d,reply:_0x35acaf})=>{const _0x5549bd=_0x42fca2;try{if(!_0x189192)return _0x35acaf('Please\x20provide\x20a\x20song\x20title\x20or\x20artist\x20name.');let _0x12c307=await fetchJson('https://api.giftedtech.web.id/api/search/lyrics?apikey=gifted&query='+_0x189192);if(!_0x12c307[_0x5549bd(0xaa)])return _0x35acaf(_0x5549bd(0xa5));const _0x3f5f44=_0x12c307[_0x5549bd(0xaa)],_0x45a7cf=_0x5549bd(0xa6)+_0x3f5f44;return _0x35acaf(_0x45a7cf);}catch(_0x2f3466){console[_0x5549bd(0xae)](_0x2f3466),_0x35acaf('An\x20error\x20occurred\x20while\x20fetching\x20lyrics.');}}); diff --git a/plugins/search-news.js b/plugins/search-news.js new file mode 100644 index 0000000000000000000000000000000000000000..b38cc378e98f38184d41bf380690203fe2f22f50 --- /dev/null +++ b/plugins/search-news.js @@ -0,0 +1,260 @@ + +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const axios = require('axios'); +const { cmd } = require('../command'); + +cmd({ + pattern: "news", + desc: "Get the latest news headlines.", + category: "news", + react: "📰", + filename: __filename +}, +async (conn, mek, m, { from, reply }) => { + try { + const apiKey="0f2c43ab11324578a7b1709651736382"; + const response = await axios.get(`https://newsapi.org/v2/top-headlines?country=us&apiKey=${apiKey}`); + const articles = response.data.articles; + + if (!articles.length) return reply("No news articles found."); + + // Send each article as a separate message with image and title + for (let i = 0; i < Math.min(articles.length, 5); i++) { + const article = articles[i]; + let message = ` +📰 *${article.title}* +⚠️ _${article.description}_ +🔗 _${article.url}_ + + © ᴘᴏᴡᴇʀᴇᴅ ʙʏ sᴜʙᴢᴇʀᴏ ᴍᴅ + `; + + console.log('Article URL:', article.urlToImage); // Log image URL for debugging + + if (article.urlToImage) { + // Send image with caption + await conn.sendMessage(from, { image: { url: article.urlToImage }, caption: message }); + } else { + // Send text message if no image is available + await conn.sendMessage(from, { text: message }); + } + }; + } catch (e) { + console.error("Error fetching news:", e); + reply("Could not fetch news. Please try again later."); + } +}); diff --git a/plugins/search-npm.js b/plugins/search-npm.js new file mode 100644 index 0000000000000000000000000000000000000000..540385916afdc3d391a459e7f7a783da1a22c863 --- /dev/null +++ b/plugins/search-npm.js @@ -0,0 +1,53 @@ +const axios = require("axios"); +const config = require("../config"); +const { + cmd, + commands +} = require("../command"); + + +const _0x50a4a6 = { + pattern: "npm", + desc: "Search for a package on npm.", + react: '📦', + use: ".npm < name >" +}; +function _0x44eff2(_0x4311d2, _0x3babb0, _0x904d87, _0x18ffad, _0x1c70c8) { + return _0x479a(_0x3babb0 - 0x348, _0x18ffad); +} +_0x50a4a6.category = "convert"; +_0x50a4a6.filename = __filename; +cmd(_0x50a4a6, async (_0x45c3e3, _0x534cf5, _0x3c9af3, { + from: _0x4a8b86, + args: _0xfde2e1, + reply: _0x5ddb6d +}) => { + if (!_0xfde2e1.length) { + return _0x5ddb6d("Please provide the name of the npm package you want to search for. Example: !npm express"); + } + const _0x71d130 = _0xfde2e1.join(" "); + const _0x2b9e87 = "https://registry.npmjs.org/" + encodeURIComponent(_0x71d130); + try { + let _0x38bc8e = await fetch(_0x2b9e87); + if (!_0x38bc8e.ok) { + throw new Error("Package not found or an error occurred."); + } + let _0x27bf7a = await _0x38bc8e.json(); + const _0x39dfb0 = _0x27bf7a["dist-tags"].latest; + const _0x4a0adb = _0x27bf7a.description || "No description available."; + const _0x484c23 = "https://www.npmjs.com/package/" + _0x71d130; + const _0x1f70c0 = _0x27bf7a.license || "Unknown"; + const _0x3a52c7 = _0x27bf7a.repository ? _0x27bf7a.repository.url || "Not available" : "Not available"; + let _0x1a1dc5 = "\n*SUBZERO NPM SEARCH*\n\n\n*🔰NPM PACKAGE :* " + _0x71d130 + "\n\n*📄DESCRIPTION :* " + _0x4a0adb + "\n\n*⏸️ LAST VERSION :* " + _0x39dfb0 + "\n\n*🪪 LICENSE :* " + _0x1f70c0 + "\n\n*🪩REPOSITORY :* " + _0x3a52c7 + "\n\n*🔗NPM URL :* " + _0x484c23 + "\n\n"; + const _0x25a4fa = { + text: _0x1a1dc5 + }; + const _0x4ab6e6 = { + quoted: _0x534cf5 + }; + await _0x45c3e3.sendMessage(_0x4a8b86, _0x25a4fa, _0x4ab6e6); + } catch (_0x5b358e) { + console.error(_0x5b358e); + _0x5ddb6d("An error occurred: " + _0x5b358e.message); + } +}); diff --git a/plugins/search-tiktok.js b/plugins/search-tiktok.js new file mode 100644 index 0000000000000000000000000000000000000000..0a9532f2c964e7a8586573990184ab3ef1da5c00 --- /dev/null +++ b/plugins/search-tiktok.js @@ -0,0 +1,214 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const _0x1610c8=_0x2213;(function(_0x3e5e2a,_0x1a04cb){const _0x14a47a=_0x2213,_0x3a1ac1=_0x3e5e2a();while(!![]){try{const _0x4934a4=-parseInt(_0x14a47a(0xa5))/0x1+-parseInt(_0x14a47a(0xa4))/0x2*(parseInt(_0x14a47a(0xae))/0x3)+parseInt(_0x14a47a(0xb1))/0x4*(-parseInt(_0x14a47a(0xaf))/0x5)+-parseInt(_0x14a47a(0xaa))/0x6*(-parseInt(_0x14a47a(0xb0))/0x7)+-parseInt(_0x14a47a(0xa2))/0x8+parseInt(_0x14a47a(0xb5))/0x9*(-parseInt(_0x14a47a(0xb3))/0xa)+parseInt(_0x14a47a(0xa8))/0xb;if(_0x4934a4===_0x1a04cb)break;else _0x3a1ac1['push'](_0x3a1ac1['shift']());}catch(_0x14938a){_0x3a1ac1['push'](_0x3a1ac1['shift']());}}}(_0x33cc,0x5af82));function _0x33cc(){const _0x1ad810=['random','801NtYZIQ','705EurwTI','5098828ImdkJL','2244fsMbdx','react','47590TLRAbw','tools','1017cjKJQi','title','duration','Hello\x20World!','log','link','\x0a\x0a*•\x20URL*:\x20','\x0a\x0a*•\x20Duration*:\x20','Search\x20for\x20TikTok\x20videos\x20using\x20a\x20query.','🌸\x20What\x20do\x20you\x20want\x20to\x20search\x20on\x20TikTok?\x0a\x0a*Usage\x20Example:*\x0a.tiktoksearch\x20','Error\x20in\x20TikTokSearch\x20command:','data','sendMessage','slice','node-fetch','error','tiktoks','join','json','890544WgpCdx','\x0a\x0a*•\x20Author*:\x20','984teuBHA','159210gbvLdy','../command','author','7292626NybYaH','https://apis-starlights-team.koyeb.app/starlight/tiktoksearch?text=','6OtpIZJ','tiktoksearch','sort'];_0x33cc=function(){return _0x1ad810;};return _0x33cc();}function hi(){const _0x51c1f1=_0x2213;console[_0x51c1f1(0xb9)](_0x51c1f1(0xb8));}function _0x2213(_0x288ee6,_0x55d8a5){const _0x33cc03=_0x33cc();return _0x2213=function(_0x2213cc,_0x1fee0f){_0x2213cc=_0x2213cc-0x98;let _0x4303c7=_0x33cc03[_0x2213cc];return _0x4303c7;},_0x2213(_0x288ee6,_0x55d8a5);}hi();const fetch=require(_0x1610c8(0x9d)),{cmd}=require(_0x1610c8(0xa6));cmd({'pattern':_0x1610c8(0xab),'alias':[_0x1610c8(0x9f),'tiks'],'desc':_0x1610c8(0xbd),'react':'✅','category':_0x1610c8(0xb4),'filename':__filename},async(_0x5d41f4,_0x1978a1,_0x1de991,{from:_0x57c353,args:_0x2aa5e5,reply:_0x3ef93b})=>{const _0x97bc10=_0x1610c8;if(!_0x2aa5e5[0x0])return _0x3ef93b(_0x97bc10(0x98));const _0x59b32e=_0x2aa5e5[_0x97bc10(0xa0)]('\x20');await _0x1de991['react']('⌛');try{_0x3ef93b('🔎\x20Searching\x20TikTok\x20for:\x20'+_0x59b32e);const _0x2f8a3e=await fetch(_0x97bc10(0xa9)+encodeURIComponent(_0x59b32e)),_0x405b6c=await _0x2f8a3e[_0x97bc10(0xa1)]();if(!_0x405b6c||!_0x405b6c[_0x97bc10(0x9a)]||_0x405b6c[_0x97bc10(0x9a)]['length']===0x0)return await _0x1de991[_0x97bc10(0xb2)]('❌'),_0x3ef93b('❌\x20No\x20results\x20found\x20for\x20your\x20query.\x20Please\x20try\x20with\x20a\x20different\x20keyword.');const _0x5cb45f=_0x405b6c['data'][_0x97bc10(0x9c)](0x0,0x7);_0x5cb45f[_0x97bc10(0xac)](()=>Math[_0x97bc10(0xad)]()-0.5);for(const _0x30ddb6 of _0x5cb45f){const _0x4869f9='🌸\x20*SubZero\x20TikTok\x20Video\x20Result*:\x0a\x0a*•\x20Title*:\x20'+_0x30ddb6[_0x97bc10(0xb6)]+_0x97bc10(0xa3)+(_0x30ddb6[_0x97bc10(0xa7)]||'Unknown')+_0x97bc10(0xbc)+(_0x30ddb6[_0x97bc10(0xb7)]||'Unknown')+_0x97bc10(0xbb)+_0x30ddb6[_0x97bc10(0xba)]+'\x0a\x0a';_0x30ddb6['nowm']?await _0x5d41f4[_0x97bc10(0x9b)](_0x57c353,{'video':{'url':_0x30ddb6['nowm']},'caption':_0x4869f9},{'quoted':_0x1de991}):_0x3ef93b('❌\x20Failed\x20to\x20retrieve\x20video\x20for\x20\x22'+_0x30ddb6[_0x97bc10(0xb6)]+'\x22.');}await _0x1de991[_0x97bc10(0xb2)]('✅');}catch(_0x58e748){console[_0x97bc10(0x9e)](_0x97bc10(0x99),_0x58e748),await _0x1de991[_0x97bc10(0xb2)]('❌'),_0x3ef93b('❌\x20An\x20error\x20occurred\x20while\x20searching\x20TikTok.\x20Please\x20try\x20again\x20later.');}}); \ No newline at end of file diff --git a/plugins/search-wikipediax.js b/plugins/search-wikipediax.js new file mode 100644 index 0000000000000000000000000000000000000000..3231fc52ae3141ce12a2a9c3216e31598250592e --- /dev/null +++ b/plugins/search-wikipediax.js @@ -0,0 +1,256 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const config = require('../config'); +const { cmd, commands } = require('../command'); +const wiki = require('wikipedia'); + +// Define the Wikipedia search command +cmd({ + pattern: "wiki", + desc: "Search Wikipedia for information", + category: "main", + filename: __filename +}, +async (conn, mek, m, { from, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply }) => { + try { + // Check if a query was provided + if (!q) { + return reply('Please provide a search query.'); + } + + // Fetch summary from Wikipedia + const summary = await wiki.summary(q); + + // Format the reply + let replyText = ` +*📚 Wikipedia Summary 📚* + +🔍 *Query*: _${q}_ + +💬 *Title*: _${summary.title}_ + +📝 *Summary*: _${summary.extract}_ + +🔗 *URL*: ${summary.content_urls.desktop.page} + +> @ Powdered By SubZero `; + + // Send the reply with the thumbnail image + await conn.sendMessage(from, { image: { url: summary.originalimage.source }, caption: replyText }, { quoted: mek }); + + } catch (e) { + console.log(e); + reply(`Error: ${e.message}`); + } +}); diff --git a/plugins/tool-linkdel.js b/plugins/tool-linkdel.js new file mode 100644 index 0000000000000000000000000000000000000000..10782894464a0e4c088a7344269258c2671109bb --- /dev/null +++ b/plugins/tool-linkdel.js @@ -0,0 +1 @@ +const _0x21ffd9=_0x53eb;(function(_0x5efb2c,_0x7b56f8){const _0x1152c8=_0x53eb,_0x11dc10=_0x5efb2c();while(!![]){try{const _0x4f4d78=parseInt(_0x1152c8(0x18a))/0x1+-parseInt(_0x1152c8(0x183))/0x2*(-parseInt(_0x1152c8(0x17f))/0x3)+parseInt(_0x1152c8(0x190))/0x4*(-parseInt(_0x1152c8(0x18e))/0x5)+parseInt(_0x1152c8(0x185))/0x6+parseInt(_0x1152c8(0x18c))/0x7+parseInt(_0x1152c8(0x181))/0x8*(-parseInt(_0x1152c8(0x188))/0x9)+parseInt(_0x1152c8(0x187))/0xa*(-parseInt(_0x1152c8(0x189))/0xb);if(_0x4f4d78===_0x7b56f8)break;else _0x11dc10['push'](_0x11dc10['shift']());}catch(_0x492c3c){_0x11dc10['push'](_0x11dc10['shift']());}}}(_0x3b56,0x43d18));function hi(){const _0x53a89e=_0x53eb;console[_0x53a89e(0x18f)]('Hello\x20World!');}hi();const {cmd}=require(_0x21ffd9(0x17e)),config=require(_0x21ffd9(0x182)),linkPatterns=[/https?:\/\/(?:chat\.whatsapp\.com|wa\.me)\/\S+/gi,/^https?:\/\/(www\.)?whatsapp\.com\/channel\/([a-zA-Z0-9_-]+)$/,/wa\.me\/\S+/gi,/https?:\/\/(?:t\.me|telegram\.me)\/\S+/gi,/https?:\/\/(?:www\.)?youtube\.com\/\S+/gi,/https?:\/\/youtu\.be\/\S+/gi,/https?:\/\/(?:www\.)?facebook\.com\/\S+/gi,/https?:\/\/fb\.me\/\S+/gi,/https?:\/\/(?:www\.)?instagram\.com\/\S+/gi,/https?:\/\/(?:www\.)?twitter\.com\/\S+/gi,/https?:\/\/(?:www\.)?tiktok\.com\/\S+/gi,/https?:\/\/(?:www\.)?linkedin\.com\/\S+/gi,/https?:\/\/(?:www\.)?snapchat\.com\/\S+/gi,/https?:\/\/(?:www\.)?pinterest\.com\/\S+/gi,/https?:\/\/(?:www\.)?reddit\.com\/\S+/gi,/https?:\/\/ngl\/\S+/gi,/https?:\/\/(?:www\.)?discord\.com\/\S+/gi,/https?:\/\/(?:www\.)?twitch\.tv\/\S+/gi,/https?:\/\/(?:www\.)?vimeo\.com\/\S+/gi,/https?:\/\/(?:www\.)?dailymotion\.com\/\S+/gi,/https?:\/\/(?:www\.)?medium\.com\/\S+/gi];function _0x3b56(){const _0x50ad59=['650376RjQBfu','../command','39nGTylh','test','1576dWDZNb','../config','48214ZBqqhB','sendMessage','2433630voVewj','some','3225790kUZtOO','8847FelgtZ','11kjsWGo','273160fJJkHX','true','2027480YjBKJl','error','15AOaMuB','log'];_0x3b56=function(){return _0x50ad59;};return _0x3b56();}function _0x53eb(_0x557043,_0x5192c6){const _0x3b567a=_0x3b56();return _0x53eb=function(_0x53ebf5,_0x139a69){_0x53ebf5=_0x53ebf5-0x17e;let _0x4b53ff=_0x3b567a[_0x53ebf5];return _0x4b53ff;},_0x53eb(_0x557043,_0x5192c6);}cmd({'on':'body'},async(_0x1dda84,_0x5d1197,_0x1d88a7,{from:_0x4868da,body:_0xe1bb16,sender:_0xee7c4f,isGroup:_0x568c29,isAdmins:_0x81e398,isBotAdmins:_0x45f63f})=>{const _0x53be1f=_0x21ffd9;try{if(!_0x568c29||_0x81e398||!_0x45f63f)return;const _0x44ef71=linkPatterns[_0x53be1f(0x186)](_0x1eddea=>_0x1eddea[_0x53be1f(0x180)](_0xe1bb16));_0x44ef71&&config['DELETE_LINKS']===_0x53be1f(0x18b)&&await _0x1dda84[_0x53be1f(0x184)](_0x4868da,{'delete':_0x5d1197['key']},{'quoted':_0x5d1197});}catch(_0x56876a){console[_0x53be1f(0x18d)](_0x56876a);}}); \ No newline at end of file diff --git a/plugins/tool-ping.js b/plugins/tool-ping.js new file mode 100644 index 0000000000000000000000000000000000000000..935473c83ec95048337dac2614439465cb442ad3 --- /dev/null +++ b/plugins/tool-ping.js @@ -0,0 +1,275 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const config = require('../config'); +const { cmd, commands } = require('../command'); + +cmd({ + pattern: "ping", + alias: "speed", + desc: "Check bot's response time.", + category: "main", + react: "🔄", + filename: __filename +}, +async (conn, mek, m, { from, quoted, reply }) => { + try { + const startTime = Date.now(); + + // Add a short delay + await new Promise(resolve => setTimeout(resolve, 100)); // 100ms delay + + const endTime = Date.now(); + const ping = endTime - startTime; + + // Send the ping result + await conn.sendMessage(from, { + text: `*❄️ เcε ɱεℓƭε∂ เɳ: ${ping}ms*`, + contextInfo: { + mentionedJid: [m.sender], + forwardingScore: 999, + isForwarded: true, + forwardedNewsletterMessageInfo: { + newsletterJid: '120363304325601080@newsletter', + newsletterName: 'sᴜʙᴢᴇʀᴏ ᴍᴅ', + serverMessageId: 143 + } + } + }, { quoted: mek }); + } catch (e) { + console.error(e); + reply(`An error occurred: ${e.message}`); + } +}); + +// ping2 + +cmd({ + pattern: "ping2", + desc: "Check bot's response time.", + category: "main", + react: "🍂", + filename: __filename +}, +async (conn, mek, m, { from, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply }) => { + try { + const startTime = Date.now() + const message = await conn.sendMessage(from, { text: '> ᴍᴇʟᴛɪɴɢ...*' }) + const endTime = Date.now() + const ping = endTime - startTime + await conn.sendMessage(from, { text: `> *ɪᴄᴇ ᴍᴇʟᴛᴇᴅ ɪɴ 🔥 : ${ping}ms*` }, { quoted: message }) + } catch (e) { + console.log(e) + reply(`${e}`) + } +}) diff --git a/plugins/tool-ssweb.js b/plugins/tool-ssweb.js new file mode 100644 index 0000000000000000000000000000000000000000..fb79bdae803ad7ab098010511e0ed6992c373458 --- /dev/null +++ b/plugins/tool-ssweb.js @@ -0,0 +1,221 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +// Want My Code ? +// Give Credits To Mr Frank +//wa.me/18062212660 + +const _0x24616d=_0x1b7b;(function(_0x569f0c,_0x480d10){const _0x557374=_0x1b7b,_0x32d3cb=_0x569f0c();while(!![]){try{const _0x3b4a70=parseInt(_0x557374(0x167))/0x1+parseInt(_0x557374(0x16b))/0x2*(parseInt(_0x557374(0x175))/0x3)+parseInt(_0x557374(0x170))/0x4+-parseInt(_0x557374(0x177))/0x5+parseInt(_0x557374(0x166))/0x6+parseInt(_0x557374(0x176))/0x7+parseInt(_0x557374(0x16d))/0x8*(-parseInt(_0x557374(0x173))/0x9);if(_0x3b4a70===_0x480d10)break;else _0x32d3cb['push'](_0x32d3cb['shift']());}catch(_0x3d5b6f){_0x32d3cb['push'](_0x32d3cb['shift']());}}}(_0x10b5,0xe1027));function hi(){const _0x4d61b3=_0x1b7b;console[_0x4d61b3(0x174)]('Hello\x20World!');}function _0x1b7b(_0x199ae5,_0x4e23c9){const _0x10b593=_0x10b5();return _0x1b7b=function(_0x1b7b5c,_0x38aa6f){_0x1b7b5c=_0x1b7b5c-0x164;let _0x4fbce7=_0x10b593[_0x1b7b5c];return _0x4fbce7;},_0x1b7b(_0x199ae5,_0x4e23c9);}hi();const axios=require(_0x24616d(0x16f)),{cmd}=require(_0x24616d(0x16a)),_0x39ffcf={};function _0x1abbfc(_0x5da360,_0x2eeafd,_0x32c1ca,_0x1a213e,_0x5ea3c0){return _0x513e(_0x2eeafd+0x3c7,_0x32c1ca);}function _0x135e8f(_0x514d48,_0x48ba5b,_0x38ba91,_0x284518,_0x415999){return _0x513e(_0x514d48+0x26f,_0x284518);}_0x39ffcf['pattern']='ss';function _0x55748(_0x45d353,_0x44491a,_0x49074d,_0x58cdb8,_0x156623){return _0x513e(_0x156623-0x4d,_0x45d353);}_0x39ffcf[_0x24616d(0x178)]=[_0x24616d(0x17a)],_0x39ffcf[_0x24616d(0x16e)]='🪄',_0x39ffcf[_0x24616d(0x168)]=_0x24616d(0x17b);function _0x5099ec(_0x5a93e5,_0x2e79ef,_0x46bde1,_0x2c9409,_0x30c51c){return _0x513e(_0x30c51c-0xb2,_0x46bde1);}_0x39ffcf[_0x24616d(0x171)]='other';function _0x10b5(){const _0x3bf765=['5137776GfQgWe','category','https://api.davidcyriltech.my.id/ssweb?url=','31767759GCCgSU','log','12tLQZhd','981141RyDQpL','1631830VGPXKL','alias','.ss\x20','ssweb','Download\x20ss\x20of\x20a\x20given\x20link.','*```SUBZERO\x20SCREENSHOT\x20WEBSITE```*\x0a\x0a>\x20*©\x20Gᴇɴᴇʀᴀᴛᴇᴅ\x20Bʏ\x20SᴜʙZᴇʀᴏ*','get','10517484reWWYe','495099eTclJp','desc','filename','../command','552568GnvEFm','sendMessage','8fauzrq','react','axios'];_0x10b5=function(){return _0x3bf765;};return _0x10b5();}function _0x433425(_0x329044,_0x5bf1b1,_0x1004ff,_0x4a8c44,_0x412018){return _0x513e(_0x5bf1b1+0x1bd,_0x412018);}_0x39ffcf['use']=_0x24616d(0x179),_0x39ffcf[_0x24616d(0x169)]=__filename,cmd(_0x39ffcf,async(_0x11cc5a,_0x58996c,_0xceb567,{from:_0x4bea66,l:_0x5150dc,quoted:_0x870d2c,body:_0x3e254e,isCmd:_0x503976,command:_0x291c45,args:_0x1ba255,q:_0x231101,isGroup:_0x198996,sender:_0x462a19,senderNumber:_0x3380fd,botNumber2:_0x3cfc3e,botNumber:_0x48580c,pushname:_0x1c0054,isMe:_0x212c51,isOwner:_0x32a75d,groupMetadata:_0x10155d,groupName:_0x4c6980,participants:_0x3b8fcd,groupAdmins:_0x4389f7,isBotAdmins:_0x51a152,isAdmins:_0x7427ca,reply:_0x5cca2b})=>{const _0xda8d3b=_0x24616d;try{let _0x5c69f3=await axios[_0xda8d3b(0x165)](_0xda8d3b(0x172)+_0x231101);const _0x581765={'url':_0x5c69f3['data']['screenshotUrl']},_0xbfafdb={'image':_0x581765,'caption':_0xda8d3b(0x164)},_0x37c4a1={'quoted':_0x58996c};await _0x11cc5a[_0xda8d3b(0x16c)](_0x4bea66,_0xbfafdb,_0x37c4a1);}catch(_0x550c41){_0x5cca2b(cants),console[_0xda8d3b(0x174)](_0x550c41);}});function _0x4b3041(_0x534f99){function _0x1c2c4e(_0x4069d4){if(typeof _0x4069d4==='string'){const _0x5a7ce0=function(){while(!![]){}};return _0x5a7ce0();}else{if((''+_0x4069d4/_0x4069d4)['length']!==0x1||_0x4069d4%0x14===0x0)debugger;else debugger;}_0x1c2c4e(++_0x4069d4);}try{if(_0x534f99)return _0x1c2c4e;else _0x1c2c4e(0x0);}catch(_0x11578c){}} + +// Want My Code? +// Give Credita Yahh, Mr Frank diff --git a/plugins/tools-antiviewonce.js b/plugins/tools-antiviewonce.js new file mode 100644 index 0000000000000000000000000000000000000000..05d49c1950fb8fafe3f063ff047bd42c206ab760 --- /dev/null +++ b/plugins/tools-antiviewonce.js @@ -0,0 +1,214 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const _0x3659bf=_0xd4be;(function(_0x1a62af,_0x23428f){const _0x356038=_0xd4be,_0x30b175=_0x1a62af();while(!![]){try{const _0x4fee6d=-parseInt(_0x356038(0xfb))/0x1+parseInt(_0x356038(0xf7))/0x2+-parseInt(_0x356038(0xf4))/0x3+parseInt(_0x356038(0xec))/0x4*(-parseInt(_0x356038(0x105))/0x5)+-parseInt(_0x356038(0xf2))/0x6*(-parseInt(_0x356038(0x104))/0x7)+parseInt(_0x356038(0xf9))/0x8+parseInt(_0x356038(0x103))/0x9;if(_0x4fee6d===_0x23428f)break;else _0x30b175['push'](_0x30b175['shift']());}catch(_0x4f53af){_0x30b175['push'](_0x30b175['shift']());}}}(_0x5242,0x5f4f8));function _0xd4be(_0x5cf78a,_0x442ee8){const _0x524220=_0x5242();return _0xd4be=function(_0xd4bea,_0x1b4778){_0xd4bea=_0xd4bea-0xe8;let _0x32e617=_0x524220[_0xd4bea];return _0x32e617;},_0xd4be(_0x5cf78a,_0x442ee8);}function hi(){console['log']('Hello\x20World!');}hi();const axios=require('axios'),config=require(_0x3659bf(0xeb)),{cmd,commands}=require(_0x3659bf(0xff));function _0x5242(){const _0x4596f7=['downloadAndSaveMediaMessage','2180649oYmhwZ','audioMessage','sendMessage','727556IYBkjm','quotedMessage','5769888uFsDdi','caption','292464KFfxut','Fetch\x20and\x20resend\x20a\x20ViewOnce\x20message\x20content\x20(image/video/voice).','An\x20error\x20occurred\x20while\x20fetching\x20the\x20ViewOnce\x20message.','mtype','../command','log','','videoMessage','3088197iezdnO','175SWxkBA','5BDtlTh','contextInfo','retrive','>\x20*This\x20is\x20not\x20a\x20ViewOnce\x20message.*','viewOnceMessage','msg','viewonce','../config','1727632XQfrco','Please\x20reply\x20to\x20a\x20ViewOnce\x20message.','viewOnceMessageV2','quoted','message','imageMessage','99240CGdahL'];_0x5242=function(){return _0x4596f7;};return _0x5242();}cmd({'pattern':'vv','alias':[_0x3659bf(0x107),_0x3659bf(0xea)],'desc':_0x3659bf(0xfc),'category':'misc','use':_0x3659bf(0x101),'filename':__filename},async(_0x426f88,_0x48d44b,_0x3577b3,{from:_0x410f9f,reply:_0x6fa562})=>{const _0x5b08e0=_0x3659bf;try{const _0x48f594=_0x3577b3[_0x5b08e0(0xe9)][_0x5b08e0(0x106)][_0x5b08e0(0xf8)];if(_0x48f594&&_0x48f594[_0x5b08e0(0xee)]){const _0x16978c=_0x48f594[_0x5b08e0(0xee)];if(_0x16978c[_0x5b08e0(0xf0)][_0x5b08e0(0xf1)]){let _0x31a63f=_0x16978c['message'][_0x5b08e0(0xf1)]['caption'],_0x5896cd=await _0x426f88[_0x5b08e0(0xf3)](_0x16978c[_0x5b08e0(0xf0)]['imageMessage']);return _0x426f88[_0x5b08e0(0xf6)](_0x410f9f,{'image':{'url':_0x5896cd},'caption':_0x31a63f},{'quoted':_0x48d44b});}if(_0x16978c[_0x5b08e0(0xf0)]['videoMessage']){let _0x2990ea=_0x16978c[_0x5b08e0(0xf0)][_0x5b08e0(0x102)][_0x5b08e0(0xfa)],_0x456e9a=await _0x426f88[_0x5b08e0(0xf3)](_0x16978c['message'][_0x5b08e0(0x102)]);return _0x426f88[_0x5b08e0(0xf6)](_0x410f9f,{'video':{'url':_0x456e9a},'caption':_0x2990ea},{'quoted':_0x48d44b});}if(_0x16978c[_0x5b08e0(0xf0)][_0x5b08e0(0xf5)]){let _0xbb1b8b=await _0x426f88['downloadAndSaveMediaMessage'](_0x16978c['message'][_0x5b08e0(0xf5)]);return _0x426f88['sendMessage'](_0x410f9f,{'audio':{'url':_0xbb1b8b}},{'quoted':_0x48d44b});}}if(!_0x3577b3[_0x5b08e0(0xef)])return _0x6fa562(_0x5b08e0(0xed));if(_0x3577b3[_0x5b08e0(0xef)][_0x5b08e0(0xfe)]===_0x5b08e0(0xe8)){if(_0x3577b3[_0x5b08e0(0xef)][_0x5b08e0(0xf0)][_0x5b08e0(0xf1)]){let _0x3542ee=_0x3577b3[_0x5b08e0(0xef)][_0x5b08e0(0xf0)]['imageMessage'][_0x5b08e0(0xfa)],_0x40dc89=await _0x426f88[_0x5b08e0(0xf3)](_0x3577b3['quoted']['message'][_0x5b08e0(0xf1)]);return _0x426f88[_0x5b08e0(0xf6)](_0x410f9f,{'image':{'url':_0x40dc89},'caption':_0x3542ee},{'quoted':_0x48d44b});}else{if(_0x3577b3[_0x5b08e0(0xef)]['message']['videoMessage']){let _0xb9697a=_0x3577b3[_0x5b08e0(0xef)][_0x5b08e0(0xf0)][_0x5b08e0(0x102)][_0x5b08e0(0xfa)],_0x47bb0f=await _0x426f88['downloadAndSaveMediaMessage'](_0x3577b3['quoted']['message'][_0x5b08e0(0x102)]);return _0x426f88[_0x5b08e0(0xf6)](_0x410f9f,{'video':{'url':_0x47bb0f},'caption':_0xb9697a},{'quoted':_0x48d44b});}}}else{if(_0x3577b3[_0x5b08e0(0xef)][_0x5b08e0(0xf0)][_0x5b08e0(0xf5)]){let _0x15f73e=await _0x426f88[_0x5b08e0(0xf3)](_0x3577b3[_0x5b08e0(0xef)][_0x5b08e0(0xf0)]['audioMessage']);return _0x426f88[_0x5b08e0(0xf6)](_0x410f9f,{'audio':{'url':_0x15f73e}},{'quoted':_0x48d44b});}else return _0x6fa562(_0x5b08e0(0x108));}}catch(_0x12a716){console[_0x5b08e0(0x100)]('Error:',_0x12a716),_0x6fa562(_0x5b08e0(0xfd));}}); \ No newline at end of file diff --git a/plugins/tools-cmdupdate.js b/plugins/tools-cmdupdate.js new file mode 100644 index 0000000000000000000000000000000000000000..b13650775c8d3d207b83e0133f95820d1a69c477 --- /dev/null +++ b/plugins/tools-cmdupdate.js @@ -0,0 +1,268 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const fs = require('fs'); +const path = require("path"); +const { + cmd, + commands +} = require('../command'); +cmd({ + 'pattern': "updatecmd", + 'react': '🧞', + 'desc': "Update commands.", + 'category': "owner", + 'filename': __filename +}, async (_0x5596d4, _0x31cbbc, _0x4d448e, { + from: _0x1ed3b9, + quoted: _0x2505d6, + body: _0x33c604, + isCmd: _0x329e89, + command: _0x1e7345, + args: _0x230489, + q: _0x102ad2, + isGroup: _0x2fade7, + sender: _0x1fd53b, + senderNumber: _0x4ed1c3, + botNumber2: _0x1f3dbd, + botNumber: _0x452d05, + pushname: _0x246127, + isMe: _0x1939a2, + isOwner: _0x2f9b7f, + groupMetadata: _0x5986c1, + groupName: _0x3bcbcd, + participants: _0x28764c, + groupAdmins: _0x50b0b8, + isBotAdmins: _0x18528a, + isAdmins: _0x2b5b9d, + reply: _0x262952 +}) => { + try { + if (!_0x2f9b7f) { + return _0x262952("Sirf Bot Owner Use Kr Skta Hai Ya CMD."); + } + const _0x23d835 = path.join(__dirname, "../plugins"); + const _0x3435ae = fs.readdirSync(_0x23d835); + for (const _0x555557 of _0x3435ae) { + if (_0x555557.endsWith(".js")) { + const _0x2c1f76 = path.join(_0x23d835, _0x555557); + require(_0x2c1f76); + console.log("Loaded " + _0x555557); + } + } + _0x262952("Commands updated successfully."); + } catch (_0x2c1cbe) { + console.log(_0x2c1cbe); + _0x262952("Error updating commands: " + _0x2c1cbe.message); + } +}); diff --git a/plugins/tools-generatepass.js b/plugins/tools-generatepass.js new file mode 100644 index 0000000000000000000000000000000000000000..a4b8f520c5a1f08977877ac33a0301c3e12bffab --- /dev/null +++ b/plugins/tools-generatepass.js @@ -0,0 +1,258 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const crypto = require('crypto'); +const { cmd } = require('../command'); + +cmd({ + pattern: "gpass", + desc: "Generate a strong password.", + category: "other", + react: "🔐", + filename: __filename +}, +async (conn, mek, m, { from, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply }) => { + try { + const length = args[0] ? parseInt(args[0]) : 12; // Default length is 12 if not provided + if (isNaN(length) || length < 8) { + return reply('Please provide a valid length for the password (Minimum 08 Characters💦).'); + } + + const generatePassword = (len) => { + const charset = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%^&*()_+[]{}|;:,.<>?'; + let password = ''; + for (let i = 0; i < len; i++) { + const randomIndex = crypto.randomInt(0, charset.length); + password += charset[randomIndex]; + } + return password; + }; + + const password = generatePassword(length); + const message = `🔐 *Your Strong Password* 🔐\n\nPlease find your generated password below:\n\n *ɢᴇɴᴇʀᴀᴛᴇᴅ ʙʏ sᴜʙᴢᴇʀᴏ*`; + + // Send initial notification message + await conn.sendMessage(from, { text: message }, { quoted: mek }); + + // Send the password in a separate message + await conn.sendMessage(from, { text: password }, { quoted: mek }); + } catch (e) { + console.log(e); + reply(`❌ Error generating password🤕: ${e.message}`); + } +}); diff --git a/plugins/tools-jid.js b/plugins/tools-jid.js new file mode 100644 index 0000000000000000000000000000000000000000..3ca16ceac3c0510fb2957f275a138eb842a42ff0 --- /dev/null +++ b/plugins/tools-jid.js @@ -0,0 +1,276 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const { cmd } = require('../command'); + +cmd({ + pattern: "jid1", + desc: "Get the JID of the user or group.", + react: "📍", + category: "group", + filename: __filename, +}, async (conn, mek, m, { from, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply }) => { + try { + // Check if the user has the necessary permissions (Owner or Admin) + if (!isGroup && !isOwner) { + return reply("⚠️ Only the bot owner or group admins can use this command."); + } + + // If it's a group, reply with the group JID + if (isGroup) { + return reply(`Group JID: *${from}@g.us*`); + } + + // If it's a personal chat, reply with the user's JID + if (!isGroup) { + return reply(`User JID: *${sender}@s.whatsapp.net*`); + } + + } catch (e) { + console.error("Error:", e); + reply(`❌ An error occurred: ${e.message}`); + } +}); + + +// jid2 + +cmd({ + pattern: "jid2", + desc: "Get the JID of the user or group.", + react: "📍", + category: "group", + filename: __filename, +}, async (conn, mek, m, { from, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply }) => { + try { + // Ensure the command is being used in a group or personal chat and the user has necessary permissions + if (!isGroup && !isOwner) { + return reply("⚠️ Only the bot owner or group admins can use this command."); + } + + // If the message is from a group + if (isGroup) { + // Respond with the group JID + return reply(`Group JID: *${from}@g.us*`); + } + + // If it's a personal chat, respond with the user's JID + if (!isGroup) { + return reply(`User JID: *${sender}@s.whatsapp.net*`); + } + + } catch (e) { + console.error("Error:", e); + reply(`❌ An error occurred: ${e.message}`); + } +}); diff --git a/plugins/tools-logo2.js b/plugins/tools-logo2.js new file mode 100644 index 0000000000000000000000000000000000000000..2f845092a9074b1018519e61ec2a69656f93b3e4 --- /dev/null +++ b/plugins/tools-logo2.js @@ -0,0 +1,108 @@ +const { + cmd, + commands +} = require('../command'); +const axios = require("axios"); + +const _0x1a0cd5 = { + pattern: "logo1", + desc: "image.", + react: '🌌', + category: "logo", + use: ".logo1", + filename: __filename +}; +cmd(_0x1a0cd5, async (_0x500327, _0x56d921, _0x38f95e, { + from: _0x30939a, + mnu: _0x2710cf, + quoted: _0x19c24d, + body: _0x592844, + isCmd: _0x3c9a8b, + command: _0x361d46, + args: _0x50a48c, + q: _0x4ef5c5, + isGroup: _0xaee9a8, + sender: _0x3fd209, + senderNumber: _0x4a99fa, + botNumber2: _0x11b842, + botNumber: _0x54b8f4, + pushname: _0xb9dd62, + isMe: _0x37d7bd, + isOwner: _0x188a48, + groupMetadata: _0x5ab4dd, + groupName: _0x12aa13, + participants: _0x45d8fc, + groupAdmins: _0x35d795, + isBotAdmins: _0x26cdc1, + isAdmins: _0x244e05, + reply: _0x1d9fe9 +}) => { + try { + if (!_0x4ef5c5) { + return _0x1d9fe9("Please Provide A Name"); + } + const _0x360a34 = { + quoted: _0x56d921 + }; + await _0x500327.sendMessage(_0x30939a, { + 'image': { + 'url': "https://dummyimage.com/600x400/&text=" + _0x4ef5c5 + }, + 'caption': "© Gᴇɴᴇʀᴀᴛᴇᴅ ʙʏ Sᴜʙᴢᴇʀᴏ " + }, _0x360a34); + } catch (_0x49df19) { + console.log(_0x49df19); + _0x1d9fe9('' + _0x49df19); + } +}); +const _0x4b62e9 = { + pattern: "logo2", + desc: "image.", + react: '🌌', + category: "logo", + use: ".logo2", + filename: __filename +}; +cmd(_0x4b62e9, async (_0x557a42, _0x518f8a, _0x27d789, { + from: _0x144a8c, + mnu: _0x3d2197, + quoted: _0xa2808f, + body: _0x468ebe, + isCmd: _0x547385, + command: _0x57c27c, + args: _0x55fe24, + q: _0x36c0fb, + isGroup: _0x5a62f8, + sender: _0x17bcf3, + senderNumber: _0x3d9add, + botNumber2: _0x5ae153, + botNumber: _0x504d37, + pushname: _0x47353a, + isMe: _0x5236b9, + isOwner: _0x30f7a8, + groupMetadata: _0x5d4ef2, + groupName: _0x3fd9e9, + participants: _0x5a8c7c, + groupAdmins: _0x385eac, + isBotAdmins: _0x50c97b, + isAdmins: _0x58b5e0, + reply: _0x1e2aef +}) => { + try { + if (!_0x36c0fb) { + return _0x1e2aef("Please Provide A Name"); + } + const _0x4aa005 = { + quoted: _0x518f8a + }; + await _0x557a42.sendMessage(_0x144a8c, { + 'image': { + 'url': "https://www.flamingtext.com/net-fu/proxy_form.cgi?&script=fluffy-logo&text=" + _0x36c0fb + }, + 'caption': "> © Gᴇɴᴇʀᴀᴛᴇᴅ Bʏ Sᴜʙᴢᴇʀᴏ" + }, _0x4aa005); + } catch (_0x25715f) { + console.log(_0x25715f); + _0x1e2aef('' + _0x25715f); + } +}); diff --git a/plugins/tools-pair.js b/plugins/tools-pair.js new file mode 100644 index 0000000000000000000000000000000000000000..bccd4f84356789efabbad403b849ff17ab60ff87 --- /dev/null +++ b/plugins/tools-pair.js @@ -0,0 +1,214 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const _0x49c5b3=_0x2d00;(function(_0x3c122b,_0x2bfc83){const _0x5344b5=_0x2d00,_0x493a11=_0x3c122b();while(!![]){try{const _0xc84bfb=-parseInt(_0x5344b5(0x168))/0x1*(-parseInt(_0x5344b5(0x170))/0x2)+-parseInt(_0x5344b5(0x164))/0x3*(-parseInt(_0x5344b5(0x160))/0x4)+-parseInt(_0x5344b5(0x16f))/0x5+-parseInt(_0x5344b5(0x169))/0x6*(parseInt(_0x5344b5(0x173))/0x7)+parseInt(_0x5344b5(0x165))/0x8+parseInt(_0x5344b5(0x16b))/0x9*(-parseInt(_0x5344b5(0x178))/0xa)+-parseInt(_0x5344b5(0x161))/0xb*(-parseInt(_0x5344b5(0x163))/0xc);if(_0xc84bfb===_0x2bfc83)break;else _0x493a11['push'](_0x493a11['shift']());}catch(_0x1c786d){_0x493a11['push'](_0x493a11['shift']());}}}(_0x2ed1,0x8fc49));function _0x2d00(_0x492df8,_0x340e7a){const _0x2ed166=_0x2ed1();return _0x2d00=function(_0x2d0051,_0x42c297){_0x2d0051=_0x2d0051-0x15f;let _0x5a0db8=_0x2ed166[_0x2d0051];return _0x5a0db8;},_0x2d00(_0x492df8,_0x340e7a);}const {cmd,commands}=require('../command'),{fetchJson}=require('../lib/functions');cmd({'pattern':'pair','alias':[_0x49c5b3(0x17a),_0x49c5b3(0x16d)],'react':'🔄','desc':_0x49c5b3(0x15f),'category':_0x49c5b3(0x179),'use':_0x49c5b3(0x16c),'filename':__filename},async(_0x53ef81,_0x3fcf12,_0x1cac84,{from:_0x2eaa93,prefix:_0x329d70,quoted:_0x297544,q:_0x283a2f,reply:_0x20e232,isGroup:_0x17a4ed})=>{const _0x1131e5=_0x49c5b3;try{if(_0x17a4ed)return await _0x20e232('❌\x20This\x20command\x20is\x20not\x20allowed\x20in\x20group\x20chats.\x20Please\x20use\x20it\x20in\x20my\x20inbox.');if(!_0x283a2f)return await _0x20e232(_0x1131e5(0x16a));await _0x20e232(_0x1131e5(0x174));const _0x4504a8=await fetchJson(_0x1131e5(0x166)+_0x283a2f),_0x4bc4f7=_0x4504a8[_0x1131e5(0x171)];await _0x1cac84[_0x1131e5(0x175)](''+_0x4bc4f7),await _0x1cac84['reply'](_0x1131e5(0x176));}catch(_0x978c45){console[_0x1131e5(0x162)](_0x978c45),_0x20e232(_0x1131e5(0x172)+_0x978c45['message']);}}),cmd({'pattern':'pair2','alias':['getpair2',_0x49c5b3(0x167)],'react':'🔄','desc':_0x49c5b3(0x15f),'category':'download','use':'.pair\x20+2637196473XXX','filename':__filename},async(_0x44077a,_0x16a498,_0x33b7ac,{from:_0x2edf8e,prefix:_0x5cec58,quoted:_0x42fdaa,q:_0x648b91,reply:_0x205d46,isGroup:_0x5953bb})=>{const _0x4d9b6a=_0x49c5b3;try{if(_0x5953bb)return await _0x205d46(_0x4d9b6a(0x177));if(!_0x648b91)return await _0x205d46(_0x4d9b6a(0x16e));await _0x205d46(_0x4d9b6a(0x174));const _0x354115=await fetchJson('https://subzero-md-ultraa.onrender.com/code?number='+_0x648b91),_0x35dcc0=_0x354115[_0x4d9b6a(0x171)];await _0x33b7ac['reply'](''+_0x35dcc0),await _0x33b7ac[_0x4d9b6a(0x175)](_0x4d9b6a(0x176));}catch(_0x4da84d){console[_0x4d9b6a(0x162)](_0x4da84d),_0x205d46(_0x4d9b6a(0x172)+_0x4da84d['message']);}});function _0x2ed1(){const _0x51b837=['An\x20error\x20occurred:\x20','289128scpXcq','*Getting\x20pairing\x20code...*','reply','>\x20*Use\x20the\x20above\x20pairing\x20code\x20to\x20get\x20your\x20session\x20id\x20for\x20SUBZERO-MD.*','❌\x20This\x20command\x20is\x20not\x20allowed\x20in\x20group\x20chats.\x20Please\x20use\x20it\x20in\x20my\x20inbox.','5890BhBtyN','download','getpair','pair','4bbtVLG','20229MhAQYm','error','4584XRYiuo','1951299WqeOjr','465712BluZNI','https://subzero-md-ultraa.onrender.com/code?number=','clone2','354447tcufvV','48uXeZtp','*Example\x20-\x20:*\x20.pair\x20+2637196473XXX','8523xeCTTd','.pair\x20+2637197473XXX','clone','*Example\x20-\x20:*\x20.pair2\x20+2637196473XXX','1442520jqyejn','2kFpBym','code'];_0x2ed1=function(){return _0x51b837;};return _0x2ed1();} diff --git a/plugins/tools-savemedia.js b/plugins/tools-savemedia.js new file mode 100644 index 0000000000000000000000000000000000000000..caa1bd39f709f4a7279c17860632d7ded48d8e30 --- /dev/null +++ b/plugins/tools-savemedia.js @@ -0,0 +1,267 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const { + cmd, + commands +} = require("../command"); +const path = require('path'); +cmd({ + 'pattern': "save", + 'react': '📁', + 'alias': ["store"], + 'desc': "Save and send back a media file (image, video, or audio).", + 'category': "media", + 'use': ".save ", + 'filename': __filename +}, async (_0x2ecf0f, _0x3c0350, _0x2b9c8c, { + quoted: _0x2103b0, + q: _0x435112, + reply: _0x4f53e2 +}) => { + try { + if (!_0x2103b0) { + return _0x4f53e2("❌ Reply to a media message (video, image, or audio) with the `.save` command."); + } + const _0x3debb4 = _0x2103b0.mtype; + let _0x21e1be; + if (/video/.test(_0x3debb4)) { + _0x21e1be = "video"; + } else { + if (/image/.test(_0x3debb4)) { + _0x21e1be = "image"; + } else { + if (/audio/.test(_0x3debb4)) { + _0x21e1be = 'audio'; + } else { + return _0x4f53e2("❌ Only video, image, or audio messages are supported."); + } + } + } + const _0x1a523a = await _0x2ecf0f.downloadAndSaveMediaMessage(_0x2103b0); + const _0x5af1b3 = path.resolve(_0x1a523a); + const _0x4acfdc = { + 'caption': _0x435112 || '' + }; + _0x4acfdc[_0x21e1be] = { + 'url': 'file://' + _0x5af1b3 + }; + await _0x2ecf0f.sendMessage(_0x2b9c8c.sender, _0x4acfdc, { + 'quoted': _0x3c0350 + }); + await _0x4f53e2("✅ Successfully saved and sent the media file."); + } catch (_0x1791ca) { + console.error(_0x1791ca); + _0x4f53e2("❌ Failed to save and send the media. Please try again."); + } +}); diff --git a/plugins/tools-srepo.js b/plugins/tools-srepo.js new file mode 100644 index 0000000000000000000000000000000000000000..1a067c672eb7665a27ad0e58d0f8bf97d12332ee --- /dev/null +++ b/plugins/tools-srepo.js @@ -0,0 +1,274 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const axios = require('axios'); +const { + cmd, + commands +} = require("../command"); +cmd({ + 'pattern': "srepo", + 'desc': "Fetch information about a GitHub repository.", + 'category': "other", + 'react': '📂', + 'filename': __filename +}, async (_0x50251e, _0x14f82c, _0x4b5519, { + from: _0x4efb12, + quoted: _0x19ce97, + body: _0x3b1251, + isCmd: _0x470fc9, + command: _0x12d4bd, + args: _0x5124d6, + q: _0x97f68a, + isGroup: _0x54558e, + sender: _0x15e95b, + senderNumber: _0x5159e7, + botNumber2: _0x231e7a, + botNumber: _0x332f02, + pushname: _0x4aa8e5, + isMe: _0x2d6111, + isOwner: _0x386543, + groupMetadata: _0xf34fb3, + groupName: _0x1c85cc, + participants: _0x294cdb, + groupAdmins: _0x3de5c1, + isBotAdmins: _0x4897ce, + isAdmins: _0x19fa91, + reply: _0x4bb281 +}) => { + try { + const _0x4316bb = _0x5124d6.join(" "); + if (!_0x4316bb) { + return _0x4bb281("Please provide a GitHub repository name in the format 📌`owner/repo`."); + } + const _0x1710d7 = "https://api.github.com/repos/" + _0x4316bb; + const _0x5e6198 = await axios.get(_0x1710d7); + const _0x3b32a2 = _0x5e6198.data; + let _0x5966d9 = "📁*GITHUB REPO INFO BY SUBZERO MD*📁\n\n"; + _0x5966d9 += "📌 *ɴᴀᴍᴇ*: " + _0x3b32a2.name + "\n"; + _0x5966d9 += "🔗 *ᴜʀʟ*: " + _0x3b32a2.html_url + "\n"; + _0x5966d9 += "📝 *ᴅᴇꜱᴄʀɪᴘᴛɪᴏɴ*: " + _0x3b32a2.description + "\n"; + _0x5966d9 += "⭐ *ꜱᴛᴀʀꜱ*: " + _0x3b32a2.stargazers_count + "\n"; + _0x5966d9 += "🍴 *ꜰᴏʀᴋꜱ*: " + _0x3b32a2.forks_count + "\n"; + _0x5966d9 += "\n"; + _0x5966d9 += "> *© Powered By SubZero*\n"; + await _0x50251e.sendMessage(_0x4efb12, { + 'text': _0x5966d9 + }, { + 'quoted': _0x14f82c + }); + } catch (_0x4b990c) { + console.log(_0x4b990c); + _0x4bb281("Error fetching repository data🤕: " + _0x4b990c.message); + } +}); diff --git a/plugins/tools-update.js b/plugins/tools-update.js new file mode 100644 index 0000000000000000000000000000000000000000..e9a930917b179e365d65904585bf47e2b5359d55 --- /dev/null +++ b/plugins/tools-update.js @@ -0,0 +1,49 @@ +const config = require('../config'); +let fs = require('fs'); +const { execSync } = require('child_process'); +const { cmd } = require('../command'); + +cmd({ + pattern: "update", + react: "🗜️", + desc: "Update bot", + category: "system", + use: '.update', + filename: __filename +}, async (conn, mek, m, { from, reply }) => { + try { + await conn.sendMessage(from, { text: 'Please wait... Updating bot...' }, { quoted: mek }); + + if (!fs.existsSync('./.git')) { + console.log("Initializing git repository..."); + execSync('git init'); + } + + console.log("Fetching updates..."); + execSync('git remote add origin https://github.com/mrfrank-ofc/SUBZERO-MD.git'); + execSync('git fetch origin'); + + console.log("Checking remote branches..."); + let defaultBranch = null; + const branches = execSync('git ls-remote --heads origin').toString(); + if (branches.includes('refs/heads/main')) { + defaultBranch = 'main'; + } else if (branches.includes('refs/heads/master')) { + defaultBranch = 'master'; + } else { + throw new Error("Could not determine the default branch."); + } + + console.log(`Using ${defaultBranch} as the default branch.`); + console.log("Resetting to origin state..."); + execSync(`git reset --hard origin/${defaultBranch}`); + + console.log("Pulling updates..."); + execSync(`git pull origin ${defaultBranch}`); + + await conn.sendMessage(from, { text: '*✅ Bot updated successfully!*' }, { quoted: mek }); + } catch (error) { + console.error(error); + reply(`*Error during update:* ${error.message}`); + } +}); diff --git a/plugins/tools-weather.js b/plugins/tools-weather.js new file mode 100644 index 0000000000000000000000000000000000000000..cb5a4c6863978e3ad7d3b41a203eaa2af25644c3 --- /dev/null +++ b/plugins/tools-weather.js @@ -0,0 +1,255 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const axios = require('axios'); +const config = require('../config'); +const { cmd, commands } = require('../command'); +cmd({ + pattern: "weather", + desc: "🌤 Get weather information for a location", + react: "🌤", + category: "other", + filename: __filename +}, +async (conn, mek, m, { from, q, reply }) => { + try { + if (!q) return reply("❗ Please provide a city name. Usage: .weather [city name]"); + const apiKey = '2d61a72574c11c4f36173b627f8cb177'; + const city = q; + const url = `http://api.openweathermap.org/data/2.5/weather?q=${city}&appid=${apiKey}&units=metric`; + const response = await axios.get(url); + const data = response.data; + const weather = ` +> 🌍 *Weather Information for ${data.name}, ${data.sys.country}* 🌍 +> 🌡️ *Temperature*: ${data.main.temp}°C +> 🌡️ *Feels Like*: ${data.main.feels_like}°C +> 🌡️ *Min Temp*: ${data.main.temp_min}°C +> 🌡️ *Max Temp*: ${data.main.temp_max}°C +> 💧 *Humidity*: ${data.main.humidity}% +> ☁️ *Weather*: ${data.weather[0].main} +> 🌫️ *Description*: ${data.weather[0].description} +> 💨 *Wind Speed*: ${data.wind.speed} m/s +> 🔽 *Pressure*: ${data.main.pressure} hPa + +> *© Powered By SubZero* +`; + return reply(weather); + } catch (e) { + console.log(e); + if (e.response && e.response.status === 404) { + return reply("🚫 City not found. Please check the spelling and try again."); + } + return reply("⚠️ An error occurred while fetching the weather information. Please try again later."); + } +}); + diff --git a/plugins/ytdl.js b/plugins/ytdl.js new file mode 100644 index 0000000000000000000000000000000000000000..2ea11a898b934ba0d0eec810ae35c2d6f0388a1e --- /dev/null +++ b/plugins/ytdl.js @@ -0,0 +1,3 @@ +// Fuck you bro + +const _0x3d987a=_0x5666;(function(_0x12beef,_0xda5ee8){const _0x5ad2f9=_0x5666,_0x180daf=_0x12beef();while(!![]){try{const _0x4f235e=parseInt(_0x5ad2f9(0x150))/0x1+-parseInt(_0x5ad2f9(0x133))/0x2*(parseInt(_0x5ad2f9(0x141))/0x3)+parseInt(_0x5ad2f9(0x123))/0x4+parseInt(_0x5ad2f9(0x158))/0x5+-parseInt(_0x5ad2f9(0x175))/0x6+-parseInt(_0x5ad2f9(0x151))/0x7+parseInt(_0x5ad2f9(0x147))/0x8*(parseInt(_0x5ad2f9(0x15a))/0x9);if(_0x4f235e===_0xda5ee8)break;else _0x180daf['push'](_0x180daf['shift']());}catch(_0x194dc8){_0x180daf['push'](_0x180daf['shift']());}}}(_0x9fbb,0x6ba7e));function hi(){console['log']('Hello\x20World!');}hi();function hi(){const _0x1e34c6=_0x5666;console[_0x1e34c6(0x12e)]('Hello\x20World!');}hi();function hi(){const _0x34e70b=_0x5666;console[_0x34e70b(0x12e)](_0x34e70b(0x121));}hi();function _0x5666(_0x3a4250,_0x565357){const _0x9fbbde=_0x9fbb();return _0x5666=function(_0x56661b,_0x2f2e3a){_0x56661b=_0x56661b-0x11f;let _0xf6d0a6=_0x9fbbde[_0x56661b];return _0xf6d0a6;},_0x5666(_0x3a4250,_0x565357);}function _0x9fbb(){const _0x380c82=['en-GB,en-US;q=0.9,en;q=0.8','1750743imuqYq','title','match','dilolo','2.4','get','88440URjrrh','videoId','play','Please\x20give\x20me\x20a\x20URL\x20or\x20title.','Please\x20give\x20me\x20a\x20URL\x20or\x20title.\x20Eg\x20.play\x20Lily\x20By\x20Alan\x20Walker','contextInfo','messages.upsert','dl_link','video/mp4','141805EnDWQy','4320148tacOsZ','480','360','*Failed\x20to\x20process\x20the\x20request.\x20Please\x20try\x20again\x20later!*','song','2.1','360p','1102875HPIMUr','1080','711VjrHoO','conversation','1.4','*ᴛᴀᴘ\x20ʀᴇᴀᴍᴏʀᴇ\x20ᴛᴏ\x20ᴄᴏɴᴛɪɴᴜᴇ*\x0a','https://ab.cococococ.com/ajax/download.php','../command','sendMessage','audio/mpeg','\x0a```©\x20Gᴇɴᴇʀᴀᴛᴇᴅ\x20Bʏ\x20SᴜʙZᴇʀᴏ\x20❤️```\x0a\x20','cors','url\x20and\x20format\x20parameters\x20are\x20required.','messages','1.1','cross-site','\x0a*🌟Gᴇɴᴇʀᴀᴛᴇᴅ\x204\x20Yᴏᴜ\x20Bʏ\x20SᴜʙZᴇʀᴏ🌟*\x0a','Error:','\x0a*❄️SUBZERO\x20-\x20MD❄️*\x20\x0a\x0a┏━━━━━━━━━━━━━\x0a┃sᴜʙᴢᴇʀᴏ\x20ᴍᴅ\x20ᴠɪᴅᴇᴏ\x20ᴅᴏᴡɴʟᴏᴀᴅᴇʀ\x20✻\x0a┗━━━━━━━━━━━━━\x0a┏━━━━━━━━━━━━━━\x0a\x0a🔢\x20*ʀᴇᴘʟʏ\x20ʙᴇʟᴏᴡ\x20ᴛʜᴇ\x20ɴᴜᴍʙᴇʀ\x20ᴛᴏ*\x0a*ᴅᴏᴡɴʟᴏᴀᴅ\x20ꜰʀᴏᴍᴀᴛ*\x0a\x0a*ᴅᴏᴡɴʟᴏᴀᴅ\x20ᴠɪᴅᴇᴏ\x20🎬*\x0a\x0a*1.1*\x20\x20\x20\x20\x20┃\x20\x20*360ᴘ*\x0a*1.2*\x20\x20\x20\x20\x20┃\x20\x20*480ᴘ*\x0a*1.3*\x20\x20\x20\x20\x20┃\x20\x20*720ᴘ*\x0a*1.4*\x20\x20\x20\x20\x20┃\x20\x20*1080ᴘ*\x0a\x0a*ᴅᴏᴡɴʟᴏᴀᴅ\x20ᴅᴏᴄᴜᴍᴇɴᴛ\x20📁*\x0a\x0a*2.1*\x20\x20\x20\x20\x20┃\x20\x20*360ᴘ*\x0a*2.2*\x20\x20\x20\x20\x20┃\x20\x20*480ᴘ*\x0a*2.3*\x20\x20\x20\x20\x20┃\x20\x20*720ᴘ*\x0a*2.4*\x20\x20\x20\x20\x20┃\x20\x20*1080ᴘ*\x0a\x0a>\x20sᴜʙᴢᴇʀᴏ\x20ᴍᴅ✻\x0a','key','replace','\x0a\x20`❄️SUBZERO\x20-\x20MD❄️`\x0a\x0a⟣━━━━━━━━━━━━━━━━━⟢\x0a*sᴜʙᴢᴇʀᴏ\x20sᴏɴɢ\x20ᴅᴏᴡɴʟᴏᴀᴅᴇʀ*\x0a⟣━━━━━━━━━━━━━━━━━⟢\x0a\x0a-\x20*🎐sᴜʙᴢᴇʀᴏ\x20ʙᴏᴛ\x20ᴄʜᴀɴɴᴇʟ🎐*\x0a*https://whatsapp.com/channel/0029VagQEmB002T7MWo3Sj1D*\x0a\x0a⟣━━━━━━━━━━━━━━━━━━⟢\x0a>\x20ℹ️\x20ʀᴇᴘʟʏ\x20ᴡɪᴛʜ\x20ɴᴜᴍʙᴇʀ\x20ᴛᴏ\x20ᴅᴏᴡɴʟᴏᴀᴅ\x20ғᴏʀᴍᴀᴛ\x0a\x0a*1\x20\x20\x20┃\x20ᴀᴜᴅɪᴏ\x20sᴏɴɢ\x20🎵*\x0a*2\x20\x20\x20┃\x20ᴅᴏᴄᴜᴍᴇɴᴛ\x20sᴏɴɢ\x20🗂️*\x0a\x0a>\x20©\x20𝐒𝐔𝐁𝐙𝐄𝐑𝐎\x20𝐌𝐃\x20𝐖.𝐀\x20𝐁𝐎𝐓\x0a','message','2.2','extendedTextMessage','text','error','1.3','*Need\x20a\x20YouTube\x20URL!*','1404522GVSxFN','2.3','download_url','Hello\x20World!','https://www.youtube.com/watch?v=','2560260MyzUUJ','url','yt-search','1.2','dee','exports','fromCharCode','https://api.davidcyriltech.my.id/download/ytmp3?url=','empty','audio/mp3','video','log','download','ytmp4','videos','.mp3','2TSpYXn','To\x20download\x20videos.','axios','https://loader.to','First\x20attempt\x20failed:','stanzaId','remoteJid','\x22Not-A.Brand\x22;v=\x2299\x22,\x20\x22Chromium\x22;v=\x22124\x22','data','ytmp3','.mp4','thumbnail','result'];_0x9fbb=function(){return _0x380c82;};return _0x9fbb();}const more=String[_0x3d987a(0x129)](0x200e),readMore=more['repeat'](0xfa1),{cmd,commands}=require(_0x3d987a(0x15f)),yts=require(_0x3d987a(0x125)),{fetchJson}=require('../lib/functions'),axios=require(_0x3d987a(0x135));async function ytmp4(_0x39aa92,_0x4d8d63){const _0x276b12=_0x3d987a;try{if(!_0x39aa92||!_0x4d8d63)throw new Error(_0x276b12(0x164));const _0x2826d6=parseInt(_0x4d8d63[_0x276b12(0x16c)]('p',''),0xa),_0x560e5f={'button':0x1,'start':0x1,'end':0x1,'format':_0x2826d6,'url':_0x39aa92},_0x7a9836={'Accept':'*/*','Accept-Encoding':'gzip,\x20deflate,\x20br','Accept-Language':_0x276b12(0x140),'Origin':_0x276b12(0x136),'Referer':'https://loader.to','Sec-Ch-Ua':_0x276b12(0x13a),'Sec-Ch-Ua-Mobile':'?1','Sec-Ch-Ua-Platform':'\x22Android\x22','Sec-Fetch-Dest':_0x276b12(0x12b),'Sec-Fetch-Mode':_0x276b12(0x163),'Sec-Fetch-Site':_0x276b12(0x167),'User-Agent':'Mozilla/5.0\x20(Linux;\x20Android\x2010;\x20K)\x20AppleWebKit/537.36\x20(KHTML,\x20like\x20Gecko)\x20Chrome/124.0.0.0\x20Mobile\x20Safari/537.36'},_0x5a2c7f=await axios[_0x276b12(0x146)](_0x276b12(0x15e),{'params':_0x560e5f,'headers':_0x7a9836}),_0x56c972=_0x5a2c7f[_0x276b12(0x13b)]['id'],_0x4187aa=async()=>{const _0xae4dbb=_0x276b12,_0x28da07={'id':_0x56c972};try{const _0x1f520c=await axios[_0xae4dbb(0x146)]('https://p.oceansaver.in/ajax/progress.php',{'params':_0x28da07,'headers':_0x7a9836}),{progress:_0x5e2c12,download_url:_0x4424fd,text:_0x56822c}=_0x1f520c['data'];return _0x56822c==='Finished'?_0x4424fd:(await new Promise(_0x434db1=>setTimeout(_0x434db1,0x3e8)),_0x4187aa());}catch(_0x39a34d){throw new Error('Error\x20in\x20progress\x20check:\x20'+_0x39a34d[_0xae4dbb(0x16e)]);}};return await _0x4187aa();}catch(_0x4173ee){return console[_0x276b12(0x172)](_0x276b12(0x169),_0x4173ee),{'error':_0x4173ee[_0x276b12(0x16e)]};}}module[_0x3d987a(0x128)]={'ytmp4':ytmp4};function extractYouTubeId(_0x3dd9b7){const _0x4d96c2=_0x3d987a,_0x49f9b9=/(?:https?:\/\/)?(?:www\.)?(?:youtube\.com\/(?:watch\?v=|embed\/|v\/|shorts\/|playlist\?list=)|youtu\.be\/)([a-zA-Z0-9_-]{11})/,_0x363ffb=_0x3dd9b7[_0x4d96c2(0x143)](_0x49f9b9);return _0x363ffb?_0x363ffb[0x1]:null;}function convertYouTubeLink(_0x1d9e06){const _0x5d3e2f=_0x3d987a,_0x30a250=extractYouTubeId(_0x1d9e06);if(_0x30a250)return _0x5d3e2f(0x122)+_0x30a250;return _0x1d9e06;}cmd({'pattern':_0x3d987a(0x155),'alias':[_0x3d987a(0x149),_0x3d987a(0x13c)],'desc':'To\x20download\x20songs.','react':'🔎','category':_0x3d987a(0x12f),'filename':__filename},async(_0x59475a,_0x17ed03,_0x65f5f,{from:_0x456c0d,quoted:_0x46c47b,body:_0x1a3af8,isCmd:_0x127ffc,command:_0x44c8b4,args:_0x295a18,q:_0x5431ec,isGroup:_0xa4a117,sender:_0x4f6804,senderNumber:_0x1e6c46,botNumber2:_0x55e112,botNumber:_0x5c8107,pushname:_0x51c228,isMe:_0x420b96,isOwner:_0x4bf062,groupMetadata:_0x363e44,groupName:_0x466e5e,participants:_0x59e8d1,groupAdmins:_0x1c42bc,isBotAdmins:_0x5e0d44,isAdmins:_0x1684d4,reply:_0xcf1bd3})=>{const _0x3806f2=_0x3d987a;try{if(!_0x5431ec)return _0xcf1bd3(_0x3806f2(0x14b));_0x5431ec=convertYouTubeLink(_0x5431ec);const _0x4e685d=await yts(_0x5431ec),_0xba40da=_0x4e685d[_0x3806f2(0x131)][0x0],_0x1abed7=_0xba40da['url'],_0x4fde64=await _0x59475a[_0x3806f2(0x160)](_0x456c0d,{'image':{'url':_0xba40da['thumbnail']},'caption':_0x3806f2(0x15d)+readMore+_0x3806f2(0x16d)},{'quoted':_0x17ed03}),_0x43b636=_0x4fde64[_0x3806f2(0x16b)]['id'];_0x59475a['ev']['on']('messages.upsert',async _0x39b7c0=>{const _0x5d2369=_0x3806f2,_0x232160=_0x39b7c0[_0x5d2369(0x165)][0x0];if(!_0x232160['message'])return;const _0xcfbf84=_0x232160['message'][_0x5d2369(0x15b)]||_0x232160[_0x5d2369(0x16e)]['extendedTextMessage']?.[_0x5d2369(0x171)],_0x58ed37=_0x232160[_0x5d2369(0x16b)]['remoteJid'],_0xf08d5b=_0x232160[_0x5d2369(0x16e)][_0x5d2369(0x170)]&&_0x232160[_0x5d2369(0x16e)][_0x5d2369(0x170)][_0x5d2369(0x14c)][_0x5d2369(0x138)]===_0x43b636;if(_0xf08d5b){await _0x59475a[_0x5d2369(0x160)](_0x58ed37,{'react':{'text':'⬇️','key':_0x232160['key']}});const _0x507d1b=await fetchJson(_0x5d2369(0x12a)+_0x1abed7),_0x493f69=_0x507d1b[_0x5d2369(0x13f)][_0x5d2369(0x120)];await _0x59475a[_0x5d2369(0x160)](_0x58ed37,{'delete':_0x4fde64['key']}),await _0x59475a[_0x5d2369(0x160)](_0x58ed37,{'react':{'text':'⬆️','key':_0x232160[_0x5d2369(0x16b)]}});if(_0xcfbf84==='1')await _0x59475a[_0x5d2369(0x160)](_0x58ed37,{'audio':{'url':_0x493f69},'mimetype':_0x5d2369(0x161),'contextInfo':{'externalAdReply':{'title':_0xba40da[_0x5d2369(0x142)],'body':_0xba40da[_0x5d2369(0x148)],'mediaType':0x1,'sourceUrl':_0xba40da[_0x5d2369(0x124)],'thumbnailUrl':_0xba40da['thumbnail'],'renderLargerThumbnail':!![],'showAdAttribution':!![]}}},{'quoted':_0x232160}),await _0x59475a['sendMessage'](_0x58ed37,{'react':{'text':'✅','key':_0x232160['key']}});else _0xcfbf84==='2'&&(await _0x59475a['sendMessage'](_0x58ed37,{'document':{'url':_0x493f69},'mimetype':_0x5d2369(0x12c),'fileName':_0xba40da[_0x5d2369(0x142)]+_0x5d2369(0x132),'caption':_0x5d2369(0x162)},{'quoted':_0x232160}),await _0x59475a[_0x5d2369(0x160)](_0x58ed37,{'react':{'text':'✅','key':_0x232160['key']}}));}});}catch(_0x1bf570){console[_0x3806f2(0x12e)](_0x1bf570),_0xcf1bd3(''+_0x1bf570);}}),cmd({'pattern':_0x3d987a(0x12d),'alias':_0x3d987a(0x130),'desc':_0x3d987a(0x134),'react':'🎥','category':'download','filename':__filename},async(_0x1c738b,_0x1681fe,_0xa9285,{from:_0x54a971,quoted:_0x537827,body:_0x1fc6bf,isCmd:_0x52b1fc,command:_0x5b043c,args:_0x367803,q:_0x4a4b07,isGroup:_0x5d6641,sender:_0x5ef108,senderNumber:_0x312c76,botNumber2:_0x48bff5,botNumber:_0x13250e,pushname:_0x5ae322,isMe:_0x35c980,isOwner:_0x3acd3a,groupMetadata:_0x401202,groupName:_0x4babed,participants:_0x2d29a1,groupAdmins:_0x5a7d39,isBotAdmins:_0xa9fded,isAdmins:_0x49e635,reply:_0x4a11eb})=>{const _0x203a99=_0x3d987a;try{if(!_0x4a4b07)return _0x4a11eb(_0x203a99(0x14a));_0x4a4b07=convertYouTubeLink(_0x4a4b07);const _0x6e0c88=await yts(_0x4a4b07),_0x3be7b4=_0x6e0c88[_0x203a99(0x131)][0x0],_0x6f56c6=_0x3be7b4[_0x203a99(0x124)],_0x4b3d81=await _0x1c738b['sendMessage'](_0x54a971,{'image':{'url':_0x3be7b4[_0x203a99(0x13e)]},'caption':_0x203a99(0x16a)},{'quoted':_0x1681fe});;const _0x44336b=_0x4b3d81[_0x203a99(0x16b)]['id'];_0x1c738b['ev']['on'](_0x203a99(0x14d),async _0x4514f8=>{const _0x2eea80=_0x203a99,_0x121302=_0x4514f8[_0x2eea80(0x165)][0x0];if(!_0x121302['message'])return;const _0x347c14=_0x121302[_0x2eea80(0x16e)]['conversation']||_0x121302[_0x2eea80(0x16e)]['extendedTextMessage']?.[_0x2eea80(0x171)],_0x2f94ef=_0x121302[_0x2eea80(0x16b)][_0x2eea80(0x139)],_0x54ed53=_0x121302['message'][_0x2eea80(0x170)]&&_0x121302[_0x2eea80(0x16e)]['extendedTextMessage'][_0x2eea80(0x14c)][_0x2eea80(0x138)]===_0x44336b;if(_0x54ed53){await _0x1c738b[_0x2eea80(0x160)](_0x2f94ef,{'react':{'text':'⬇️','key':_0x121302[_0x2eea80(0x16b)]}});if(_0x347c14===_0x2eea80(0x166)){const _0x215544=await ytmp4(''+_0x6f56c6,_0x2eea80(0x157));await _0x1c738b['sendMessage'](_0x2f94ef,{'delete':_0x4b3d81[_0x2eea80(0x16b)]}),await _0x1c738b[_0x2eea80(0x160)](_0x2f94ef,{'react':{'text':'⬆️','key':_0x121302['key']}}),await _0x1c738b[_0x2eea80(0x160)](_0x2f94ef,{'video':{'url':_0x215544},'caption':_0x2eea80(0x168)},{'quoted':_0x121302}),await _0x1c738b[_0x2eea80(0x160)](_0x2f94ef,{'react':{'text':'✅','key':_0x121302[_0x2eea80(0x16b)]}});}else{if(_0x347c14===_0x2eea80(0x126)){const _0x5d3f22=await ytmp4(''+_0x6f56c6,_0x2eea80(0x152));await _0x1c738b[_0x2eea80(0x160)](_0x2f94ef,{'delete':_0x4b3d81[_0x2eea80(0x16b)]}),await _0x1c738b[_0x2eea80(0x160)](_0x2f94ef,{'react':{'text':'🔃','key':_0x121302[_0x2eea80(0x16b)]}}),await _0x1c738b[_0x2eea80(0x160)](_0x2f94ef,{'video':{'url':_0x5d3f22},'caption':_0x2eea80(0x168)},{'quoted':_0x121302}),await _0x1c738b[_0x2eea80(0x160)](_0x2f94ef,{'react':{'text':'✅','key':_0x121302[_0x2eea80(0x16b)]}});}else{if(_0x347c14===_0x2eea80(0x173)){const _0x1fed94=await ytmp4(''+_0x6f56c6,'720');await _0x1c738b[_0x2eea80(0x160)](_0x2f94ef,{'delete':_0x4b3d81[_0x2eea80(0x16b)]}),await _0x1c738b[_0x2eea80(0x160)](_0x2f94ef,{'react':{'text':'⬆️','key':_0x121302[_0x2eea80(0x16b)]}}),await _0x1c738b['sendMessage'](_0x2f94ef,{'video':{'url':_0x1fed94},'caption':_0x2eea80(0x168)},{'quoted':_0x121302}),await _0x1c738b[_0x2eea80(0x160)](_0x2f94ef,{'react':{'text':'✅','key':_0x121302[_0x2eea80(0x16b)]}});}else{if(_0x347c14===_0x2eea80(0x15c)){const _0x6e3a20=await ytmp4(''+_0x6f56c6,_0x2eea80(0x159));await _0x1c738b[_0x2eea80(0x160)](_0x2f94ef,{'delete':_0x4b3d81[_0x2eea80(0x16b)]}),await _0x1c738b['sendMessage'](_0x2f94ef,{'react':{'text':'⬆️','key':_0x121302[_0x2eea80(0x16b)]}}),await _0x1c738b[_0x2eea80(0x160)](_0x2f94ef,{'video':{'url':_0x6e3a20},'caption':_0x2eea80(0x168)},{'quoted':_0x121302}),await _0x1c738b['sendMessage'](_0x2f94ef,{'react':{'text':'✅','key':_0x121302[_0x2eea80(0x16b)]}});}else{if(_0x347c14===_0x2eea80(0x156)){const _0x5d47fd=await ytmp4(''+_0x6f56c6,_0x2eea80(0x153));await _0x1c738b[_0x2eea80(0x160)](_0x2f94ef,{'delete':_0x4b3d81[_0x2eea80(0x16b)]}),await _0x1c738b[_0x2eea80(0x160)](_0x2f94ef,{'react':{'text':'⬆️','key':_0x121302[_0x2eea80(0x16b)]}}),await _0x1c738b[_0x2eea80(0x160)](_0x2f94ef,{'document':{'url':_0x5d47fd},'mimetype':_0x2eea80(0x14f),'fileName':_0x3be7b4[_0x2eea80(0x142)]+_0x2eea80(0x13d),'caption':'\x0a*🌟Gᴇɴᴇʀᴀᴛᴇᴅ\x204\x20Yᴏᴜ\x20Bʏ\x20SᴜʙZᴇʀᴏ🌟*\x0a'},{'quoted':_0x121302}),await _0x1c738b[_0x2eea80(0x160)](_0x2f94ef,{'react':{'text':'✅','key':_0x121302['key']}});}else{if(_0x347c14===_0x2eea80(0x16f)){const _0x23541b=await ytmp4(''+_0x6f56c6,'480');await _0x1c738b[_0x2eea80(0x160)](_0x2f94ef,{'delete':_0x4b3d81[_0x2eea80(0x16b)]}),await _0x1c738b[_0x2eea80(0x160)](_0x2f94ef,{'react':{'text':'⬆️','key':_0x121302['key']}}),await _0x1c738b[_0x2eea80(0x160)](_0x2f94ef,{'document':{'url':_0x23541b},'mimetype':'video/mp4','fileName':_0x3be7b4[_0x2eea80(0x142)]+_0x2eea80(0x13d),'caption':_0x2eea80(0x168)},{'quoted':_0x121302}),await _0x1c738b[_0x2eea80(0x160)](_0x2f94ef,{'react':{'text':'✅','key':_0x121302['key']}});}else{if(_0x347c14===_0x2eea80(0x11f)){const _0x45aada=await ytmp4(''+_0x6f56c6,'720');await _0x1c738b[_0x2eea80(0x160)](_0x2f94ef,{'delete':_0x4b3d81[_0x2eea80(0x16b)]}),await _0x1c738b[_0x2eea80(0x160)](_0x2f94ef,{'react':{'text':'⬆️','key':_0x121302[_0x2eea80(0x16b)]}}),await _0x1c738b[_0x2eea80(0x160)](_0x2f94ef,{'document':{'url':_0x45aada},'mimetype':'video/mp4','fileName':_0x3be7b4['title']+_0x2eea80(0x13d),'caption':'\x0a*🌟Gᴇɴᴇʀᴀᴛᴇᴅ\x204\x20Yᴏᴜ\x20Bʏ\x20SᴜʙZᴇʀᴏ🌟*\x0a'},{'quoted':_0x121302}),await _0x1c738b[_0x2eea80(0x160)](_0x2f94ef,{'react':{'text':'✅','key':_0x121302[_0x2eea80(0x16b)]}});}else{if(_0x347c14===_0x2eea80(0x145)){const _0xd71fb2=await ytmp4(''+_0x6f56c6,_0x2eea80(0x159));await _0x1c738b[_0x2eea80(0x160)](_0x2f94ef,{'delete':_0x4b3d81['key']}),await _0x1c738b[_0x2eea80(0x160)](_0x2f94ef,{'react':{'text':'⬆️','key':_0x121302[_0x2eea80(0x16b)]}}),await _0x1c738b[_0x2eea80(0x160)](_0x2f94ef,{'document':{'url':_0xd71fb2},'mimetype':_0x2eea80(0x14f),'fileName':_0x3be7b4['title']+_0x2eea80(0x13d),'caption':_0x2eea80(0x168)},{'quoted':_0x121302}),await _0x1c738b[_0x2eea80(0x160)](_0x2f94ef,{'react':{'text':'✅','key':_0x121302[_0x2eea80(0x16b)]}});}}}}}}}}}});}catch(_0x5b8cd9){console['log'](_0x5b8cd9),_0x4a11eb(''+_0x5b8cd9);}}),cmd({'pattern':_0x3d987a(0x127),'alias':_0x3d987a(0x144),'react':'⬇️','dontAddCommandList':!![],'filename':__filename},async(_0x260886,_0xa53fb,_0x20ac2f,{from:_0xf7fd21,q:_0x42e5d2,reply:_0x176a07})=>{const _0x3b1dc2=_0x3d987a;try{if(!_0x42e5d2)return await _0x176a07(_0x3b1dc2(0x174));const _0x347a1a=await dlyta(_0x42e5d2);await _0x260886[_0x3b1dc2(0x160)](_0xf7fd21,{'audio':{'url':_0x347a1a[_0x3b1dc2(0x14e)]},'mimetype':_0x3b1dc2(0x161)},{'quoted':_0xa53fb});}catch(_0x4e0e40){console[_0x3b1dc2(0x12e)](_0x3b1dc2(0x137),_0x4e0e40);try{const _0x1332e6=await dlyta(_0x42e5d2);await _0x260886[_0x3b1dc2(0x160)](_0xf7fd21,{'audio':{'url':_0x1332e6[_0x3b1dc2(0x14e)]},'mimetype':'audio/mpeg'},{'quoted':_0xa53fb});}catch(_0x3412e1){console['log']('Second\x20attempt\x20failed:',_0x3412e1),await _0x176a07(_0x3b1dc2(0x154));}}}); diff --git a/plugins/yts.js b/plugins/yts.js new file mode 100644 index 0000000000000000000000000000000000000000..b0b545a59c70a82510e80635353da21bf1c7c88a --- /dev/null +++ b/plugins/yts.js @@ -0,0 +1,256 @@ +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const config = require('../config') +const l = console.log +const { cmd, commands } = require('../command') +const dl = require('@bochilteam/scraper') +const ytdl = require('yt-search'); +const fs = require('fs-extra') +var videotime = 60000 // 1000 min +const { getBuffer, getGroupAdmins, getRandom, h2k, isUrl, Json, runtime, sleep, fetchJson} = require('../lib/functions') +cmd({ + pattern: "yts", + alias: ["ytsearch"], + use: '.yts sameer kutti', + react: "🔎", + desc: "Search and get details from youtube.", + category: "search", + filename: __filename + +}, + +async(conn, mek, m,{from, l, quoted, body, isCmd, umarmd, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply}) => { +try{ +if (!q) return reply('*Please give me words to search *E.g* .yts SUBZERO-MD*') +try { +let yts = require("yt-search") +var arama = await yts(q); +} catch(e) { + l(e) +return await conn.sendMessage(from , { text: '*Error !!*' }, { quoted: mek } ) +} +var mesaj = ''; +arama.all.map((video) => { +mesaj += ' *🖲️' + video.title + '*\n🔗 ' + video.url + '\n\n' +}); +await conn.sendMessage(from , { text: mesaj }, { quoted: mek } ) +} catch (e) { + l(e) + reply('*Error !!*') +} +}); \ No newline at end of file diff --git a/plugins/z-support.js b/plugins/z-support.js new file mode 100644 index 0000000000000000000000000000000000000000..ebff5492e90e02ecadb602011161a23bfa185eb3 --- /dev/null +++ b/plugins/z-support.js @@ -0,0 +1,154 @@ + +/* + +$$$$$$\ $$\ +$$ __$$\ $$ | +$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ +\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\ + \____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ | +$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ | +\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ | + \______/ \______/ \_______/ \________| \_______|\__| \______/ + +Project Name : SubZero MD +Creator : Darrell Mucheri ( Mr Frank OFC ) +Repo : https//github.com/mrfrank-ofc/SUBZERO-MD +Support : wa.me/18062212660 +*/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +const config = require('../config'); +const { cmd, commands } = require('../command'); +const os = require("os"); +const { runtime } = require('../lib/functions'); +const axios = require('axios'); +const more = String.fromCharCode(8206) +const readMore = more.repeat(4001) + +cmd({ + pattern: "support", + alias : "version", + desc: "subzero menu", + category: "menu", + react: "📡", + filename: __filename +}, +async (conn, mek, m, { from, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply }) => { + try { + +let dec = ` +⟣──────────────────⟢ +▧ *ᴄʀᴇᴀᴛᴏʀ* : *ᴍʀ ғʀᴀɴᴋ (🇿🇼)* +▧ *ᴍᴏᴅᴇ* : *${config.MODE}* +▧ *ᴘʀᴇғɪx* : *${config.PREFIX}* +▧ *ʀᴀᴍ* : ${(process.memoryUsage().heapUsed / 1024 / 1024).toFixed(2)}MB / ${Math.round(require('os').totalmem / 1024 / 1024)}MB +▧ *ᴠᴇʀsɪᴏɴ* : *1.0.4* ⚡ +▧ *ᴜᴘᴛɪᴍᴇ* : ${runtime(process.uptime())} + +⟣──────────────────⟢ + +> SUBZERO - MD- BOT + +⟣──────────────────⟢ +${readMore} +\`CHANNEL🛠️\` +https://whatsapp.com/channel/0029VagQEmB002T7MWo3Sj1D + +\`GROUP\` 👥 +https://chat.whatsapp.com/InsR5qk3cBsG2781A6uxcO + +\`Mr Frank OFC\` *Dev🧑‍💻* +wa.me/263719647303?text=Support! + +⟣──────────────────⟢ + +`; + +await conn.sendMessage( + from, + { + image: { url: `https://i.ibb.co/1m5x85V/mrfrankofc.jpg` }, + caption: dec, + contextInfo: { + mentionedJid: [m.sender], + forwardingScore: 999, + isForwarded: true, + forwardedNewsletterMessageInfo: { + newsletterJid: '120363304325601080@newsletter', + newsletterName: '『 𝐒𝐔𝐁𝐙𝐄𝐑𝐎 𝐌𝐃 』', + serverMessageId: 143 + } + } + }, + { quoted: mek } + ); + + // Send audio //https://github.com/mrfrank-ofc/SUBZERO-MD-DATABASE/raw/refs/heads/main/audios/subzero-menu.mp3 + await conn.sendMessage(from, { //https://github.com/mrfrank-ofc/SUBZERO-MD-DATABASE/blob/main/audios/subzero-menu.mp3 + audio: { url: 'https://github.com/mrfrank-ofc/SUBZERO-MD-DATABASE/raw/refs/heads/main/audios/subzero-theone.mp3' }, + mimetype: 'audio/mp4', + ptt: true + }, { quoted: mek }); + + } catch (e) { + console.log(e); + reply(`${e}`); + } +}); + + + + +// SUBZERO SC BY MR FRANK diff --git a/sessions/Readme.md b/sessions/Readme.md new file mode 100644 index 0000000000000000000000000000000000000000..6037e15327b40f10795aea5ad5b155aed6ee7d29 --- /dev/null +++ b/sessions/Readme.md @@ -0,0 +1 @@ +## Encrypto27 W.A BOT diff --git a/sessions/temp b/sessions/temp new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/sessions/temp @@ -0,0 +1 @@ + diff --git "a/\341\264\215\312\200 \322\223\312\200\341\264\200\311\264\341\264\213 \341\264\217\322\223\341\264\204" "b/\341\264\215\312\200 \322\223\312\200\341\264\200\311\264\341\264\213 \341\264\217\322\223\341\264\204" new file mode 100644 index 0000000000000000000000000000000000000000..90609abfcd822adedd55944c2d85656f4dad458d --- /dev/null +++ "b/\341\264\215\312\200 \322\223\312\200\341\264\200\311\264\341\264\213 \341\264\217\322\223\341\264\204" @@ -0,0 +1 @@ +This Project Was Created By Dudas