forked from ariffb25/stikerinbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
44 lines (40 loc) · 1.47 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
let fs = require('fs')
global.owner = ['6281261470107'] // Letakan nomor kamu disini
global.mods = ['6281261470107'] // Moderator?
global.prems = JSON.parse(fs.readFileSync('./src/premium.json')) // Pengguna premium tidak memerlukan limit
global.APIs = { // API Prefix
// nama: 'https://website'
bx: 'https://bx-hunter.herokuapp.com',
hardianto: 'https://hardianto-chan.herokuapp.com',
jonaz: 'https://jonaz-api-v2.herokuapp.com',
neoxr: 'https://neoxr-api.herokuapp.com',
nrtm: 'https://nurutomo.herokuapp.com',
pencarikode: 'https://pencarikode.xyz',
xteam: 'https://api.xteam.xyz',
zahir: 'https://zahirr-web.herokuapp.com',
zekais: 'http://zekais-api.herokuapp.com',
zeks: 'https://api.zeks.xyz',
}
global.APIKeys = { // APIKey nya disini
// 'https://website': 'apikey'
'https://bx-hunter.herokuapp.com': 'Ikyy69',
'https://hardianto-chan.herokuapp.com': 'hardianto',
'https://neoxr-api.herokuapp.com': 'yntkts',
'https://pencarikode.xyz': 'pais',
'https://api.xteam.xyz': 'apikeymu',
'https://zahirr-web.herokuapp.com': 'zahirgans',
'https://api.zeks.xyz': 'apivinz',
}
// Sticker WM
global.packname = 'Stiker'
global.author = 'by Timothy :)'
global.wait = '_*Tunggu..*_'
global.multiplier = 69 // Semakin tinggi, semakin sulit naik level
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)
})