-
Notifications
You must be signed in to change notification settings - Fork 118
/
Copy pathbot.js
79 lines (75 loc) · 2.43 KB
/
bot.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
// ⧈⧈⧈⧈⧈⧈⧈⧈⧈⧈⧈⧈⧈⧈⧈⧈⧈⧈⧈⧈⧈⧈⧈
//▮ZIM BOT INC 2022 ®️ALL RIGHTS RESERVED
//▮
//▮FORK AND DON'T FORGET TO GIVE A STAR
//▮
//▮ZimBotInc SOFTWARE IS UNDER UZ COPYRIGHT
//▮
//▮REPORT ABUSE OF ZimBotInc SOFTWARE EMAIL US
//▮WHATSAPP US : +44 7441 437150
//▮YOUTUBE CHANNELL: https://youtube.com/c/DRIPSOFC
//▮
//╰▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
//
//┏━━━━━━━━━━━━━━━━━━━━━━━━━
//┃ZimBotInc SOFTWARE INCLUDES
//┃SOME ENCRYPTED FILES
//┃
//┃THANKS FOR CHOOSING ZIMBOT
//┃THANKS TO DIKA ARDNT
//┗━━━━━━━━━━━━━━━━━━━━━━━━━
const fs = require('fs')
const chalk = require('chalk')
//global apis
global.APIs = {
zenz: 'https://zenzapi.xyz',
}
//global apikeys
global.APIKeys = {
'https://zenzapi.xyz': '805a6c3fa9', //api keys from zenzi
}
//settings
global.owner = ['27634090203',''] //owner number +27634090203
global.pemilik = ['27634090203'] //owner number +27634090203
global.premium = ['27634090203'] //premium number +27634090203
global.pengguna = 'Drips' //username
global.footer = 'ZIM BOT INC'
global.botnma = 'ZIM BOT INC' //bot name
global.ownernma = 'Drips' //owner name
global.packname = 'Drips' //sticker package name
global.author = 'By Drips Memes' //sticker author name
global.sessionName = 'session' //session name
global.prefa = ['#','!','/',''] //prefix
global.sp = '🔵' //sp
global.mess = {
success: 'Takaenda Done!',
admin: '*This feature is only for admin!*',
botAdmin: '*zim bot must be admin first!*',
owner: '*this feature is only for zimbot owner*',
group: '*Feature is only for groups!*',
private: 'Features Used Only For Private Chat!',
bot: 'This feature in only for the bot number',
wait: '*whoa wait a moment zim bot proccessing*',
endLimit: '*Your daily limit has expired the limit will be reseted every 12 hours*',
}
global.limitawal = {
premium: "Infinity", //premium user limit
free: 100000 //free user limit
}
global.rpg = {
darahawal: 100,
besiawal: 15,
goldawal: 10,
emeraldawal: 5,
umpanawal: 5,
potionawal: 1
}
global.thumb = fs.readFileSync('./Zimbot/drips.jpg')
let file = require.resolve(__filename)
fs.watchFile(file, () => {
fs.unwatchFile(file)
console.log(chalk.redBright(`Update'${__filename}'`))
delete require.cache[file]
require(file)
})