Create Valuable
Browse files
Valuable
ADDED
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
const fs = require('fs');
|
2 |
+
if (fs.existsSync('config.env')) require('dotenv').config({ path: './config.env' });
|
3 |
+
|
4 |
+
function convertToBool(text, fault = 'true') {
|
5 |
+
return text === fault ? true : false;
|
6 |
+
}
|
7 |
+
module.exports = {
|
8 |
+
SESSION_ID: process.env.SESSION_ID || "SUBZERO-MD~W6xz1KrQ#ZHsSq7xmofBpkDYhMn44K0CPJt1Ks8VsWvjBGzt0XQ4",
|
9 |
+
// add your Session Id
|
10 |
+
AUTO_STATUS_SEEN: process.env.AUTO_STATUS_SEEN || "true",
|
11 |
+
// make true or false status auto seen
|
12 |
+
AUTO_STATUS_REPLY: process.env.AUTO_STATUS_REPLY || "false",
|
13 |
+
// make true if you want auto reply on status
|
14 |
+
AUTO_STATUS_MSG: process.env.AUTO_STATUS_MSG || "*SEEN YOUR STATUS BY SUBZERO🤍*",
|
15 |
+
// set the auto reply massage on status reply
|
16 |
+
PREFIX: process.env.PREFIX || ".",
|
17 |
+
// add your prifix for bot
|
18 |
+
BOT_NAME: process.env.BOT_NAME || "SUBZERO-MD",
|
19 |
+
// add bot namw here for menu
|
20 |
+
STICKER_NAME: process.env.STICKER_NAME || "SUBZERO-MD",
|
21 |
+
// type sticker pack name
|
22 |
+
CUSTOM_REACT: process.env.CUSTOM_REACT || "true",
|
23 |
+
// make this true for custum emoji react
|
24 |
+
CUSTOM_REACT_EMOJIS: process.env.CUSTOM_REACT_EMOJIS || "💝,💖,💗,❤️🩹,❤️,🧡,💛,💚,💙,💜,🤎,🖤,🤍",
|
25 |
+
// chose custom react emojis by yourself
|
26 |
+
DELETE_LINKS: process.env.DELETE_LINKS || "true",
|
27 |
+
// automatic delete links witho remove member
|
28 |
+
OWNER_NUMBER: process.env.OWNER_NUMBER || "254759105912",
|
29 |
+
// add your bot owner number
|
30 |
+
OWNER_NAME: process.env.OWNER_NAME || "Neyvan",
|
31 |
+
// add bot owner name
|
32 |
+
DESCRIPTION: process.env.DESCRIPTION || "*© ᴘᴏᴡᴇʀᴇᴅ ʙʏ ᴍʀ ғʀᴀɴᴍ*",
|
33 |
+
// add bot owner name
|
34 |
+
ALIVE_IMG: process.env.ALIVE_IMG || "",
|
35 |
+
// add img for alive msg
|
36 |
+
READ_MESSAGE: process.env.READ_MESSAGE || "false",
|
37 |
+
// Turn true or false for automatic read msgs
|
38 |
+
AUTO_REACT: process.env.AUTO_REACT || "true",
|
39 |
+
// make this true or false for auto react on all msgs
|
40 |
+
ANTI_BAD: process.env.ANTI_BAD || "true",
|
41 |
+
// false or true for anti bad words
|
42 |
+
MODE: process.env.MODE || "public",
|
43 |
+
// make bot public-private-inbox-group
|
44 |
+
ANTI_LINK: process.env.ANTI_LINK || "true",
|
45 |
+
// make anti link true,false for groups
|
46 |
+
AUTO_VOICE: process.env.AUTO_VOICE || "false",
|
47 |
+
// make true for send automatic voices
|
48 |
+
AUTO_STICKER: process.env.AUTO_STICKER || "true",
|
49 |
+
// make true for automatic stickers
|
50 |
+
AUTO_REPLY: process.env.AUTO_REPLY || "false",
|
51 |
+
// make true or false automatic text reply
|
52 |
+
ALWAYS_ONLINE: process.env.ALWAYS_ONLINE || "true",
|
53 |
+
// maks true for always online
|
54 |
+
PUBLIC_MODE: process.env.PUBLIC_MODE || "true",
|
55 |
+
// make false if want private mod
|
56 |
+
AUTO_TYPING: process.env.AUTO_TYPING || "false",
|
57 |
+
// true for automatic show typing
|
58 |
+
DEV: process.env.DEV || "263719647303",
|
59 |
+
//replace with your whatsapp number
|
60 |
+
ANTI_VV: process.env.ANTI_VV || "true",
|
61 |
+
// true for anti once view
|
62 |
+
ANTI_DEL_PATH: process.env.ANTI_DEL_PATH || "same", // change it to 'same' if you want to resend deleted message in same chat
|
63 |
+
AUTO_RECORDING: process.env.AUTO_RECORDING || "true"
|
64 |
+
// make it true for auto recoding
|
65 |
+
};
|