forked from nazedev/hitori
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.js
More file actions
85 lines (72 loc) · 2.92 KB
/
settings.js
File metadata and controls
85 lines (72 loc) · 2.92 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
76
77
78
79
80
81
82
83
84
85
const fs = require('fs');
const chalk = require('chalk');
/*
* Create By Naze
* Follow https://github.com/nazedev
* Whatsapp : https://whatsapp.com/channel/0029VaWOkNm7DAWtkvkJBK43
*/
//~~~~~~~~~~~~< GLOBAL SETTINGS >~~~~~~~~~~~~\\
global.owner = ['6289520169515','62895613569304'] //['628','628'] 2 owner atau lebih
global.packname = 'RAJA [ 69304 ]'
global.author = '© 2025\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n'
global.botname = 'Naze Bot'
global.listprefix = ['+','!','.']
global.listv = ['•','●','■','✿','▲','➩','➢','➣','➤','✦','✧','△','❀','○','□','♤','♡','◇','♧','々','〆']
global.tempatDB = 'database.json' // Taruh url mongodb di sini jika menggunakan mongodb. Format : 'mongodb+srv://...'
global.tempatStore = 'baileys_store.json' // Taruh url mongodb di sini jika menggunakan mongodb. Format : 'mongodb+srv://...'
global.pairing_code = true
global.number_bot = '' // Kalo pake panel bisa masukin nomer di sini, jika belum ambil session. Format : '628xx'
global.fake = {
anonim: 'https://telegra.ph/file/95670d63378f7f4210f03.png',
thumbnailUrl: 'https://telegra.ph/file/fe4843a1261fc414542c4.jpg',
thumbnail: fs.readFileSync('./src/media/naze.png'),
docs: fs.readFileSync('./src/media/fake.pdf'),
listfakedocs: ['application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','application/vnd.openxmlformats-officedocument.presentationml.presentation','application/vnd.openxmlformats-officedocument.wordprocessingml.document','application/pdf'],
}
global.my = {
yt: 'https://youtube.com/c/Nazedev',
gh: 'https://github.com/nazedev',
gc: 'https://chat.whatsapp.com/B5qJIwZHm4VEYZJQE6iMwy',
ch: '120363250409960161@newsletter',
}
global.limit = {
free: 20,
premium: 999,
vip: 9999
}
global.money = {
free: 10000,
premium: 1000000,
vip: 10000000
}
global.mess = {
key: 'Apikey mu telah habis silahkan kunjungi\nhttps://my.hitori.pw',
owner: 'Fitur Khusus Owner!',
admin: 'Fitur Khusus Admin!',
botAdmin: 'Bot Bukan Admin!',
group: 'Gunakan Di Group!',
private: 'Gunakan Di Privat Chat!',
limit: 'Limit Anda Telah Habis!',
prem: 'Khusus User Premium!',
wait: 'Loading...',
error: 'Error!',
done: 'Done'
}
global.APIs = {
hitori: 'https://api.hitori.pw',
}
global.APIKeys = {
'https://api.hitori.pw': 'htrkey-77eb83c0eeb39d40',
geminiApikey: ['AIzaSyD0lkGz6ZhKi_MHSSmJcCX3wXoDZhELPaQ','AIzaSyDnBPd_EhBfr73NssnThVQZYiKZVhGZewU','AIzaSyA94OZD-0V4quRbzPb2j75AuzSblPHE75M','AIzaSyB5aTYbUg2VQ0oXr5hdJPN8AyLJcmM84-A','AIzaSyB1xYZ2YImnBdi2Bh-If_8lj6rvSkabqlA']
}
// Lainnya
global.badWords = ['tolol','goblok','asu','pantek','kampret','ngentot','jancok','kontol','memek','lonte']
global.chatLength = 1000
//~~~~~~~~~~~~~~~< PROCESS >~~~~~~~~~~~~~~~\\
let file = require.resolve(__filename)
fs.watchFile(file, () => {
fs.unwatchFile(file)
console.log(chalk.redBright(`Update ${__filename}`))
delete require.cache[file]
require(file)
});