-
Notifications
You must be signed in to change notification settings - Fork 2.8k
/
Copy pathconfig.js
59 lines (53 loc) · 2.12 KB
/
config.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
//═══════[© 2022 nexusNw Inc.]════════\\
//
//
// 𝙰𝚜𝚝𝚊 𝚋𝚢 𝚗𝚎𝚡𝚞𝚜𝚗𝚠
//
// 𝚆𝚑𝚊𝚝𝚜𝚊𝚙𝚙-𝙼𝙳 𝙱𝚘𝚝
//
//═══════[modules]════════\\
const fs = require('fs')
const chalk = require('chalk')
//═══════[api website]════════\\
global.APIs = {
zenz: 'https://zenzapis.xyz', //credit zenz, thank you so much bro <3
}
//═══════[api key of the website]════════\\
global.APIKeys = {
'https://zenzapi.xyz': 'd6295ca53e', //Change This API KEY
}
//═══════[modification]════════\\
global.owner = ['918129624395','919037058796'] //owner number, u can put multiple owner number, within quotations and seperated by comma.
global.pemilik = ['918129624395'] //another owner number
global.premium = ['918129624395'] //premium number
global.pengguna = 'Nexus' //username
global.botnma = 'Asta-md' //bot name
global.ownernma = '👻Airboy Nexus' //owner name
global.packname = 'Asta Md' //sticker package name
global.author = 'By Air Boy Nexus' //sticker author name
global.sessionName = 'session' //session name
global.prefa = ['#','!','/',''] //prefix
global.sp = '⭔' //design
global.mess = {
success: 'Done ✓',
admin: 'This Feature Is Only For Admin!',
botAdmin: 'Bot Must Be Admin First!',
owner: 'This Feature Is Only For Owner',
group: 'Feature Used Only For Groups!',
private: 'Features Used Only For Private Chat!',
bot: 'This feature in only for the bot number',
wait: 'In process...',
endLimit: 'Your Daily Limit Has Expired, The Limit Will Be Reset Every 12 Hours',
}
global.limitawal = {
premium: "Infinity", //premium user limit
free: 28 //free user limit
}
global.thumb = fs.readFileSync('./NexusMedia/astapic.jpg')
let file = require.resolve(__filename)
fs.watchFile(file, () => {
fs.unwatchFile(file)
console.log(chalk.redBright(`Update'${__filename}'`))
delete require.cache[file]
require(file)
})