2024-04-25 17:33:55 +00:00
|
|
|
const { bhopCookie, surfCookie, deathrunCookie, flytrialsCookie, devLogChannelId } = require("./config.json");
|
2024-04-24 06:28:07 +00:00
|
|
|
|
2023-03-08 20:37:40 +00:00
|
|
|
const cookies = {
|
|
|
|
bhop: bhopCookie,
|
|
|
|
surf: surfCookie,
|
|
|
|
deathrun: deathrunCookie,
|
2023-03-08 21:11:43 +00:00
|
|
|
flytrials: flytrialsCookie,
|
2023-03-08 20:37:40 +00:00
|
|
|
};
|
2024-04-24 06:28:07 +00:00
|
|
|
|
2023-03-08 20:37:40 +00:00
|
|
|
const submissions = {};
|
|
|
|
const commands = [];
|
|
|
|
for (const game in cookies) {
|
|
|
|
submissions[game] = "files/" + game + "_submissions.csv";
|
|
|
|
commands.push({name: game, value: game});
|
|
|
|
}
|
2024-04-24 06:28:07 +00:00
|
|
|
|
|
|
|
const gamePlaces = {
|
|
|
|
bhop: "https://www.roblox.com/games/517201717/",
|
|
|
|
surf: "https://www.roblox.com/games/517206177/",
|
|
|
|
deathrun: "https://www.roblox.com/games/6870563649/",
|
|
|
|
flytrials: "https://www.roblox.com/games/12724901535/"
|
|
|
|
};
|
|
|
|
|
2024-04-25 17:33:55 +00:00
|
|
|
const logChannelId = devLogChannelId ?? "1233066743023538257"; // Default is the error-logs channel in rbhop
|
|
|
|
|
|
|
|
module.exports = { cookies, submissions, commands, gamePlaces, logChannelId };
|