-
Notifications
You must be signed in to change notification settings - Fork 1
/
setting.js
59 lines (46 loc) · 1.71 KB
/
setting.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
/**
* @project_name : Heavy-Craft
* @authors : Rizky Maulana
* @instagram : rizkymaulanasidikk
* @description : HeavyCraft ,A Multi-functional whatsapp user bot.
* @version 1.3.6b
* Created By Rizky Maulana.
* © 2025 Heavy-Craft.
*/
const { watchFile, unwatchFile, readFileSync } = require('fs');
const moment = require('moment-timezone');
const path = require('path');
const timeZone = 'Asia/Jakarta';
const tempName = 'temp';
moment.locale('es');
const website = {
web: 'https://api.rzky.my.id',
apikey: 'xxxx' // ambil apikey nya di website https://api.rzky.my.id
}
const toko = {
merchantid: 'xxxxxxx', // ambil merchantid nya di website tokopay.id
secret: 'xxxxxx' // ambil secret key nya di website tokopay.id
}
const owner = [
['6281281872699', 'ʜᴇᴀᴠʏ ᴄʀᴀꜰᴛ'],
];
const menu = {
playstore: readFileSync('././storage/media/media/playstore.jpg'),
soundcloud: readFileSync('././storage/media/media/soundcloud.png'),
steam: readFileSync('././storage/media/media/steam.png'),
pornhub: readFileSync('././storage/media/media/pornhub.png'),
bedrock: readFileSync('././storage/media/media/bedrock.png'),
xnxx: readFileSync('././storage/media/media/xnxx.png'),
xvideos: readFileSync('././storage/media/media/xvideos.png')
}
const sticker = {
author: '© ʜᴇᴀᴠʏ ᴄʀᴀꜰᴛ',
name: 'Sticker by'
}
const defaultPrefix = ['/', '!', '#', '.', '-', 's!', '', '🪶'];
global.tempDir = path.resolve(`./${tempName}`);
global.img = {
avatar: readFileSync('././storage/media/image/avatar.jpg'),
cover: readFileSync('././storage/media/image/cover.jpg')
}
module.exports = { timeZone, owner, website, defaultPrefix, menu, toko, sticker };