-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.js
More file actions
96 lines (84 loc) · 4.01 KB
/
settings.js
File metadata and controls
96 lines (84 loc) · 4.01 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*═══════════════════════════════════════════════════════
* ⌬ YT NeoShiroko Labs
*═══════════════════════════════════════════════════════
* 🌐 Website : https://www.neolabsofficial.my.id
* ⌨︎ Developer : https://zass.cloud
* ▶︎ YouTube : https://www.youtube.com/@zassci_desu
* ⚙︎ Panel Murah : pteroku-desu.zass.cloud
*
* ⚠︎ Mohon untuk tidak menghapus watermark ini
*═══════════════════ © 2025 Zass Desuta ─════════════════════
*/
const fs = require('fs')
const chalk = require('chalk')
//——————————[ Config Owner ]——————————//
global.ownernumber = '' // Ganti nomer mu
global.ownername = ''
//——————————[ Config Bot ]——————————//
global.namabot = "Kuroko"
global.nomorbot = '' // Ganti no botmu
global.pair = "KUROKOKU"
global.version = '5.0.0'
global.autojoingc = false
global.anticall = false
global.autoreadsw = false
global.autoread = false
//——————————[ Config Sosmed ]——————————//
global.web = "https://www.neolabsofficial.my.id"
global.linkSaluran = "https://whatsapp.com/channel/0029Vb6w7eO9sBIEUYRgeC30"
global.idSaluran = "120363421570647022@newsletter"
global.nameSaluran = "Neo'S Labs Ch."
//——————————[ Config Wm ]——————————//
global.packname = 'Stick By Kuroko'
global.author = 'YT NeoShiroko Labs'
global.foother = 'Made By Zass Desuta'
//——————————[ Config Payment ]——————————//
//Note : Kalau gada isi aja jadi false
global.dana = "085298027445"
global.ovo = false
global.gopay = "085298027445"
global.qris = false
global.an = {
dana: "nama_dana",
ovo: "nama_ovo",
gopay: "nama_gopay"
}
//——————————[ Config Media ]——————————//
global.img = "https://files.cloudkuimages.guru/images/aDTzWN7n.jpg"
global.thumbxm = "https://files.catbox.moe/q57r0k.jpg"
global.thumbbc = "https://files.catbox.moe/lrfpvb.jpg"
global.thumb = [
"https://files.cloudkuimages.guru/images/f70e44a47814.jpg",
"https://files.catbox.moe/49j4go.jpg",
"https://files.cloudkuimages.guru/images/d7tfhlE6.jpg",
"https://files.cloudkuimages.guru/images/B3MN20qF.jpg",
"https://files.cloudkuimages.guru/images/eXlyb3iP.jpg",
"https://files.cloudkuimages.guru/images/DhtN6slx.jpg",
"https://files.cloudkuimages.guru/images/OIdJobRB.jpg",
"https://files.cloudkuimages.guru/images/YnmobSc5.jpg"
]
//——————————[ Config Broadcast ]——————————//
// Delay Jpm & Pushctc || 1000 = 1detik
global.delayJpm = 3500
global.delayPushkontak = 5000
global.namakontak = "AutoSave Kuroko"
//——————————[ Config Message ]——————————//
global.mess = {
success: 'sᴜᴄᴄᴇssғᴜʟʏ',
admin: '[ !! ] *sʏsᴛᴇᴍ*\nᴋʜᴜsᴜs ᴀᴅᴍɪɴ ɢʀᴏᴜᴘ',
botAdmin: '[ !! ] *sʏsᴛᴇᴍ*\nʙᴏᴛ ʙᴇʟᴜᴍ ᴊᴀᴅɪ ᴀᴅᴍɪɴ',
creator: '[ !! ] *sʏsᴛᴇᴍ*\nғᴇᴀᴛᴜʀᴇ ɪɴɪ ᴋʜᴜsᴜs ᴏᴡɴᴇʀ',
group: '[ !! ] *sʏsᴛᴇᴍ*\nғᴇᴀᴛᴜʀᴇ ɪɴɪ ᴋʜᴜsᴜs ɢʀᴏᴜᴘ ᴀᴊᴀ',
private: '[ !! ] *sʏsᴛᴇᴍ*\nғᴇᴀᴛᴜʀᴇ ᴋʜᴜsᴜs ᴘʀɪᴠᴀᴛᴇ ᴄʜᴀᴛ',
wait: '[ !! ] *sʏsᴛᴇᴍ*\nᴡᴀɪᴛ ᴘʀᴏsᴇs ᴅᴜʟᴜ',
}
// *** message ***
global.closeMsgInterval = 30; // 30 menit. maksimal 60 menit, minimal 1 menit
global.backMsgInterval = 2; // 2 jam. maksimal 24 jam, minimal 1 jam
let file = require.resolve(__filename)
fs.watchFile(file, () => {
fs.unwatchFile(file)
console.log(chalk.redBright(`Update ${__filename}`))
delete require.cache[file]
require(file)
})