-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.js
42 lines (36 loc) · 1.06 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
/**
* Made By Fandyyy 🕴️
* Subscribe FBOTZ YT
* Follow https://instagram.com/_nzrlafndi
* Follow https://github.com/FBOTZ-YT
*/
const fs = require('fs')
const chalk = require('chalk')
//Ubah Disini
global.ownerNumber = ['6281540022632','6287877173955','0']
global.ownerName = 'Whatsapp Developer'
global.packname = 'Ichigo Kurosaki'
global.author = 'Whatsapp Bot 2022'
global.prefa = ['','!','.','#','!'] //Ilangin Prefix Yang '' Kalau Gamau No Prefix
global.sessionName = 'sesi'
//Message Nya Ubah Disini
global.mess = {
admin: 'You Are Not Admin!',
botAdmin: 'Bot Not Admin!',
botOwner: 'You Are Not My Owner!',
group: 'Only Group!',
private: 'Only Private Chat',
wait: 'Loading...',
done: 'Done!'
}
//Sesuaikan
global.thumb = fs.readFileSync('./media/ichi.jpeg')
global.donasi = fs.readFileSync('./media/donasi.jpg')
global.thumbnail = fs.readFileSync('./media/ichi.mp4')
let file = require.resolve(__filename)
fs.watchFile(file, () => {
fs.unwatchFile(file)
console.log(chalk.redBright(`Update'${__filename}'`))
delete require.cache[file]
require(file)
})