forked from kingiem/GLOBAL-MD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.js
79 lines (65 loc) · 2.08 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
const fs = require('fs');
const chalk = require('chalk');
//owmner v card
global.ytname = "YT: GlobalTechInfo" //ur yt chanel name
global.socialm = "GitHub: GlobalTechInfo" //ur github or insta name
global.location = "Pakistan, Karachi, Karachi" //ur location
//new
global.botname = '© 𝐆𝐋𝐎𝐁𝐀𝐋-𝐌𝐃' //ur bot name
global.ownernumber = ['923444844060'] //ur owner number, dont add more than one
global.ownername = '© GlobalTechInfo' //ur owner name
global.websitex = "https://www.youtube.com/@GlobalTechInfo"
global.wagc = "https://whatsapp.com/channel/0029VagJIAr3bbVBCpEkAM07"
global.themeemoji = '🪀'
global.wm = "Xeon Bot Inc."
global.botscript = 'https://github.com/GlobalTechInfo/GLOBAL-MD' //script link
global.packname = "Sticker By"
global.author = "GlobalTechInfo\n\n+923444844060"
global.creator = "[email protected]"
global.xprefix = '.'
global.premium = ["923444844060"] // Premium User
//channel id
global.xchannel = {
jid: '120363319098372999@newsletter'
}
//bot sett
global.typemenu = 'v12' // menu type 'v1' => 'v12'
global.typereply = 'v4' // reply type 'v1' => 'v4'
global.autoblocknumber = '91' //set autoblock country code
global.antiforeignnumber = '91' //set anti foreign number country code
global.listv = ['•','●','■','✿','▲','➩','➢','➣','➤','✦','✧','△','❀','○','□','♤','♡','◇','♧','々','〆']
global.tempatDB = 'database.json'
global.limit = {
free: 100,
premium: 999,
vip: 'VIP'
}
global.uang = {
free: 10000,
premium: 1000000,
vip: 10000000
}
global.mess = {
error: 'Error!',
nsfw: 'Nsfw is disabled in this group, Please tell the admin to enable',
done: 'Done'
}
global.bot = {
limit: 0,
uang: 0
}
global.game = {
suit: {},
menfes: {},
tictactoe: {},
kuismath: {},
tebakbom: {},
}
//~~~~~~~~~~~~~~~< PROCESS >~~~~~~~~~~~~~~~\\
let file = require.resolve(__filename)
fs.watchFile(file, () => {
fs.unwatchFile(file)
console.log(chalk.redBright(`Update ${__filename}`))
delete require.cache[file]
require(file)
});