-
Notifications
You must be signed in to change notification settings - Fork 18
/
settings.js
53 lines (51 loc) · 1.87 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
43
44
45
46
47
48
49
50
51
52
53
/*
Created By ArxzyDev
My Contact wa.me/6289513081052
*/
const fs = require("fs");
const chalk = require("chalk");
/* ~~~~~~~~~ WEB API ~~~~~~~~~ */
global.lol = ""; // https://api.lolhuman.xyz
global.xzn = ""; // https://xnz.wtf
/* ~~~~~~~~~ SETTINGS OWNER ~~~~~~~~~ */
global.numberowner = "62895347198105"; // Owner Utama
global.owner = ["62895347198105"]; // Owner Lainnya
global.namaowner = "Arifzyn."; // Nama Owner
global.premium = ["62895347198105"]; // Premium User
global.nobot = "62895347198105";
/* ~~~~~~~~~ SETTINGS BOT ~~~~~~~~~ */
global.namabot = "Arifzyn-MD"; // NickBot
global.typemenu = "v2"; // 'v1' > 'v2' > 'v3' > 'v4'
global.typereply = "v1"; // 'v1' > 'v2'
global.autoread = false; // ReadChat
global.autobio = false; // AutoBio
global.autoblok212 = true; // AutoBlock Nomer +212
global.onlyindo = false; // AutoBlock Selain Nomer Indo
global.packname = "Copyright © 2023"; // Watermark Sticker
global.author = "Arifzyn."; // Watermark Sticker
/* ~~~~~~~~~ MESSAGES ~~~~~~~~~ */
global.mess = {
done: "Done ✅",
prem: "Feature Only For User _*PREMIUM*_",
admin: "Feature Only for _*Admin Group*_",
botAdmin:
"Perintah Ini Hanya Bisa Digunakan Ketika Bot Menjadi Admin Group !",
owner: "Feature Only for _*owner*_",
group: "Feature Only for _*Group Chat*_",
private: "Feature Only for _*Private Chat*_",
wait: "Wait a Moment, for Process",
error: "_*Sorry Features Error*_",
};
/* ~~~~~~~~~ THUMBNAIL ~~~~~~~~~ */
global.thumb = fs.readFileSync("./media/quoted.jpg");
global.menu = fs.readFileSync("./media/menu.jpg");
/* ~~~~~~~~~ EDITS LINK ~~~~~~~~~ */
global.link = "https://chat.whatsapp.com/LfBvDxQujrLHihSRI6TCIZ";
/* ~~~~~~~~~ END SYSTEM ~~~~~~~~~ */
let file = require.resolve(__filename);
fs.watchFile(file, () => {
fs.unwatchFile(file);
console.log(chalk.redBright(`Update'${__filename}'`));
delete require.cache[file];
require(file);
});