forked from Prexzybooster/QUEEN-NYX-BOT
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.js
More file actions
61 lines (54 loc) · 2.19 KB
/
settings.js
File metadata and controls
61 lines (54 loc) · 2.19 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
//PREXZY SOLOS
//YouTube: @prexzyvilla
//Telegram: t.me/prexzyvilla_tech
const fs = require('fs')
const chalk = require('chalk')
//owmner v card
global.ytname = "YT: PrexzyVilla" //ur yt chanel name
global.socialm = "IG : prexzy.ay" //ur github or insta name
global.location = "Nigeria" //ur location
//new
global.botname = 'QUEEN NYX👸' //ur bot name
global.ownernumber = '16582044119' //ur owner number
global.ownername = '©Precious Ayomide' //ur owner name
global.websitex = "https://whatsapp.com/channel/0029VapyPnMKAwEk3YuHAb3s" //"https://whatsapp.com/channel/0029VaoNzzlJJhzQTJBL5n0F"
global.wagc = "https://chat.whatsapp.com/EletTHoIrrj2CCPFYfmdVD" //"https://whatsapp.com/channel/0029VaoNzzlJJhzQTJBL5n0F"
global.idch = '120363322892680943@newsletter'
global.themeemoji = '🪀'
global.wm = "NYX👸"
global.botscript = 'https://whatsapp.com/channel/0029VapyPnMKAwEk3YuHAb3s' //'https://whatsapp.com/channel/0029VaoNzzlJJhzQTJBL5n0F' //script link
global.packname = "Queen Nyx👸"
global.author = "Precious Ayomide"
global.creator = "2349159895444@s.whatsapp.net"
global.xprefix = '.'
global.antidelete = true
global.premium = ["2349159895444"] // Premium User
global.hituet = 0
global.chatModeUsers = {}; // Store chat mode status per user
//bot sett
global.typemenu = 'v8' // menu type 'v1' => 'v8'
global.typereply = 'v4' // reply type 'v1' => 'v3'
global.autoblocknumber = '' //set autoblock country code
global.antiforeignnumber = '' //set anti foreign number country code
global.welcome = false //welcome/left in groups
global.anticall = false //bot blocks user when called
global.autoswview = true //auto status/story view
global.adminevent = false //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: 'Succes •'
}
//thumbnail
global.thumb = fs.readFileSync('./PrexzyMedia/theme/nyxpic.jpg')
let file = require.resolve(__filename)
fs.watchFile(file, () => {
fs.unwatchFile(file)
console.log(chalk.redBright(`Update'${__filename}'`))
delete require.cache[file]
require(file)
})