-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsettings.js
56 lines (50 loc) · 1.52 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
const fs = require('fs')
const chalk = require('chalk')
global.owner = [
['5214774444444'],
['5492266613038'],
['573147616444'],
['593968263524'],
['51968374620']
]
global.wm = '© CuriosityBot-MD'
global.prefa = '.'
global.session = 'session'
global.vs = '2.0.0'
global.author = 'zam'
global.lolkey = 'GataDiosV3'
global.apis = 'https://delirius-apiofc.vercel.app'
global.mess = {
admin: 'Debes ser administrador para ejecutar esta función',
botAdmin: 'El bot debe ser administrador para ejecutar la función',
owner: 'Solo mi propietario puede hacer uso de este comando',
group: 'Esta función sólo funciona en chats grupales',
private: 'Esta función sólo funciona en chats privados',
wait: '`Cargando...`'
}
global.link = 'https://whatsapp.com/channel/0029VaB4w2ZFHWpwgyEe3w2k'
global.fotos = 'https://qu.ax/lFTW.jpeg'
global.Title = wm
global.Body = 'Zam'
// IDs de canales
global.ch = {
ch1: '120363336642332098@newsletter',
ch2: '120363160031023229@newsletter',
ch3: '120363169294281316@newsletter',
ch4: '120363203805910750@newsletter',
ch5: '120363302472386010@newsletter',
ch6: '120363301598733462@newsletter',
ch7: '120363190430436554@newsletter',
ch8: '120363374372683775@newsletter',
ch9: '120363167110224268@newsletter',
ch10: '120363323882134704@newsletter',
ch11: '120363370415738881@newsletter',
ch12: '120363385983031660@newsletter',
}
let file = require.resolve(__filename)
fs.watchFile(file, () => {
fs.unwatchFile(file)
console.log(chalk.redBright(`Actualización '${__filename}'`))
delete require.cache[file]
require(file)
})