forked from Sandaruoo/SANDARU-WHATSAPP-BOT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetting.js
48 lines (42 loc) · 1.18 KB
/
setting.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
const fs = require('fs')
const chalk = require('chalk')
// WEB APIKEY
global.Api = {
ampibi: 'https://ampibismm.my.id',
}
// APIKEY WEBSITE
global.ApiKey = 'coderevolution'
global.smm = {
nomor : '6285755825621',
atasnama : 'XCoco'
}
// Other
global.owner = ['94764497078']
global.premium = ['94764497078']
global.sponsor = 'Tidak Ada Sponsor :)'
global.packname = 'Sandaru'
global.footer = 'SANDARU Multi Device'
global.author = 'WhatsApp'
global.prefa = ['','!','.','🐦','🐤','🗿']
global.act = {
wait: '*Please Wait. Processing Data* 🔥',
den:'Sorry You Not Register',
proc:'*Loading Please Wait*..',
error:'*Error* ❌',
success:'Success band!',
repiar:'This Feature Maintace!',
botadm:'BOT MUST Be Admin First!',
admin:'I am Not Admin!',
done:'Done!',
gc:'Only Group Allowed',
owner:'Only Owner Allowed'
}
global.thumb = fs.readFileSync('./lib/crizzy.jpg')
global.crizzy = { url: "https://g.top4top.io/p_2443v88g61.jpg"}
let file = require.resolve(__filename)
fs.watchFile(file, () => {
fs.unwatchFile(file)
console.log(chalk.redBright(`Update'${__filename}'`))
delete require.cache[file]
require(file)
})