-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
76 lines (73 loc) · 2.82 KB
/
config.js
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
global.DeveloperMode = 'false' //true Or false
global.linkGC = ['https://chat.whatsapp.com/Lb4Emjih98rBiCZiZoS2eM', 'https://chat.whatsapp.com/FrluVyY5kBRIhY6yKfH4DI']
global.Owner = {
// use the phone number with the country code, for example Indonesia '62' America '1' etc
'14509001764': { // put your number here
name: 'The Shadow Brokers - Bot - Creador',
isDev: true, // if true this number will send if bot have bug and developer mode true
isReport: true, // if true this number will send if user use command /report or /join
isCreator: true // if true this number will send if user use command /owner or /creator
},
'14509003121': { // put your number here
name: 'The Shadow Brokers - Bot',
isDev: true, // if true this number will send if bot have bug and developer mode true
isReport: true, // if true this number will send if user use command /report or /join
isCreator: true // if true this number will send if user use command /owner or /creator
},
'5219996125657': {
name: '.',
isDev: true,
isReport: true,
isCreator: true,
isUpdate: true,
isOwner: true,
isowner: true
},
'14507004640': {
name: 'Moderadora Estefania',
isReport: true, // if true this number will send if user use command /report or /join
isMods: true, // if true this number will send if user use command /moderadores or /creator
},
'14509900687': {
name: 'Moderador Maximiliano',
isReport: true,
isMods: true, // if true this number will send if user use command /moderadores or /creator
},
'14504': {} // ignore if you don't want anything, like name dll
}
global.mods = ['1450'] // Want some help?
global.prems = [''] // Premium user has unlimited limit
global.APIs = { // API Prefix
// name: 'https://website'
nrtm: 'https://nurutomo.herokuapp.com',
xteam: 'https://api.xteam.xyz',
nzcha: 'http://nzcha-apii.herokuapp.com',
bg: 'http://bochil.ddns.net',
fdci: 'https://api.fdci.se',
dzx: 'https://api.dhamzxploit.my.id',
zahir: 'https://zahirr-web.herokuapp.com',
zeks: 'https://api.zeks.xyz',
pencarikode: 'https://pencarikode.xyz',
hardianto: 'http://hardianto-chan.herokuapp.com'
}
global.APIKeys = { // APIKey Here
// 'https://website': 'apikey'
'https://api.xteam.xyz': 'd90a9e986e18778b',
'https://zahirr-web.herokuapp.com': 'zahirgans',
'https://api.zeks.xyz': 'apivinz',
'https://pencarikode.xyz': 'pais',
'http://hardianto-chan.herokuapp.com': 'hardianto'
}
// Sticker WM
global.packname = 'wa.me/19527773705'
global.author = 'The Shadow Bot is cool'
global.multiplier = 39 // The higher, The harder levelup
let fs = require('fs')
let chalk = require('chalk')
let file = require.resolve(__filename)
fs.watchFile(file, () => {
fs.unwatchFile(file)
console.log(chalk.redBright("Update 'config.js'"))
delete require.cache[file]
require(file)
})