-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.js
79 lines (68 loc) · 2.68 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
77
78
79
let fs = require('fs')
global.owner = JSON.parse(fs.readFileSync('./src/owner.json')) // Put your number to folder /src/owner.json
global.mods = JSON.parse(fs.readFileSync('./src/moderator.json')) // Want some help?
global.APIs = { // API Prefix
// name: 'https://website'
nrtm: 'https://nurutomo.herokuapp.com',
bg: 'http://bochil.ddns.net',
xteam: 'https://api.xteam.xyz',
zahir: 'https://zahirr-web.herokuapp.com',
zeks: 'https://api.zeks.me',
pencarikode: 'https://pencarikode.xyz',
LeysCoder: 'https://leyscoders-api.herokuapp.com',
neoxr: 'https://neoxr-api.herokuapp.com',
amel: 'https://melcanz.com',
hardianto: 'https://hardianto.xyz',
lol: 'https://api.lolhuman.xyz',
adicug: 'https://api.adiofficial.xyz'
}
global.APIKeys = { // APIKey Here
// 'https://website': 'apikey'
'https://neoxr-api.herokuapp.com': 'yntkts',
'https://api.xteam.xyz': 'apikeylu',
'https://melcanz.com': 'apikeylu',
'https://api.lolhuman.xyz': 'apikeylu',
'https://zahirr-web.herokuapp.com': 'zahirgans',
'https://api.zeks.me': 'apikeylu',
'https://pencarikode.xyz': 'apikeylu',
'https://hardianto.xyz': 'hardianto',
'https://leyscoders-api.herokuapp.com': 'apikeylu',
'https://api.adiofficial.xyz': 'apikey lu'
}
//============= Wait and Eror ================//
global.wait = '「 ⏱️ 」Harap tunggu...'
global.eror = '「❗」Server ERROR!'
//========Url Template Buttons=========//
global.dtu = 'ɪɴꜱᴛᴀɢʀᴀᴍ'
global.urlnya = "https://www.instagram.com/muhammad_rizki1303"
//============= callButtons =============//
global.dtc = 'ᴄᴀʟʟ ᴏᴡɴᴇʀ'
global.phn = '+62 896-7718-4101'
//============= Watermark Bot and Sticker =============//
global.wm = '© RizzBot'
global.author = '© RizzBot'
global.packname ='idc.'
global.namabot = 'RizzBot'
//============= Games ================//
global.benar = '_*Benar✅*_'
global.salah = '_*Salah❌*_'
global.dikit = "dikit lagi, semangat ya :')"
global.multiplier = 100 // The higher, The harder levelup
//============= Thumb And Image ================//
global.pp = 'https://telegra.ph/file/39bbded9693c9338069fd.jpg'
global.image = 'https://telegra.ph/file/39bbded9693c9338069fd.jpg'
global.thumbfoto = 'http://telegra.ph/file/29f2d451412ae151a2dfb.jpg'
//=========== Requirements ==========//
global.baileys = require('@adiwajshing/baileys')
global.fs = require('fs')
global.data = JSON.parse(fs.readFileSync('./data.json'))
global.fetch = require('node-fetch')
global.bochil = require('@bochilteam/scraper')
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)
})