Encrypto27
commited on
Commit
·
21c6159
1
Parent(s):
d161ab6
36 - 50
Browse files- plugins/Porn.js +76 -0
- plugins/Readme.md +1 -1
- plugins/main-repo.js +1 -18
- plugins/main-restart.js +2 -20
- plugins/main-settings.js +1 -18
- plugins/main-subzero.js +1 -1
- plugins/main-wa-presence.js +1 -16
- plugins/other-alive.js +0 -16
- plugins/owners-tools.js +13 -13
- plugins/search-bible.js +0 -29
plugins/Porn.js
ADDED
@@ -0,0 +1,76 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
const { cmd } = require('../command');
|
2 |
+
const axios = require('axios');
|
3 |
+
const fs = require('fs');
|
4 |
+
const path = require('path');
|
5 |
+
|
6 |
+
// Simulated fetchJson function for API requests
|
7 |
+
const fetchJson = async (url) => {
|
8 |
+
try {
|
9 |
+
const response = await axios.get(url);
|
10 |
+
return response.data;
|
11 |
+
} catch (error) {
|
12 |
+
console.error(`fetchJson Error: ${error.message}`);
|
13 |
+
if (error.response) {
|
14 |
+
console.error(`Response Status: ${error.response.status}`);
|
15 |
+
console.error(`Response Data: ${JSON.stringify(error.response.data, null, 2)}`);
|
16 |
+
}
|
17 |
+
return null;
|
18 |
+
}
|
19 |
+
};
|
20 |
+
|
21 |
+
cmd({
|
22 |
+
pattern: "xdownload",
|
23 |
+
react: "📥",
|
24 |
+
desc: "Download videos from Xvideos.",
|
25 |
+
category: "utility",
|
26 |
+
filename: __filename
|
27 |
+
}, async (conn, mek, m, { q, reply }) => {
|
28 |
+
try {
|
29 |
+
if (!q) return reply("❌ Please provide a valid Xvideos URL.");
|
30 |
+
|
31 |
+
const apiUrl = `https://api.giftedtech.web.id/api/download/xvideosdl?apikey=gifted&url=${encodeURIComponent(q)}`;
|
32 |
+
console.log("Requesting API with URL:", apiUrl);
|
33 |
+
|
34 |
+
// Fetch video data
|
35 |
+
const response = await fetchJson(apiUrl);
|
36 |
+
if (!response || !response.result) {
|
37 |
+
console.error("❌ Failed to fetch video. Please check the URL or try again later.");
|
38 |
+
return reply("❌ Failed to fetch video. Please check the URL or try again later.");
|
39 |
+
}
|
40 |
+
|
41 |
+
const videoData = response.result;
|
42 |
+
const videoUrl = videoData.download_url;
|
43 |
+
const videoTitle = videoData.title.replace(/[<>:"/\\|?*]/g, ''); // Clean the title for file naming
|
44 |
+
const videoPath = path.join(__dirname, `${videoTitle}.mp4`);
|
45 |
+
|
46 |
+
// Download the video
|
47 |
+
console.log("Downloading video...");
|
48 |
+
const videoResponse = await axios({
|
49 |
+
url: videoUrl,
|
50 |
+
method: 'GET',
|
51 |
+
responseType: 'stream',
|
52 |
+
});
|
53 |
+
|
54 |
+
// Save the video file locally
|
55 |
+
const writer = fs.createWriteStream(videoPath);
|
56 |
+
videoResponse.data.pipe(writer);
|
57 |
+
|
58 |
+
await new Promise((resolve, reject) => {
|
59 |
+
writer.on('finish', resolve);
|
60 |
+
writer.on('error', reject);
|
61 |
+
});
|
62 |
+
|
63 |
+
console.log(`Video downloaded successfully: ${videoPath}`);
|
64 |
+
|
65 |
+
// Send the video to the user
|
66 |
+
await conn.sendMessage(m.chat, { video: fs.readFileSync(videoPath), caption: `🎥 *Title:* ${videoData.title}\n👀 *Views:* ${videoData.views}\n👍 *Likes:* ${videoData.likes}` });
|
67 |
+
|
68 |
+
// Clean up the downloaded file
|
69 |
+
fs.unlinkSync(videoPath);
|
70 |
+
|
71 |
+
console.log("Video sent and file cleaned up.");
|
72 |
+
} catch (error) {
|
73 |
+
console.error("Unexpected Error:", error.message);
|
74 |
+
return reply("❌ An error occurred while processing your request. Please try again.");
|
75 |
+
}
|
76 |
+
});
|
plugins/Readme.md
CHANGED
@@ -1 +1 @@
|
|
1 |
-
©
|
|
|
1 |
+
© ENCRYPTO-27 AI W.A BOT ❄️
|
plugins/main-repo.js
CHANGED
@@ -1,19 +1,5 @@
|
|
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 |
|
@@ -216,7 +202,4 @@ Support : wa.me/18062212660
|
|
216 |
|
217 |
|
218 |
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
function _0x2670(_0x5c5200,_0x32c412){const _0x8bb983=_0x8bb9();return _0x2670=function(_0x2670d6,_0x212cef){_0x2670d6=_0x2670d6-0x140;let _0x769225=_0x8bb983[_0x2670d6];return _0x769225;},_0x2670(_0x5c5200,_0x32c412);}const _0x1188db=_0x2670;function _0x8bb9(){const _0x1dce14=['*Hello\x20There\x20SUBZERO\x20W.A\x20BOT\x20User!\x20😄👋*\x20\x0a\x0a>\x20Simple,\x20Icy,\x20Cold\x20\x20&\x20Rich\x20Loaded\x20Bot\x20With\x20Amazing\x20Features,\x20SubZero\x20WhatsApp\x20Bot.\x20❄️\x0a\x0a*Thanks\x20for\x20using\x20SubZero\x20MD🌹🫶*\x20\x0a\x0a>\x20Don\x27t\x20forget\x20to\x20star\x20&\x20fork\x20the\x20repo🌟🍴\x0a\x0ahttps://github.com/mrfrank-ofc/SUBZERO-MD','repo','audio/mp4','script','6352100HuHVBg','16MyRyGi','log','120363304325601080@newsletter','6ztDjDi','Hello\x20World!','366nHCfcJ','🗂️','info','https://github.com/mrfrank-ofc/SUBZERO-MD-DATABASE/raw/refs/heads/main/audios/subzero-yali.mp3','Info\x20about\x20the\x20bot\x20repository','sender','576951xFMEbw','752609ouBMOR','143610ObVMeo','97580XfbYUx','../command','3364MpVTSO','3639213HrsTfy','sendMessage','685mqeTtu','『\x20SᴜʙZᴇʀᴏ\x20ᴍᴅ\x20』'];_0x8bb9=function(){return _0x1dce14;};return _0x8bb9();}(function(_0x2dca43,_0x345715){const _0x4565e2=_0x2670,_0x323d4b=_0x2dca43();while(!![]){try{const _0x311a5a=-parseInt(_0x4565e2(0x155))/0x1+parseInt(_0x4565e2(0x157))/0x2*(-parseInt(_0x4565e2(0x14d))/0x3)+-parseInt(_0x4565e2(0x140))/0x4*(-parseInt(_0x4565e2(0x143))/0x5)+-parseInt(_0x4565e2(0x14f))/0x6*(-parseInt(_0x4565e2(0x158))/0x7)+parseInt(_0x4565e2(0x14a))/0x8*(parseInt(_0x4565e2(0x141))/0x9)+-parseInt(_0x4565e2(0x149))/0xa+parseInt(_0x4565e2(0x156))/0xb;if(_0x311a5a===_0x345715)break;else _0x323d4b['push'](_0x323d4b['shift']());}catch(_0x3cda68){_0x323d4b['push'](_0x323d4b['shift']());}}}(_0x8bb9,0x76e07));function hi(){const _0x32cd3b=_0x2670;console[_0x32cd3b(0x14b)](_0x32cd3b(0x14e));}hi();function hi(){const _0x10baab=_0x2670;console[_0x10baab(0x14b)](_0x10baab(0x14e));}hi();const {cmd,commands}=require(_0x1188db(0x159));cmd({'pattern':_0x1188db(0x146),'alias':['sc',_0x1188db(0x148),_0x1188db(0x151)],'desc':_0x1188db(0x153),'category':'main','react':_0x1188db(0x150),'filename':__filename},async(_0x3971cd,_0xcb4fa5,_0x20f089,{from:_0x19995a,quoted:_0x742871,body:_0x57816e,isCmd:_0x205269,command:_0x1d2284,args:_0x12b9c2,q:_0x530a94,isGroup:_0x123847,sender:_0x1ed810,senderNumber:_0x146fff,botNumber2:_0x4cc94f,botNumber:_0x482c07,pushname:_0x35213c,isMe:_0x34969f,isOwner:_0x895177,groupMetadata:_0x14ccaf,groupName:_0x3468fc,participants:_0x55bede,groupAdmins:_0x20e822,isBotAdmins:_0x555436,isAdmins:_0x26bca2,reply:_0xcbbddf})=>{const _0x28fb3e=_0x1188db;try{await _0x3971cd[_0x28fb3e(0x142)](_0x19995a,{'image':{'url':'https://i.postimg.cc/7hL6R7NH/White-and-Green-Simple-Professional-Business-Project-Presentation-1.jpg'},'caption':_0x28fb3e(0x145),'contextInfo':{'mentionedJid':[_0x20f089[_0x28fb3e(0x154)]],'forwardingScore':0x3e7,'isForwarded':!![],'forwardedNewsletterMessageInfo':{'newsletterJid':_0x28fb3e(0x14c),'newsletterName':_0x28fb3e(0x144),'serverMessageId':0x8f}}},{'quoted':_0xcb4fa5}),await _0x3971cd[_0x28fb3e(0x142)](_0x19995a,{'audio':{'url':_0x28fb3e(0x152)},'mimetype':_0x28fb3e(0x147),'ptt':!![]},{'quoted':_0xcb4fa5});}catch(_0x3a9329){console['log'](_0x3a9329),_0xcbbddf(''+_0x3a9329);}});
|
|
|
|
|
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
|
|
|
|
|
|
|
|
|
|
|
3 |
|
4 |
|
5 |
|
|
|
202 |
|
203 |
|
204 |
|
205 |
+
function _0x2670(_0x5c5200,_0x32c412){const _0x8bb983=_0x8bb9();return _0x2670=function(_0x2670d6,_0x212cef){_0x2670d6=_0x2670d6-0x140;let _0x769225=_0x8bb983[_0x2670d6];return _0x769225;},_0x2670(_0x5c5200,_0x32c412);}const _0x1188db=_0x2670;function _0x8bb9(){const _0x1dce14=['*Hello\x20There\x20ENCRYPTO-27\x20W.A\x20BOT\x20User!\x20😄👋*\x20\x0a\x0a>\x20Simple,\x20Icy,\x20Cold\x20\x20&\x20Rich\x20Loaded\x20Bot\x20With\x20Amazing\x20Features,\x20Encrypto\x20WhatsApp\x20Bot.\x20❄️\x0a\x0a*Thanks\x20for\x20using\x20Encrypto-27-AI🌹🫶*\x20\x0a\x0a>\x20Don\x27t\x20forget\x20to\x20star\x20&\x20fork\x20the\x20repo🌟🍴\x0a\x0ahttps://github.com/diegoallies/Encrypto-27-AI','repo','audio/mp4','script','6352100HuHVBg','16MyRyGi','log','120363304325601080@newsletter','6ztDjDi','Hello\x20World!','366nHCfcJ','🗂️','info','https://github.com/mrfrank-ofc/SUBZERO-MD-DATABASE/raw/refs/heads/main/audios/subzero-yali.mp3','Info\x20about\x20the\x20bot\x20repository','sender','576951xFMEbw','752609ouBMOR','143610ObVMeo','97580XfbYUx','../command','3364MpVTSO','3639213HrsTfy','sendMessage','685mqeTtu','『\x20SᴜʙZᴇʀᴏ\x20ᴍᴅ\x20』'];_0x8bb9=function(){return _0x1dce14;};return _0x8bb9();}(function(_0x2dca43,_0x345715){const _0x4565e2=_0x2670,_0x323d4b=_0x2dca43();while(!![]){try{const _0x311a5a=-parseInt(_0x4565e2(0x155))/0x1+parseInt(_0x4565e2(0x157))/0x2*(-parseInt(_0x4565e2(0x14d))/0x3)+-parseInt(_0x4565e2(0x140))/0x4*(-parseInt(_0x4565e2(0x143))/0x5)+-parseInt(_0x4565e2(0x14f))/0x6*(-parseInt(_0x4565e2(0x158))/0x7)+parseInt(_0x4565e2(0x14a))/0x8*(parseInt(_0x4565e2(0x141))/0x9)+-parseInt(_0x4565e2(0x149))/0xa+parseInt(_0x4565e2(0x156))/0xb;if(_0x311a5a===_0x345715)break;else _0x323d4b['push'](_0x323d4b['shift']());}catch(_0x3cda68){_0x323d4b['push'](_0x323d4b['shift']());}}}(_0x8bb9,0x76e07));function hi(){const _0x32cd3b=_0x2670;console[_0x32cd3b(0x14b)](_0x32cd3b(0x14e));}hi();function hi(){const _0x10baab=_0x2670;console[_0x10baab(0x14b)](_0x10baab(0x14e));}hi();const {cmd,commands}=require(_0x1188db(0x159));cmd({'pattern':_0x1188db(0x146),'alias':['sc',_0x1188db(0x148),_0x1188db(0x151)],'desc':_0x1188db(0x153),'category':'main','react':_0x1188db(0x150),'filename':__filename},async(_0x3971cd,_0xcb4fa5,_0x20f089,{from:_0x19995a,quoted:_0x742871,body:_0x57816e,isCmd:_0x205269,command:_0x1d2284,args:_0x12b9c2,q:_0x530a94,isGroup:_0x123847,sender:_0x1ed810,senderNumber:_0x146fff,botNumber2:_0x4cc94f,botNumber:_0x482c07,pushname:_0x35213c,isMe:_0x34969f,isOwner:_0x895177,groupMetadata:_0x14ccaf,groupName:_0x3468fc,participants:_0x55bede,groupAdmins:_0x20e822,isBotAdmins:_0x555436,isAdmins:_0x26bca2,reply:_0xcbbddf})=>{const _0x28fb3e=_0x1188db;try{await _0x3971cd[_0x28fb3e(0x142)](_0x19995a,{'image':{'url':'https://i.ibb.co/hx0rGm5/Encrypto.webp'},'caption':_0x28fb3e(0x145),'contextInfo':{'mentionedJid':[_0x20f089[_0x28fb3e(0x154)]],'forwardingScore':0x3e7,'isForwarded':!![],'forwardedNewsletterMessageInfo':{'newsletterJid':_0x28fb3e(0x14c),'newsletterName':_0x28fb3e(0x144),'serverMessageId':0x8f}}},{'quoted':_0xcb4fa5}),await _0x3971cd[_0x28fb3e(0x142)](_0x19995a,{'audio':{'url':_0x28fb3e(0x152)},'mimetype':_0x28fb3e(0x147),'ptt':!![]},{'quoted':_0xcb4fa5});}catch(_0x3a9329){console['log'](_0x3a9329),_0xcbbddf(''+_0x3a9329);}});
|
|
|
|
|
|
plugins/main-restart.js
CHANGED
@@ -1,22 +1,4 @@
|
|
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 |
|
@@ -223,7 +205,7 @@ const { sleep } = require('../lib/functions');
|
|
223 |
|
224 |
cmd({
|
225 |
pattern: "restart",
|
226 |
-
desc: "Restart
|
227 |
category: "owner",
|
228 |
filename: __filename
|
229 |
},
|
@@ -238,7 +220,7 @@ async (conn, mek, m, {
|
|
238 |
}
|
239 |
|
240 |
const { exec } = require("child_process");
|
241 |
-
reply(">
|
242 |
await sleep(1500);
|
243 |
exec("pm2 restart all");
|
244 |
} catch (e) {
|
|
|
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
|
3 |
|
4 |
|
|
|
205 |
|
206 |
cmd({
|
207 |
pattern: "restart",
|
208 |
+
desc: "Restart Encrypto-27 AI",
|
209 |
category: "owner",
|
210 |
filename: __filename
|
211 |
},
|
|
|
220 |
}
|
221 |
|
222 |
const { exec } = require("child_process");
|
223 |
+
reply("> Encrypto-27 AI Bot Restarting...");
|
224 |
await sleep(1500);
|
225 |
exec("pm2 restart all");
|
226 |
} catch (e) {
|
plugins/main-settings.js
CHANGED
@@ -1,19 +1,5 @@
|
|
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 |
|
@@ -215,7 +201,4 @@ Support : wa.me/18062212660
|
|
215 |
|
216 |
|
217 |
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
const _0xf9145=_0x5a98;function _0x5a98(_0x1d97a4,_0x1bd7b4){const _0x4d6363=_0x4d63();return _0x5a98=function(_0x5a9845,_0x5719d6){_0x5a9845=_0x5a9845-0x1e3;let _0x4b607e=_0x4d6363[_0x5a9845];return _0x4b607e;},_0x5a98(_0x1d97a4,_0x1bd7b4);}(function(_0x2b2b6e,_0xdadc34){const _0x273ff9=_0x5a98,_0x1ef92e=_0x2b2b6e();while(!![]){try{const _0x4e48c2=-parseInt(_0x273ff9(0x1e4))/0x1+-parseInt(_0x273ff9(0x1eb))/0x2*(-parseInt(_0x273ff9(0x1fb))/0x3)+-parseInt(_0x273ff9(0x1ef))/0x4*(parseInt(_0x273ff9(0x1e9))/0x5)+parseInt(_0x273ff9(0x1f2))/0x6+-parseInt(_0x273ff9(0x1ee))/0x7*(parseInt(_0x273ff9(0x208))/0x8)+-parseInt(_0x273ff9(0x210))/0x9+parseInt(_0x273ff9(0x214))/0xa;if(_0x4e48c2===_0xdadc34)break;else _0x1ef92e['push'](_0x1ef92e['shift']());}catch(_0x454dc3){_0x1ef92e['push'](_0x1ef92e['shift']());}}}(_0x4d63,0x56aa2));function hi(){console['log']('Hello\x20World!');}hi();function _0x4d63(){const _0x37e5f7=['\x0a┇๏\x20*Custom\x20Reacts:*\x20','ALWAYS_ONLINE','5895EKXBtq','../command','\x0a┇๏\x20*Anti-Link:*\x20','audio/mp4','\x0a┇๏\x20*Anti-Bad\x20Words:*\x20','READ_MESSAGE','DELETE_LINKS','Settings\x20of\x20bot','../config','Disabled\x20❌','settings','message','╭━━━〔\x20*SUBZERO-MD*\x20〕━━━┈⊷\x0a┃▸╭───────────\x0a┃▸┃๏\x20*SUBZERO\x20MD\x20SETTINGS\x20❄️*\x0a┃▸└───────────···๏\x0a╰────────────────┈⊷\x0a╭━━〔\x20*Enabled\x20Disabled*\x20〕━━┈⊷\x0a┇๏\x20*Auto\x20Read\x20Status:*\x20','40GUSuwK','sendMessage','allvar','AUTO_STICKER','Error:\x20','log','menu','CUSTOM_REACT','2002545TEeFyp','\x0a┇๏\x20*Auto\x20Recording:*\x20','\x0a┇๏\x20*Auto\x20Reply:*\x20','\x0a┇๏\x20*Auto\x20Voice:*\x20','14931600nvtNRj','DESCRIPTION','AUTO_VOICE','Enabled\x20✅','https://i.postimg.cc/yNf7rQFw/prn.jpg','214198fNCFKY','\x0a┇๏\x20*Delete\x20Links:*\x20','toString','AUTO_REPLY','PUBLIC_MODE','615yChtCp','subzeroenv','240UqbKKu','AUTO_RECORDING','axios','560644MppSii','21268rYWYxB','toLowerCase','AUTO_STATUS_REPLY','703032dNWLFb','\x0a┇๏\x20*Auto\x20Typing:*\x20','../lib/functions','ANTI_LINK','❄️『\x20𝐒𝐔𝐁𝐙𝐄𝐑𝐎\x20𝐌𝐃\x20』❄️','true','\x0a┇๏\x20*Always\x20Online:*\x20'];_0x4d63=function(){return _0x37e5f7;};return _0x4d63();}const config=require(_0xf9145(0x203)),{cmd,commands}=require(_0xf9145(0x1fc)),{runtime}=require(_0xf9145(0x1f4)),axios=require(_0xf9145(0x1ed));function isEnabled(_0x3264b4){const _0xd71950=_0xf9145;return _0x3264b4&&_0x3264b4[_0xd71950(0x1e6)]()[_0xd71950(0x1f0)]()===_0xd71950(0x1f7);}cmd({'pattern':_0xf9145(0x1ea),'alias':[_0xf9145(0x205),_0xf9145(0x20a),'botsettings'],'desc':_0xf9145(0x202),'category':_0xf9145(0x20e),'react':'⚙️','filename':__filename},async(_0x348789,_0x2be45f,_0x472b12,{from:_0x48385f,quoted:_0x2a403d,reply:_0x1108df})=>{const _0x23b48e=_0xf9145;try{let _0x3f94d8=_0x23b48e(0x207)+(isEnabled(config['AUTO_STATUS_SEEN'])?_0x23b48e(0x217):_0x23b48e(0x204))+'\x0a┇๏\x20*Auto\x20Reply\x20Status:*\x20'+(isEnabled(config[_0x23b48e(0x1f1)])?_0x23b48e(0x217):_0x23b48e(0x204))+_0x23b48e(0x212)+(isEnabled(config[_0x23b48e(0x1e7)])?_0x23b48e(0x217):_0x23b48e(0x204))+'\x0a┇๏\x20*Auto\x20Sticker:*\x20'+(isEnabled(config[_0x23b48e(0x20b)])?_0x23b48e(0x217):_0x23b48e(0x204))+_0x23b48e(0x213)+(isEnabled(config[_0x23b48e(0x216)])?_0x23b48e(0x217):_0x23b48e(0x204))+_0x23b48e(0x1f9)+(isEnabled(config[_0x23b48e(0x20f)])?_0x23b48e(0x217):_0x23b48e(0x204))+'\x0a┇๏\x20*Auto\x20React:*\x20'+(isEnabled(config['AUTO_REACT'])?_0x23b48e(0x217):_0x23b48e(0x204))+_0x23b48e(0x1e5)+(isEnabled(config[_0x23b48e(0x201)])?'Enabled\x20✅':_0x23b48e(0x204))+_0x23b48e(0x1fd)+(isEnabled(config[_0x23b48e(0x1f5)])?_0x23b48e(0x217):_0x23b48e(0x204))+_0x23b48e(0x1ff)+(isEnabled(config['ANTI_BAD'])?_0x23b48e(0x217):_0x23b48e(0x204))+_0x23b48e(0x1f3)+(isEnabled(config['AUTO_TYPING'])?_0x23b48e(0x217):_0x23b48e(0x204))+_0x23b48e(0x211)+(isEnabled(config[_0x23b48e(0x1ec)])?_0x23b48e(0x217):'Disabled\x20❌')+_0x23b48e(0x1f8)+(isEnabled(config[_0x23b48e(0x1fa)])?'Enabled\x20✅':'Disabled\x20❌')+'\x0a┇๏\x20*Public\x20Mode:*\x20'+(isEnabled(config[_0x23b48e(0x1e8)])?_0x23b48e(0x217):_0x23b48e(0x204))+'\x0a┇๏\x20*Read\x20Message:*\x20'+(isEnabled(config[_0x23b48e(0x200)])?_0x23b48e(0x217):_0x23b48e(0x204))+'\x0a╰━━━━━━━━━━━━──┈⊷\x0a>\x20'+config[_0x23b48e(0x215)];await _0x348789[_0x23b48e(0x209)](_0x48385f,{'image':{'url':_0x23b48e(0x1e3)},'caption':_0x3f94d8,'contextInfo':{'mentionedJid':[_0x472b12['sender']],'forwardingScore':0x3e7,'isForwarded':!![],'forwardedNewsletterMessageInfo':{'newsletterJid':'120363304325601080@newsletter','newsletterName':_0x23b48e(0x1f6),'serverMessageId':0x8f}}},{'quoted':_0x2be45f}),await _0x348789[_0x23b48e(0x209)](_0x48385f,{'audio':{'url':'https://github.com/mrfrank-ofc/SUBZERO-MD-DATABASE/blob/main/audios/subzero-menu.mp3'},'mimetype':_0x23b48e(0x1fe),'ptt':!![]},{'quoted':_0x2be45f});}catch(_0x51ee1f){console[_0x23b48e(0x20d)](_0x51ee1f),_0x1108df(_0x23b48e(0x20c)+_0x51ee1f[_0x23b48e(0x206)]);}});
|
|
|
|
|
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
|
|
|
|
|
|
|
|
|
|
|
3 |
|
4 |
|
5 |
|
|
|
201 |
|
202 |
|
203 |
|
204 |
+
const _0xf9145=_0x5a98;function _0x5a98(_0x1d97a4,_0x1bd7b4){const _0x4d6363=_0x4d63();return _0x5a98=function(_0x5a9845,_0x5719d6){_0x5a9845=_0x5a9845-0x1e3;let _0x4b607e=_0x4d6363[_0x5a9845];return _0x4b607e;},_0x5a98(_0x1d97a4,_0x1bd7b4);}(function(_0x2b2b6e,_0xdadc34){const _0x273ff9=_0x5a98,_0x1ef92e=_0x2b2b6e();while(!![]){try{const _0x4e48c2=-parseInt(_0x273ff9(0x1e4))/0x1+-parseInt(_0x273ff9(0x1eb))/0x2*(-parseInt(_0x273ff9(0x1fb))/0x3)+-parseInt(_0x273ff9(0x1ef))/0x4*(parseInt(_0x273ff9(0x1e9))/0x5)+parseInt(_0x273ff9(0x1f2))/0x6+-parseInt(_0x273ff9(0x1ee))/0x7*(parseInt(_0x273ff9(0x208))/0x8)+-parseInt(_0x273ff9(0x210))/0x9+parseInt(_0x273ff9(0x214))/0xa;if(_0x4e48c2===_0xdadc34)break;else _0x1ef92e['push'](_0x1ef92e['shift']());}catch(_0x454dc3){_0x1ef92e['push'](_0x1ef92e['shift']());}}}(_0x4d63,0x56aa2));function hi(){console['log']('Hello\x20World!');}hi();function _0x4d63(){const _0x37e5f7=['\x0a┇๏\x20*Custom\x20Reacts:*\x20','ALWAYS_ONLINE','5895EKXBtq','../command','\x0a┇๏\x20*Anti-Link:*\x20','audio/mp4','\x0a┇๏\x20*Anti-Bad\x20Words:*\x20','READ_MESSAGE','DELETE_LINKS','Settings\x20of\x20bot','../config','Disabled\x20❌','settings','message','╭━━━〔\x20*ENCRYPTO-27-AI*\x20〕━━━┈⊷\x0a┃▸╭───────────\x0a┃▸┃๏\x20*ENCRYPTO-27-AI\x20SETTINGS\x20❄️*\x0a┃▸└───────────···๏\x0a╰────────────────┈⊷\x0a╭━━〔\x20*Enabled\x20Disabled*\x20〕━━┈⊷\x0a┇๏\x20*Auto\x20Read\x20Status:*\x20','40GUSuwK','sendMessage','allvar','AUTO_STICKER','Error:\x20','log','menu','CUSTOM_REACT','2002545TEeFyp','\x0a┇๏\x20*Auto\x20Recording:*\x20','\x0a┇๏\x20*Auto\x20Reply:*\x20','\x0a┇๏\x20*Auto\x20Voice:*\x20','14931600nvtNRj','DESCRIPTION','AUTO_VOICE','Enabled\x20✅','https://i.postimg.cc/yNf7rQFw/prn.jpg','214198fNCFKY','\x0a┇๏\x20*Delete\x20Links:*\x20','toString','AUTO_REPLY','PUBLIC_MODE','615yChtCp','subzeroenv','240UqbKKu','AUTO_RECORDING','axios','560644MppSii','21268rYWYxB','toLowerCase','AUTO_STATUS_REPLY','703032dNWLFb','\x0a┇๏\x20*Auto\x20Typing:*\x20','../lib/functions','ANTI_LINK','❄️『\x20𝐒𝐔𝐁𝐙𝐄𝐑𝐎\x20𝐌𝐃\x20』❄️','true','\x0a┇๏\x20*Always\x20Online:*\x20'];_0x4d63=function(){return _0x37e5f7;};return _0x4d63();}const config=require(_0xf9145(0x203)),{cmd,commands}=require(_0xf9145(0x1fc)),{runtime}=require(_0xf9145(0x1f4)),axios=require(_0xf9145(0x1ed));function isEnabled(_0x3264b4){const _0xd71950=_0xf9145;return _0x3264b4&&_0x3264b4[_0xd71950(0x1e6)]()[_0xd71950(0x1f0)]()===_0xd71950(0x1f7);}cmd({'pattern':_0xf9145(0x1ea),'alias':[_0xf9145(0x205),_0xf9145(0x20a),'botsettings'],'desc':_0xf9145(0x202),'category':_0xf9145(0x20e),'react':'⚙️','filename':__filename},async(_0x348789,_0x2be45f,_0x472b12,{from:_0x48385f,quoted:_0x2a403d,reply:_0x1108df})=>{const _0x23b48e=_0xf9145;try{let _0x3f94d8=_0x23b48e(0x207)+(isEnabled(config['AUTO_STATUS_SEEN'])?_0x23b48e(0x217):_0x23b48e(0x204))+'\x0a┇๏\x20*Auto\x20Reply\x20Status:*\x20'+(isEnabled(config[_0x23b48e(0x1f1)])?_0x23b48e(0x217):_0x23b48e(0x204))+_0x23b48e(0x212)+(isEnabled(config[_0x23b48e(0x1e7)])?_0x23b48e(0x217):_0x23b48e(0x204))+'\x0a┇๏\x20*Auto\x20Sticker:*\x20'+(isEnabled(config[_0x23b48e(0x20b)])?_0x23b48e(0x217):_0x23b48e(0x204))+_0x23b48e(0x213)+(isEnabled(config[_0x23b48e(0x216)])?_0x23b48e(0x217):_0x23b48e(0x204))+_0x23b48e(0x1f9)+(isEnabled(config[_0x23b48e(0x20f)])?_0x23b48e(0x217):_0x23b48e(0x204))+'\x0a┇๏\x20*Auto\x20React:*\x20'+(isEnabled(config['AUTO_REACT'])?_0x23b48e(0x217):_0x23b48e(0x204))+_0x23b48e(0x1e5)+(isEnabled(config[_0x23b48e(0x201)])?'Enabled\x20✅':_0x23b48e(0x204))+_0x23b48e(0x1fd)+(isEnabled(config[_0x23b48e(0x1f5)])?_0x23b48e(0x217):_0x23b48e(0x204))+_0x23b48e(0x1ff)+(isEnabled(config['ANTI_BAD'])?_0x23b48e(0x217):_0x23b48e(0x204))+_0x23b48e(0x1f3)+(isEnabled(config['AUTO_TYPING'])?_0x23b48e(0x217):_0x23b48e(0x204))+_0x23b48e(0x211)+(isEnabled(config[_0x23b48e(0x1ec)])?_0x23b48e(0x217):'Disabled\x20❌')+_0x23b48e(0x1f8)+(isEnabled(config[_0x23b48e(0x1fa)])?'Enabled\x20✅':'Disabled\x20❌')+'\x0a┇๏\x20*Public\x20Mode:*\x20'+(isEnabled(config[_0x23b48e(0x1e8)])?_0x23b48e(0x217):_0x23b48e(0x204))+'\x0a┇๏\x20*Read\x20Message:*\x20'+(isEnabled(config[_0x23b48e(0x200)])?_0x23b48e(0x217):_0x23b48e(0x204))+'\x0a╰━━━━━━━━━━━━──┈⊷\x0a>\x20'+config[_0x23b48e(0x215)];await _0x348789[_0x23b48e(0x209)](_0x48385f,{'image':{'url':_0x23b48e(0x1e3)},'caption':_0x3f94d8,'contextInfo':{'mentionedJid':[_0x472b12['sender']],'forwardingScore':0x3e7,'isForwarded':!![],'forwardedNewsletterMessageInfo':{'newsletterJid':'120363304325601080@newsletter','newsletterName':_0x23b48e(0x1f6),'serverMessageId':0x8f}}},{'quoted':_0x2be45f}),await _0x348789[_0x23b48e(0x209)](_0x48385f,{'audio':{'url':'https://github.com/mrfrank-ofc/ENCRYPTO-27-AI-DATABASE/blob/main/audios/subzero-menu.mp3'},'mimetype':_0x23b48e(0x1fe),'ptt':!![]},{'quoted':_0x2be45f});}catch(_0x51ee1f){console[_0x23b48e(0x20d)](_0x51ee1f),_0x1108df(_0x23b48e(0x20c)+_0x51ee1f[_0x23b48e(0x206)]);}});
|
|
|
|
|
|
plugins/main-subzero.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
function _0x3168(){const _0xf8f60b=['1422odcxnH','600446EBTNHP','All\x20About\x20The\x20Bot\x20&\x20Dev','https://i.
|
|
|
1 |
+
function _0x3168(){const _0xf8f60b=['1422odcxnH','600446EBTNHP','All\x20About\x20The\x20Bot\x20&\x20Dev','https://i.ibb.co/hx0rGm5/Encrypto.webp\x20*An\x20error\x20occurred\x20while\x20fetching\x20the\x20family\x20list.\x20Please\x20try\x20again.*','15264unuNlt','12210wXlCFM','1869850KRbtFu','5523702XirFFM','8PdYRwQ','\x20\x20*⟣────────────⟢*\x0a\x20\x20\x20\x20*[\x20•\x20Developer:\x20Darrell\x20M\x20]*\x0a\x20*⟣────────────•⟢*\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20*⟣┈───────────────⟢*\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20🗂️\x20*REPOSITORY*\x0a\x20\x20\x20\x20\x20\x20\x20https://github.com/diegoallies/Encrypto-27-AI\x0a\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20*⟣┈───────────────•*\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20🔗\x20*PROJECT\x20NAME*\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20SUBZERO-MD\x20W.A\x20BOT\x0a\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20*⟣┈───────────────•*\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20👨💻\x20*DEVELOPER*\x0a\x20\x20\x20\x20\x20https://github.com/diegoallies\x0a\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20*⟣┈───────────────•*\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20🧮\x20*RELEASE\x20DATE*\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x2015\x20December\x202024\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20*⟣┈───────────────•*\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20📩\x20*SUPPORT\x20GROUP*\x20\x0a\x20\x20\x20\x20\x20\x20https://chat.whatsapp.com/CA7bhs9XrzB5iywo7mCqaV\x0a\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20*⟣┈───────────────•*\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20🎀\x20*SUPPORT\x20CHANNEL*\x0a\x20\x20\x20\x20\x20\x20https://whatsapp.com/channel/0029Vb3ErqhA2pLCoqgxXx1M\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20◦🪄\x20\x20Hit\x20Me\x20Here\x20:wa.me/263719647303*\x20\x0a\x20\x20\x20\x20\x20\x20*⟝┈───────────────⟞*\x0a\x20\x20\x20\x20\x20\x20\x20\x20*⟣────────────•⟢*\x0a\x20\x20\x20\x20','2697088SWXRut','2763ULxgJQ','chat','Hello\x20World!','error','log','sendMessage','3432947vrvpBW','trim'];_0x3168=function(){return _0xf8f60b;};return _0x3168();}function _0x2c13(_0x56be2b,_0x120487){const _0x316880=_0x3168();return _0x2c13=function(_0x2c1316,_0x14e15a){_0x2c1316=_0x2c1316-0x113;let _0x2a5cbf=_0x316880[_0x2c1316];return _0x2a5cbf;},_0x2c13(_0x56be2b,_0x120487);}const _0x1e6434=_0x2c13;(function(_0x4200d9,_0x312449){const _0x19693e=_0x2c13,_0x300287=_0x4200d9();while(!![]){try{const _0x339162=parseInt(_0x19693e(0x121))/0x1+-parseInt(_0x19693e(0x120))/0x2*(parseInt(_0x19693e(0x118))/0x3)+-parseInt(_0x19693e(0x117))/0x4+-parseInt(_0x19693e(0x113))/0x5+-parseInt(_0x19693e(0x114))/0x6+-parseInt(_0x19693e(0x11e))/0x7*(-parseInt(_0x19693e(0x115))/0x8)+-parseInt(_0x19693e(0x126))/0x9*(-parseInt(_0x19693e(0x127))/0xa);if(_0x339162===_0x312449)break;else _0x300287['push'](_0x300287['shift']());}catch(_0x55c285){_0x300287['push'](_0x300287['shift']());}}}(_0x3168,0x83589));function hi(){const _0x31d583=_0x2c13;console[_0x31d583(0x11c)](_0x31d583(0x11a));}hi();const {cmd}=require(_0x1e6434(0x124));cmd({'pattern':'subzeroinc','desc':_0x1e6434(0x122),'category':'fun','react':'🦄','filename':__filename},async(_0x1d77c6,_0x3bc605,_0x33505d,{reply:_0x149ecd})=>{const _0x989e01=_0x1e6434,_0x48000e=_0x989e01(0x116);try{await _0x1d77c6[_0x989e01(0x11d)](_0x33505d[_0x989e01(0x119)],{'image':{'url':_0x989e01(0x123)},'caption':_0x48000e[_0x989e01(0x11f)]()},{'quoted':_0x3bc605});}catch(_0x175db9){console[_0x989e01(0x11b)](_0x175db9),_0x149ecd(_0x989e01(0x125));}});
|
plugins/main-wa-presence.js
CHANGED
@@ -1,19 +1,4 @@
|
|
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 |
|
@@ -262,7 +247,7 @@ async (conn, mek, m, { from, body, isOwner }) => {
|
|
262 |
|
263 |
if (config.AUTO_STICKER === 'true') {
|
264 |
//if (isOwner) return;
|
265 |
-
await conn.sendMessage(from,{sticker: { url : data[text]},package: '
|
266 |
|
267 |
}
|
268 |
}
|
|
|
|
|
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
|
3 |
|
4 |
|
|
|
247 |
|
248 |
if (config.AUTO_STICKER === 'true') {
|
249 |
//if (isOwner) return;
|
250 |
+
await conn.sendMessage(from,{sticker: { url : data[text]},package: 'ENCRYPTO-27-AI'},{ quoted: mek })
|
251 |
|
252 |
}
|
253 |
}
|
plugins/other-alive.js
CHANGED
@@ -1,19 +1,3 @@
|
|
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 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
|
2 |
|
3 |
|
plugins/owners-tools.js
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
/*
|
2 |
|
3 |
-
$$$$$$\ $$\
|
4 |
-
$$ __$$\ $$ |
|
5 |
-
$$ / \__|$$\ $$\ $$$$$$$\
|
6 |
-
\$$$$$$\ $$ | $$ |$$ __$$\
|
7 |
-
\____$$\ $$ | $$ |$$ | $$
|
8 |
-
$$\ $$ |$$ | $$ |$$ | $$ |
|
9 |
-
\$$$$$$ |\$$$$$$ |$$$$$$$
|
10 |
-
\______/ \______/ \_______/
|
11 |
-
|
12 |
-
Project Name :
|
13 |
-
Creator :
|
14 |
-
Repo : https
|
15 |
-
Support : wa.me/
|
16 |
*/
|
17 |
|
18 |
|
|
|
1 |
/*
|
2 |
|
3 |
+
$$$$$$\ $$\
|
4 |
+
$$ __$$\ $$ |
|
5 |
+
$$ / \__|$$\ $$\ $$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\
|
6 |
+
\$$$$$$\ $$ | $$ |$$ __$$\ $$ __$$\ $$ __$$\ $$ __$$\ $$ __$$\
|
7 |
+
\____$$\ $$ | $$ |$$ | $$ |$$ / $$ |$$ | \__|$$ / $$ |$$ / $$ |
|
8 |
+
$$\ $$ |$$ | $$ |$$ | $$ |$$ | $$ |$$ | $$ | $$ |$$ | $$ |
|
9 |
+
\$$$$$$ |\$$$$$$ |$$$$$$$ |\$$$$$$$ |$$ | \$$$$$$ |\$$$$$$$ |
|
10 |
+
\______/ \______/ \_______/ \_______|\__| \______/ \_______|
|
11 |
+
|
12 |
+
Project Name : Encrypto-27 AI
|
13 |
+
Creator : Diego Allies ( Dudas )
|
14 |
+
Repo : https://github.com/diegoallies/Encrypto-27-AI
|
15 |
+
Support : wa.me/27679291800
|
16 |
*/
|
17 |
|
18 |
|
plugins/search-bible.js
CHANGED
@@ -1,32 +1,3 @@
|
|
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 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
|
2 |
|
3 |
|