-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsettings.js
More file actions
75 lines (63 loc) · 2.27 KB
/
settings.js
File metadata and controls
75 lines (63 loc) · 2.27 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
72
73
74
75
//base by DGXeon (Xeon Bot Inc.)
//re-upload? recode? copy code? give credit ya :)
//YouTube: http://www.youtube.com/@techgod143
//Instagram: @techgod143
//Telegram: t.me/techgod143
//GitHub: @techgod143
//WhatsApp: +917466008456
//want more free bot scripts? subscribe to my youtube channel: https://youtube.com/@techgod143
const fs = require('fs')
const chalk = require('chalk')
//contact details
global.ownernomer = "2349030155629"
global.ownername = "𝚡𝚊𝚗𝚍.𝚊𝚛𝚛😘"
global.ytname = "YT: Tech God"
global.socialm = "GitHub: techgod143"
global.location = "???, UP, france"
global.ownernumber = '2349030155629' //creator number
global.ownername = '𝚡𝚊𝚗𝚍.𝚊𝚛𝚛' //owner name
global.botname = 'Tech God V4' //name of the bot
//sticker details
global.packname = 'Sticker By'
global.author = '🦄𝚡𝚊𝚗𝚍.𝚊𝚛𝚛\n\nContact: +917466008456'
//console view/theme
global.themeemoji = '🪀'
global.wm = "Tech God V4 Bot Inc."
//theme link
global.link = 'https://whatsapp.com/channel/0029Va9Ufzi8kyyEnEHvOm1h'
//custom prefix
global.prefa = [',']
//false=disable and true=enable
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.anti92 = false //auto block +92
global.autoswview = true //auto view status/story
//menu type
//v1 is image menu,
//v2 is link + image menu,
//v3 is video menu,
//v4 is call end menu
global.typemenu = 'v2'
//reply messages
global.mess = {
done: 'Done !',
prem: 'This feature can be used by Tech God or premium user only',
admin: 'This feature can be used by Tech God or admin only',
botAdmin: 'This feature can only be used when the bot is a group admin ',
owner: 'This feature can be used by Tech God or 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('./XeonMedia/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)
})