-
Notifications
You must be signed in to change notification settings - Fork 0
/
Config.js
60 lines (49 loc) Β· 1.94 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
60
const fs = require('fs')
const chalk = require('chalk')
//contact details
global.ownername = "π©ββΓπΓ¨π π»Γ¬πΓΉβπͺ"//owner name
global.ownernumber = ['918536881026']
global.ytname = "YT: piku090909Botz.inc"
global.socialm = "GitHub: piku090909"
global.location = "Indian"
global.botname = 'π©ββΓπΓ¨π π»Γ¬πΓΉβπͺ' //name of the bot
//sticker details
global.stickername = 'π©ββΓπΓ¨π π»Γ¬πΓΉβπͺ'
global.packname = 'Sticker By'
global.author = 'π©ββΓπΓ¨π π»Γ¬πΓΉβπͺ'
//console view/theme
global.themeemoji = 'π§©'
global.wm = "piku090909 botz inc."
//theme link
global.link = ''
//custom prefix
global.prefa = ['.']
//false=disable and true=enable
global.welcome = true //auto welcome
global.autoRecording = true //auto recording
global.autoTyping = false //auto typing
global.autorecordtype = false //auto typing + recording
global.autoread = false //auto read messages
global.autobio = true //auto update bio
global.anti212 = true //auto block +212
global.autoread_status = false //auto view status/story
//reply messages
global.mess = {
done: '*here you go!* \n\n*π©ββΓπΓ¨π π»Γ¬πΓΉβπͺ*\n\n*π©ββΓπΓ¨π π»Γ¬πΓΉβπͺ Bot link:* \nhttps://github.com/piku090909/ALEX-PIKU-V1 bot\n',
prem: '*This feature can be used by premium user only*',
admin: '*This feature can be used by admin only*',
botAdmin: '*This feature can only be used when the bot is a group admin* ',
owner: '*This feature can be used by owner only*',
group: '*This feature is only for groups*',
private: '*This feature is only for private chats*',
wait: '*In process...* ',
error: '*Error!*',
}
global.thumb = fs.readFileSync('./Gallery/thumb.jpg')
let file = require.resolve(__filename)
fs.watchFile(file, () => {
fs.unwatchFile(file)
console.log(chalk.redBright(`Update'${__filename}'`))
delete require.cache[file]
require(file)
})