forked from FG98F/senna-bot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.js
58 lines (50 loc) ยท 1.94 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
53
54
55
56
57
58
import { watchFile, unwatchFile } from 'fs'
import chalk from 'chalk'
import { fileURLToPath } from 'url'
global.owner = [
['595976126756', 'The-MikuBot-MDV3', true],
['595986637644', 'The-MikuBot-MDV3',true],
['595971253989', 'The-MikuBot-MDV3',true],
['595994825505', 'The-MikuBot-MDV3',true],
['595976126756', 'The-MikuBot-MDV3',true],
] //Numeros de owner
global.mods = ['']
global.prems = ['595994836199']
global.APIs = { // API Prefix
// name: 'https://website'
nrtm: 'https://fg-nrtm.ddns.net',
fgmods: 'https://api.fgmods.xyz'
}
global.APIKeys = { // APIKey Here
// 'https://website': 'apikey'
'https://api.fgmods.xyz': 'DRLg5kY7' //--- 100 de lรญmite diario --- Regรญstrese en https://api.fgmods.xyz/
}
// Sticker WM
global.packname = '๐๐ก๐-๐๐ข๐ค๐ฎ๐๐จ๐ญ-๐๐'
global.author = '๐ด๐๐๐๐๐๐๐๐๐๐๐๐'
//--info FG
global.botName = '๐๐ก๐-๐๐ข๐ค๐ฎ๐๐จ๐ญ-๐๐๐3'
global.fgig = 'https://www.instagram.com/adri.analegresanchez'
global.fgsc = 'https://github.com/The-DiosBot-MD/The-MikuBot-MDV3'
global.fgyt = 'https://youtube.com/AdrianOficial905'
global.fgpyp = 'https://paypal.me/AdrianOficial'
global.fglog = 'https://i.ibb.co/r7C0TNP/The-Miku-Bot-MD.jpgs'
//--- Grupos WA
global.fgcanal = 'https://whatsapp.com/channel/0029VaGt7Uk6WaKkEDZUh43W'
global.bgp = 'https://chat.whatsapp.com/C92isvspFcXCtqv2PqCfHI'
global.bgp2 = 'https://chat.whatsapp.com/C92isvspFcXCtqv2PqCfHI'
global.bgp3 = 'https://chat.whatsapp.com/C92isvspFcXCtqv2PqCfHI' //--GP NSFW
global.wait = 'โ _Cargando..._\n*โฌโฌโฌโญ*'
global.rwait = 'โ'
global.dmoji = '๐คญ'
global.done = 'โ
'
global.error = 'โ'
global.xmoji = '๐ฅ'
global.multiplier = 69
global.maxwarn = '3' // mรกxima advertencias
let file = fileURLToPath(import.meta.url)
watchFile(file, () => {
unwatchFile(file)
console.log(chalk.redBright("Update 'config.js'"))
import(`${file}?update=${Date.now()}`)
})