-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathset.js
54 lines (50 loc) · 1.66 KB
/
set.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
const fs = require('fs')
const chalk = require('chalk')
global.APIs = {
danzz: 'https://danzzapi.xyz',
}
global.APIKeys = {
'https://danzzapi.xyz': 'YOUR APIKEY',
}
// Other
global.apikey = ['YOUR APIKEY'] // Get in: https://danzzapi.xyz
global.apikeyprem = ['YOUR APIKEY'] // Get in: https://danzzapi.xyz
global.apikeyvip = ['YOUR APIKEY'] // Get in: https://danzzapi.xyz
global.namabot = ['Danzz Botz']
global.namaowner = ['Danzz Coding']
global.owner = ['6289512545999']
global.premium = ['6289512545999']
global.packname = '© Powered By'
global.author = 'https://danzzapi.xyz'
global.sessionName = 'session'
global.prefa = ['','!','.','🐦','🐤','🗿']
global.prefix = ['']
global.symbol1 = '•'
global.symbol2 = '>'
global.wm = '© Danzz Coding'
global.mess = {
success: 'Success ✓',
admin: 'Fitur Khusus Admin Group!',
botAdmin: 'Bot Harus Menjadi Admin Terlebih Dahulu!',
owner: 'Fitur Khusus Owner Bot',
group: 'Fitur Khusus Group Chat',
private: 'Fitur Khusus Private Chat!',
bot: 'Fitur Khusus Nomor Bot',
wait: 'Waittt...',
premium: 'Kamu Bukan User Premium, Beli Sana Ke Owner Bot',
endLimit: 'Limit Harian Anda Telah Habis, Limit Akan Direset Setiap Pukul 00:00 WIB.',
}
global.limitawal = {
free: "100",
premium: "1000",
vip: "unlimited"
}
global.thumb = fs.readFileSync('./media/img/1.jpg')
global.qris = { url: 'https://telegra.ph/file/cd0372ebf13b265f3feb5.jpg' }
let file = require.resolve(__filename)
fs.watchFile(file, () => {
fs.unwatchFile(file)
console.log(chalk.greenBright(`Update'${__filename}'`))
delete require.cache[file]
require(file)
})