-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathsettings.js
63 lines (56 loc) · 2.97 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
//Credit By HBMods-OFC
const chalk = require("chalk")
const fs = require("fs")
//aumto presence update
global.AntiCallBot = false // false a i dah chuan, rawn call-tu che automatic a block a ni lovang
global.GroupWcMsg = false // false a i dah chuan welcome message i off ang
global.autoTyping = false // true a i dah chuan i type la a lang ang
global.autoRecord = false // true a i dah chuan Voice record angin i lang ang
global.public = true // false ah i dah chuan nang chauhin i hmang thei ang
global.autoread = false // true a i dah chuan message zawng zawng read vek zelin a awm ang
global.autoread_status = false // true a i dah chuan auto status view in a awm ang
global.group_bot = false // false ah i dah chuan groupah admin a nih hunah chuan hman thei a ni ang
// SET UP LANGUAGE >>>>>>
global.default_language = true // If you don't want to use the default language, set it to false
global.mtl_language = false // set to true if you want to using multi language
global.bot_language = 'lus' // support language [English, Mizo, Indonesia, Russian, Hindi, Germany, Brazilian ] Please put the language code only
//______>>>>>>>>>>>>>
//info
global.owner = ['918416093656'] // I phone number in thlak rawh
global.ownernumber = '918416093656' // I phone number in thlak rawh
global.ownername = "꧁Herbert♕꧂" // I hming dah tel bawk la
global.location = "India, Mizoram, Aizawl" // I awmna hmun daha
global.botname = "HBWABot Mizo" // I bot hming tur dah la
global.ownerweb = "https://youtube.com/@HBMods_Channel"
global.themeemoji = '🤖'
global.creator = "[email protected]" // @ symbol hmaa number hi i phone number in thlak rawh
global.ownerNumber = ["[email protected]"]// @ symbol hmaa number hi i phone number in thlak rawh
global.prefixc = ['.'] // Prefix a tana hman theih loh tur symbolise a awm nuala, i bot a work a lo a nih chuan i thlak mai dawn nia
global.sessionName = 'session'
// Sticker Pack Name
global.packname = "Sticker By"
global.author = "HBWABot"
//BUTTON INPUT
global.buttonyt = "SUBSCRIBE"
global.buttonyturl = "https://youtube.com/@HBMods_Channel"
global.buttonig = "Follow Us:)"
global.buttonigurl = "https://www.instagram.com/herbert_suantak2"
//_______________________________________________
global.defaultpp = 'https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_960_720.png?q=60'
//messages
global.mess = {
success: '\n*©HBWABot*!',
admin: 'He features hi chu admin-te chauh hman thei tur a siam a ni!',
botAdmin: 'Admin-ah min dah hmasa phawt la chuan ka ti thei ang!',
owner: 'He features hi a neitu chauh hman thei tura siam a ni!',
group: 'Hei chu group-ah chauh hman thei tura siam a ni!',
private: 'Hei chu private chat-ah chauh hman thei tura siam a ni!',
bot: 'Hei chu kei mah chauh hman thei tur a siam a ni',
}
let file = require.resolve(__filename)
fs.watchFile(file, () => {
fs.unwatchFile(file)
console.log(chalk.redBright(`Update'${__filename}'`))
delete require.cache[file]
require(file)
})