-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathsettings.js
80 lines (73 loc) · 2.71 KB
/
settings.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
80
const chalk = require("chalk")
const fs = require("fs")
// Apikey
global.apikeys = 'Apikeylu'
// Note: Kalau Lu Gada Apikeynya Daftar Dulu Biar Semua Fiturnya Aktif, Webnya Di Bawah Ya
// • https://api.xyroinee.xyz
// Info Owner
global.owner = ['6285760451683']
global.nomorown = "6285760451683"
global.ownername = "Xyroınee-ID."
global.ownerNumber = ["[email protected]"]
global.creator = "[email protected]"
global.author = "Clara - MD"
global.location = "Indonesia"
//Bot Setting
global.botname = "Clara - MD"
global.wm = "Follow Instagram: danilelistz02"
global.packname = "Sticker By"
global.prefa = ['','!','.','#','&','`']
global.hituet = 0
// Social Media
global.yt = "https://www.youtube.com/@Xyroinee"
global.gh = "https://github.com/Xyroinee"
global.ig = "https://instagram.com/danilelistz02"
global.fb = "https://facebook.com/danilelistz19"
global.web = "https://api.xyroinee.xyz"
global.gcwa = "https://chat.whatsapp.com/LAWdMIQri9SKee5kqmISH0"
// Foto Bot
global.thumb = fs.readFileSync("./media/clara.jpg")
// Message/Pesan
global.mess = {
success: '_Sukses...!_',
admin: '_Maaf Kak, Tapi Fitur Ini Hanya Bisa Digunakan Oleh Admin Grup_',
botAdmin: '_Jadikan Saya Sebagai Admin Terlebih Dahulu Agar Dapan Mengaktifkan Fitur Ini_',
prem: '_Fitur Ini Khusus Premium Kak, Jika Ingin Menjadi User Premium Ketik .premium Atau Hubungin Owner_',
owner: '_Maaf Kak, Tapi Fitur Ini Hanya Bisa Digunakan Oleh Ownerku_',
group: '_Fitur Ini Hanya Bisa Di Pakai Di Dalam Grup_',
private: '_Fitur Ini Hanya Bisa Di Pakai Di Dalam Chat Pribadi_',
bot: 'Fitur Khusus Bot',
wait: '_Sedang Di Proses, Mohon Tunggu_...',
link: '_Uhm...Linknya Mana?_'
}
// Ini Panel Ya Njing
global.host = "https://zrstore.panelrun.xyz"
global.application = {
api_key: "", //Ambil Di Panel Lu Caranya Pergi Ke Setting Admin Terus Tap Garis Tiga Pojok Kiri Atas Terus Tap Application API Tinggal Salin Apikeynya
c_api_key: "" //Ambil Di Panel Lu Caranya Ke Account Setting Atau Tap Foto Akun Lu Terus Tap API Credentials Terus Isi Descriptionya Sange Terus Tap Create Nah Lu Salin C Apikeynya
}
global.serverCreate = {
nestId: "5", //Nest Id Panel Lu
eggId: "15", //Egg Id Panel Lu
limits: {
db: "1", //Mending Ga Usah Diganti
backups: "1", //Mending Ga Usah Diganti
allocation: "0" //Mending Ga Usah Diganti
},
eggs: {
environment: {
"CUSTOM_COMMAND": "npm start", //Sesuaiin Sama Eggs Panel Lu
"GIT_ADDRESS": "",
"BRANCH": "",
"USERNAME": "",
"ACCESS_TOKEN": ""
}
}
}
let file = require.resolve(__filename)
fs.watchFile(file, () => {
fs.unwatchFile(file)
console.log(chalk.redBright(`Update'${__filename}'`))
delete require.cache[file]
require(file)
})