-
Notifications
You must be signed in to change notification settings - Fork 243
/
settings.js
113 lines (98 loc) · 5.51 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
//══════════════════════════════════════════════════════════════════════════════════════════════════════//
// //
// 𝗫𝗟𝗜𝗖𝗢𝗡-𝗩𝟰-𝗠𝗗 𝐁𝐎𝐓 //
// //
// V:4.0 //
// //
// //
// ██╗ ██╗██╗ ██╗ ██████╗ ██████╗ ███╗ ██╗ ██╗ ██╗██╗ ██╗ //
// ██╗██╔╝██║ ██║██╔════╝██╔═══██╗████╗ ██║ ██║ ██║██║ ██║ //
// ╚███╔╝ ██║ ██║██║ ██║ ██║██╔██╗ ██║█████╗██║ ██║███████║ //
// ██╔██╗ ██║ ██║██║ ██║ ██║██║╚██╗██║╚════╝╚██╗ ██╔╝╚════██║ //
// ██╔╝ ██╗███████╗██║╚██████╗╚██████╔╝██║ ╚████║ ╚████╔╝ ██║ //
// ═╝ ╚═╝╚══════╝╚═╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═══╝ ╚═══╝ ╚═╝ //
// //
// //
// //
//══════════════════════════════════════════════════════════════════════════════════════════════════════//
//*
// * @project_name : XLICON-V4-MD
// * @author : salmanytofficial
// * @youtube : https://www.youtube.com/@s4salmanyt
// * @description : XLICON-V4 ,A Multi-functional whatsapp user bot.
//*
//*
//base by DGXeon
//re-upload? recode? copy code? give credit ya :)
//Instagram: ahmmikun
//Telegram: t.me/ahmmitech
//GitHub: @salmanytofficial
//WhatsApp: +923184070915
//want more free bot scripts? subscribe to my youtube channel: https://youtube.com/@DGXeon
// * Created By Github: DGXeon.
// * Credit To Xeon
// * © 2024 XLICON-V3-MD.
// ⛥┌┤
// */
const fs = require('fs');
const chalk = require('chalk');
//owmner v card
global.ytname = "YT: S4 SALMAN YT" //ur yt chanel name
global.socialm = "GitHub: salmanytofficial" //ur github or insta name
global.location = "Pakistan, Lahore, Sabzazar" //ur location
//new
global.botname = 'XLICON-V4-MD' //ur bot name
global.ownernumber = ['923184070915'] //ur owner number, dont add more than one
global.ownername = '𝙎𝙖𝙡𝙢𝙖𝙣 𝘼𝙝𝙢𝙖𝙙' //ur owner name
global.websitex = "https://youtube.com/@s4salmanyt"
global.wagc = "https://whatsapp.com/channel/0029VaINgEZK0IBaK1nDtE3f"
global.themeemoji = '⛩'
global.wm = "Xlicon Bot Inc."
global.botscript = 'https://github.com/salmanytofficial/XLICON-V4-MD' //script link
global.packname = "𝘼𝙃𝙃𝙈𝙄 𝙆𝙐𝙉"
global.author = "MΛDΣ BY 𝙎𝘼𝙇𝙈𝘼𝙉 𝘼𝙃𝙈𝘼𝘿"
global.creator = "[email protected]"
global.xprefix = '.'
global.premium = ["923184070915"] // Premium User
//bot sett
global.typemenu = 'v12' // menu type 'v1' => 'v12'
global.typereply = 'v4' // reply type 'v1' => 'v4'
global.autoblocknumber = '212' //set autoblock country code
global.antiforeignnumber = '91' //set anti foreign number country code
global.antidelete = false //set anti delete
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)
});