forked from Nurutomo/wabot-aq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
28 lines (25 loc) · 798 Bytes
/
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
global.owner = ['6285608625102','6285608625102'] // Put your number here
global.mods = [] // 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'
}
global.APIKeys = { // APIKey Here
// 'https://website': 'apikey'
'https://api.xteam.xyz': 'ebb6251cc00f9c63'
}
// Sticker WM
global.packname = 'I hope you\'re fine'
global.author = 'LeonzGanz'
global.multiplier = 69 // 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)
})