forked from andymrlit/XKY-BOT-V2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.js
57 lines (52 loc) · 1.92 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
//base by andy_mr_lit
//re-upload? recode? copy code? give credit bro :)
//YouTube: @Mrlit
const fs = require('fs')
const chalk = require('chalk')
//owmner v card
global.ytname = "YT: andymd" //ur yt chanel name
global.socialm = "GitHub: andymrlit" //ur github or insta name
global.location = "Haïti, USA" //ur location
//new
global.botname = 'XKY BOT MD' //ur bot name
global.ownernumber = '50943772445' //ur owner number
global.ownername = '🍁🎶𝑀𝑅_𝑂𝐿𝐼 🔱' //ur owner name
global.websitex = "https://www.youtube.com/@andymd"
global.wagc = "https://chat.whatsapp.com/Cf1q8yZsEMlIfrZkCeHeQH"
global.themeemoji = '🪀'
global.wm = "XKY Bot Inc."
global.ram_usage = 900000000
global.botscript = 'https://github.com/andymrlit/XKYV2' //script link
global.packname = "Sticker By"
global.author = "TEAM XKY BOT"
global.creator = "17862755061@s.whatsapp.net"
global.xprefix = '.'
global.premium = ["17862755061"] // Premium User
global.hituet = 0
//bot sett
global.typemenu = 'v3' // evite chnje sa
global.typereply = 'v1' // pa change sa pou pa bay ere
global.autoblocknumber = '92' //set autoblock country code
global.antiforeignnumber = '62' //set anti foreign number country code
global.welcome = false //welcome/left in groups
global.anticall = false //bot blocks user when called
global.autoswview = false //auto status/story view
global.adminevent = true //show promote/demote message
global.groupevent = false //show update messages in group chat
//msg
global.mess = {
limit: 'Your limit is up!',
nsfw: 'Nsfw is disabled in this group, Please tell the admin to enable',
done: 'Done✓',
error: 'Error!',
success: 'THANKS FOR USING XKY BOT!'
}
//thumbnail
global.thumb = fs.readFileSync('./XeonMedia/theme/cheemspic.jpg')
let file = require.resolve(__filename)
fs.watchFile(file, () => {
fs.unwatchFile(file)
console.log(chalk.redBright(`Update'${__filename}'`))
delete require.cache[file]
require(file)
})