forked from mininxd/wa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
52 lines (47 loc) · 1.34 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
/**
* Create By Dika Ardnt.
* Contact Me on wa.me/6288292024190
* Follow https://github.com/DikaArdnt
*/
const fs = require('fs')
const chalk = require('chalk')
// Website Api
global.APIs = {
zenz: 'https://zenzapis.xyz',
}
// Apikey Website Api
global.APIKeys = {
'https://zenzapis.xyz': '0000',
}
// Other
global.owner = ['6285156508132']
global.premium = ['']
global.packname = 'Hisoka Morrow'
global.author = 'mininproject.dev'
global.sessionName = 'hisoka'
global.prefa = ['!','.','/']
global.sp = '.'
global.mess = {
success: '✓ Success',
admin: 'Fitur Khusus Admin Group!',
botAdmin: 'Saya tidak bisa melakukan itu, karena aku bukan admin',
owner: 'prefix > ini khusus owner bang',
group: 'Fitur Digunakan Hanya Untuk Group!',
private: 'Fitur Digunakan Hanya Untuk Private Chat!',
bot: 'Fitur Khusus Pengguna Nomor Bot',
wait: 'Loading...',
endLimit: 'Your Limit Exceed',
}
global.limitawal = {
premium: "Infinity",
free: "Infinity"
}
global.thumb = fs.readFileSync('./lib/thumb.png')
global.visoka = { url: 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRzZT4NETLvQjO6SsjhZkPwPiLVGEFhaORgqA&usqp=CAU' }
let file = require.resolve(__filename)
fs.watchFile(file, () => {
fs.unwatchFile(file)
console.log(chalk.redBright(`Update'${__filename}'`))
delete require.cache[file]
require(file)
})