forked from Nurutomo/wabot-aq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
34 lines (31 loc) · 1.11 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
global.owner = ['6281515860089', '6281334177340'] // Put your number here
global.mods = ['6281515860089','6281334177340','6281261470107'] // Want some help?
global.prems = ['6281515860089','6281334177340','6281261470107'] // Premium user has unlimited limit
global.APIs = { // API Prefix
// name: 'https://website'
nrtm: 'https://nurutomo.herokuapp.com',
xteam: 'https://api.xteam.xyz',
zahir: 'https://zahirr-web.herokuapp.com',
zeks: 'https://api.zeks.xyz',
pencarikode: 'https://pencarikode.xyz'
}
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'
}
// Sticker WM
global.packname = 'Stiker Maker By'
global.author = 'TimoBotz'
global.multiplier = 10 // 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)
})