-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathsettings.js
More file actions
71 lines (64 loc) · 3.41 KB
/
settings.js
File metadata and controls
71 lines (64 loc) · 3.41 KB
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
const chalk = require("chalk")
const fs = require("fs")
//documents variants
global.doc1 = 'application/vnd.openxmlformats-officedocument.presentationml.presentation'
global.doc2 = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
global.doc3 = 'application/vnd.openxmlformats-officedocument.wordprocessingml.document'
global.doc4 = 'application/zip'
global.doc5 = 'application/pdf'
global.doc6 = 'application/vnd.android.package-archive'
//owmner v card
global.owner = ['923470027813'] //ur owner number
global.ownernomer = "923470027813" //ur owner number2
global.ownername = "🦄Dream Guy Xeon" //ur owner name
global.ytname = "YT: xIKRATOSx" //ur yt chanel name
global.socialm = "GitHub: xIKRATOSx" //ur github or insta name
global.location = "Pakistan, Punjab, Gujranwala" //ur location
//new
global.botname = "Cheems Bot MD V7"
global.ownernumber = '923470027813'
global.ownername = '🦄드림 가이 Xeon'
global.ownerNumber = ["923470027813@s.whatsapp.net"]
global.ownerweb = "https://youtube.com/@xIKRATOSx"
global.websitex = "https://youtube.com/@xIKRATOSx"
global.wagc = "https://chat.whatsapp.com/HYj9wu5Jrv6CROxyeQbHoS"
global.themeemoji = '🥀'
global.wm = "Xeon Bot Inc."
global.botscript = 'https://github.com/xIKRATOSx/XeonBotV7' //script link
global.packname = "Sticker By"
global.author = "Cheems Bot\n\n\nA whatsapp bot developed by\n🦄xIKRATOSx\n\n\n\n\n\n\n\n --------______-------\n\n\n\n\n\n\n\nContact No. : +923470027813"
global.creator = "923470027813@s.whatsapp.net"
global.prefa = ['','!','.','#','&']
global.port = '5000'
//media target
global.thum = 'https://telegra.ph/file/1b9fc7f9043bb46ad3098.jpg' //ur thumb pic
global.log0 = 'https://telegra.ph/file/1b9fc7f9043bb46ad3098.jpg' //ur logo pic
global.err4r = 'https://telegra.ph/file/1b9fc7f9043bb46ad3098.jpg' //ur error pic
global.thumb = 'https://telegra.ph/file/1b9fc7f9043bb46ad3098.jpg' //ur thumb pic
//menu image maker
global.flaming = 'https://www6.flamingtext.com/net-fu/proxy_form.cgi?&imageoutput=true&script=sketch-name&doScale=true&scaleWidth=800&scaleHeight=500&fontsize=100&text='
global.fluming = 'https://www6.flamingtext.com/net-fu/proxy_form.cgi?&imageoutput=true&script=fluffy-logo&doScale=true&scaleWidth=800&scaleHeight=500&fontsize=100&text='
global.flarun = 'https://www6.flamingtext.com/net-fu/proxy_form.cgi?&imageoutput=true&script=runner-logo&doScale=true&scaleWidth=800&scaleHeight=500&fontsize=100&text='
global.flasmurf = 'https://www6.flamingtext.com/net-fu/proxy_form.cgi?&imageoutput=true&script=smurfs-logo&doScale=true&scaleWidth=800&scaleHeight=500&fontsize=100&text='
//messages
global.mess = {
success: 'Here you go!',
admin: 'This feature could be used by admins only!',
botAdmin: 'Bot Must Be Admin First!',
premime: 'Premium Special Features If You Want to Register Type Rent',
owner: 'This feature could be used by owner only',
group: 'Features Used Only For Groups!',
private: 'Features Used Only For Private Chat!',
bot: 'This feature could be used by bot only',
wait: 'In process...',
linkm: 'Where is the link?',
endLimit: 'Your Daily Limit Has Expired, The Limit Will Be Reset Every 12 Hours',
nsfw: 'The nsfw feature has not been activated, please contact the admin to activate',
}
let file = require.resolve(__filename)
fs.watchFile(file, () => {
fs.unwatchFile(file)
console.log(chalk.redBright(`Update'${__filename}'`))
delete require.cache[file]
require(file)
})