forked from novaxmd/NOVA-XMD
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
122 lines (83 loc) · 3.74 KB
/
config.js
File metadata and controls
122 lines (83 loc) · 3.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
const fs = require('fs');
if (fs.existsSync('config.env')) require('dotenv').config({ path: './config.env' });
function convertToBool(text, fault = 'true') {
return text === fault ? true : false;
}
module.exports = {
SESSION_ID: process.env.SESSION_ID || "",
// add your Session Id
AUTO_STATUS_SEEN: process.env.AUTO_STATUS_SEEN || "true",
// make true or false status auto seen
AUTO_STATUS_REPLY: process.env.AUTO_STATUS_REPLY || "false",
// make true if you want auto reply on status
AUTO_STATUS_REACT: process.env.AUTO_STATUS_REACT || "true",
// make true or false for auto react on status
ANTI_CALL: process.env.ANTI_CALL || "true",
// anticall on/off
AUTO_STATUS_MSG: process.env.AUTO_STATUS_MSG || "*SEEN YOUR STATUS BY NOVA XMD 🔥*",
// set the auto reply massage on status reply
ANTI_DELETE: process.env.ANTI_DELETE || "true",
// set true false for anti delete
ANTI_DEL_PATH: process.env.ANTI_DEL_PATH || "log",
// change it to 'same' if you want to resend deleted message in same chat
WELCOME: process.env.WELCOME || "true",
// true if want welcome and goodbye msg in groups
ADMIN_EVENTS: process.env.ADMIN_EVENTS || "false",
// make true to know who dismiss or promoted a member in group
ANTI_LINK: process.env.ANTI_LINK || "true",
// make anti link true,false for groups
MENTION_REPLY: process.env.MENTION_REPLY || "false",
// make true if want auto voice reply if someone menetion you
MENU_IMAGE_URL: process.env.MENU_IMAGE_URL || "https://files.catbox.moe/52dotx.jpg",
// add custom menu and mention reply image url
PREFIX: process.env.PREFIX || ".",
// add your prifix for bot
BOT_NAME: process.env.BOT_NAME || "NOVA-XMD",
// add bot namw here for menu
STICKER_NAME: process.env.STICKER_NAME || "NOVA-XMD",
// type sticker pack name
CUSTOM_REACT: process.env.CUSTOM_REACT || "false",
// make this true for custum emoji react
CUSTOM_REACT_EMOJIS: process.env.CUSTOM_REACT_EMOJIS || "💝,💖,💗,❤️🩹,❤️,🧡,💛,💚,💙,💜,🤎,🖤,🤍",
// chose custom react emojis by yourself
OWNER_NUMBER: process.env.OWNER_NUMBER || "255767862457",
// add your bot owner number
OWNER_NAME: process.env.OWNER_NAME || "NOVA-TECH",
// add bot owner name
DESCRIPTION: process.env.DESCRIPTION || "*© POWERED NOVA TECH*",
// add bot description
ALIVE_IMG: process.env.ALIVE_IMG || "https://files.catbox.moe/52dotx.jpg",
// add img for alive msg
LIVE_MSG: process.env.LIVE_MSG || "> Powered by *NOVA TECH*⚡",
// add alive msg here
READ_MESSAGE: process.env.READ_MESSAGE || "false",
// Turn true or false for automatic read msgs
AUTO_REACT: process.env.AUTO_REACT || "false",
// make this true or false for auto react on all msgs
ANTI_BAD: process.env.ANTI_BAD || "false",
// false or true for anti bad words
MODE: process.env.MODE || "public",
// make bot public-private-inbox
AUTO_STICKER: process.env.AUTO_STICKER || "false",
// make true for automatic stickers
AUTO_REPLY: process.env.AUTO_REPLY || "false",
// make true or false automatic text reply
ALWAYS_ONLINE: process.env.ALWAYS_ONLINE || "false",
// maks true for always online
PUBLIC_MODE: process.env.PUBLIC_MODE || "true",
// make false if want private mod
AUTO_TYPING: process.env.AUTO_TYPING || "true",
// true for automatic show typing
READ_CMD: process.env.READ_CMD || "false",
// true if want mark commands as read
DEV: process.env.DEV || "255767862457",
// replace with your whatsapp number
ANTI_VV: process.env.ANTI_VV || "true",
// true for anti once view
AUTO_RECORDING: process.env.AUTO_RECORDING || "false",
// make it true for auto recoding
AUTO_BIO: process.env.AUTO_BIO || "false",
// make true if you want bot to auto-update bio/status
CHATBOT: process.env.CHATBOT || "false"
// make true if you want AI chatbot responses enabled
};