-
Notifications
You must be signed in to change notification settings - Fork 339
Expand file tree
/
Copy pathsettings.js
More file actions
65 lines (53 loc) · 2.02 KB
/
settings.js
File metadata and controls
65 lines (53 loc) · 2.02 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
/*
▀▀█▀▀ █░▄▀ █▀▄▀█ █▀▀█ █▀▀▀█ ▀▀█▀▀
░▒█░░ █▀▄░ █▒█▒█ █▀▀▄ █░░▒█ ░▒█░░
░▒█░░ █░▒█ █░░▒█ █▄▄█ █▄▄▄█ ░▒█░░
© TKM-mods
WhatsApp Me : 263775571820
- Source ↓
- t.me/TKM-mods
- wa.me/263775571820
- https://whatsapp.com/channel/0029Vb5lvXDCMY0EyIW8Yf19
*/
require("./all/module.js")
//========== Setting Owner ==========//
global.owner = "263775571820"
global.namaowner = "TKM-mods"
global.namaowner2 = "TKM-mods"
//======== Setting Bot & Link ========//
global.namabot = "𝚃𝙺𝙼-𝚋𝚘𝚝"
global.namabot2 = "𝚃𝙺𝙼-𝚋𝚘𝚝"
global.version = "v3"
global.foother = "Created By TKM-mods"
global.linkgc = 'https://youtube.com/@TKM-mods'
global.linksaluran = "https://youtube.com/@TKM-mods"
global.linkyt = 'https://youtube.com/@TKM-mods'
global.linktele = "https://t.me/tkm_mods"
global.packname = "Created By TKM-mods"
global.author = "TKM-mods"
//========== Setting Event ==========//
global.welcome = true
global.autoread = false
global.anticall = false
global.autoreadsw = false
global.owneroff = false
global.antibug = true
//========= Setting Message =========//
global.msg = {
"error": "An error has occurred",
"done": "Done, Boss ✅",
"wait": "The bot is processing, please wait a moment . . .",
"group": "*• Group Only* This feature is only for groups!",
"private": "*• Private Chat* This feature is only for private chats!",
"admin": "*• Admin Only* This feature is only for group admins!",
"adminbot": "*• Bot Admin* This feature can be used when the bot is an admin",
"owner": "*• Owner Only* This feature is only for the bot owner!",
"developer": "*• Developer Only* This feature is only for developers"
}
let file = require.resolve(__filename)
fs.watchFile(file, () => {
fs.unwatchFile(file)
console.log(chalk.redBright(`Update ${__filename}`))
delete require.cache[file]
require(file)
})