This repository has been archived by the owner on Nov 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 323
/
config.js
54 lines (47 loc) · 1.89 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
let fs = require('fs')
global.owner = ['918113921898'] // Put your number here
global.mods = JSON.parse(fs.readFileSync('./src/moderator.json'))// Moderator?
global.prems = JSON.parse(fs.readFileSync('./src/premium.json')) // Premium users do not need a limit
global.tod = JSON.parse(fs.readFileSync('./src/tod.json'))
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',
fxc7: 'https://fxc7-api.herokuapp.com',
l0lhuman: 'https://api.lolhuman.xyz',
zahir: 'https://zahirr-web.herokuapp.com',
zekais: 'http://zekais-api.herokuapp.com',
zeks: 'https://api.zeks.xyz',
}
global.APIKeys = { // The APIKey is here
// 'https://website': 'apikey'
'https://bx-hunter.herokuapp.com': 'FuckBitch',
'https://hardianto-chan.herokuapp.com': 'hardianto',
'https://neoxr-api.herokuapp.com': 'yntkts',
'https://fxc7-api.herokuapp.com':'pnj8NAJb',
'https://pencarikode.xyz': 'pais',
'https://api.xteam.xyz': 'FuzBot1',
'https://api.lolhuman.xyz': 'sdz8VotwEnDd4HvdIUfy1e4qTDx',
'https://zahirr-web.herokuapp.com': 'zahirgans',
'https://api.zeks.xyz': 'apivinz',
}
// Sticker WM
global.packname = '💋 ᴍɪʟʟɪᴇ 💋'
global.wait = '_*Please Wait..*_'
global.eror = '_*Server Error*_'
global.fla = 'https://github.com/neera-j/Bot-Files/blob/main/images/millie.jpg'
global.watermark = '© ᴍɪʟʟɪᴇ'
global.multiplier = 69 // The higher it is, the harder it is to level up
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)
})