-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathconfig.js
68 lines (57 loc) · 3.49 KB
/
config.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
/*▓██ ██▓ ▄▄▄ ██ ▄█▀▄▄▄
▒██ ██▒▒████▄ ██▄█▒▒████▄
▒██ ██░▒██ ▀█▄ ▓███▄░▒██ ▀█▄
░ ▐██▓░░██▄▄▄▄██ ▓██ █▄░██▄▄▄▄██
░ ██▒▓░ ▓█ ▓██▒▒██▒ █▄▓█ ▓██▒
██▒▒▒ ▒▒ ▓▒█░▒ ▒▒ ▓▒▒▒ ▓▒█░
▓██ ░▒░ ▒ ▒▒ ░░ ░▒ ▒░ ▒ ▒▒ ░
▒ ▒ ░░ ░ ▒ ░ ░░ ░ ░ ▒
░ ░ ░ ░░ ░ ░ ░
░ ░
Hello,
Thanks for using Yaka bot.
I am,
██╗ ██╗ █████╗ ██╗ ██╗ █████╗ ███████╗██╗ ██╗██╗
╚██╗ ██╔╝██╔══██╗██║ ██╔╝██╔══██╗██╔════╝██║ ██║██║
╚████╔╝ ███████║█████╔╝ ███████║███████╗███████║██║
╚██╔╝ ██╔══██║██╔═██╗ ██╔══██║╚════██║██╔══██║██║
██║ ██║ ██║██║ ██╗██║ ██║███████║██║ ██║██║
╚═╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═╝
*/
require("dotenv").config();
const mongoose = require('mongoose');
mongoose.set('strictQuery', true);
let gg = process.env.MODS;
if (!gg) {
gg = "94774516277"; // You can Change this number //
}
// -------------------------------------------------------------- //
global.owner = gg.split(",");
global.mongodb = process.env.MONGODB || "mongodb+srv://ThatOneGirlWithBigBootyAndBoobs2023:SendMeUrBoobsPic4535@cluster2023.bblquhi.mongodb.net/?retryWrites=true&w=majority"; // paste your own MongoDB url..
global.sessionId = process.env.SESSION_ID || "ok";
global.prefa = process.env.PREFIX || ".";
global.tenorApiKey =
process.env.TENOR_API_KEY || "AIzaSyCAYZ930Rq1EFiRNRJuSeGGrKljCnOb8-U"; // paste Your own Api Key..
global.packname = process.env.PACKNAME || `👹 𝕐𝕒𝕜𝕒ᵐᵈ`;
global.author = process.env.AUTHOR || "by: 𝖄𝖆𝖐𝖆𝖘𝖍𝖎";
global.port = process.env.PORT || "8000";
module.exports = {
mongodb: global.mongodb,
};
// ---------------------Do Not Modify this part------------------- //
global.mess = {
jobdone: "Job done...",
useradmin: "Sorry, only *Group Admins* can use this command *Baka*!",
botadmin:
"Sorry, i cant execute this command without being an *Admin* of this group.",
botowner: "Only my *Owner* can use this command, Baka!",
grouponly: "This command is only made for *Groups*, Baka!",
privateonly: "This command is only made for *Private Chat*, Baka!",
botonly: "Only the *Bot itself* can use this command!",
waiting: "Chotto Matte...",
nolink: "Please provide me *link*, Baka!",
error: "An error occurd!",
banned: `You are *Banned* fron using commands! \n\nType *${prefa}owner* or *${prefa}support* to submit a request to unban yourself !`,
bangc: "This Group is *Banned* from using Commands!",
nonsfw: "Dont be a pervert Baka! This is not a NSFW enabled group!",
};