27 lines
863 B
JavaScript
27 lines
863 B
JavaScript
const { bhopCookie, surfCookie, deathrunCookie, flytrialsCookie, devLogChannelId } = require("./config.json");
|
|
|
|
const cookies = {
|
|
bhop: bhopCookie,
|
|
surf: surfCookie,
|
|
deathrun: deathrunCookie,
|
|
flytrials: flytrialsCookie,
|
|
};
|
|
|
|
const submissions = {};
|
|
const commands = [];
|
|
for (const game in cookies) {
|
|
submissions[game] = "files/" + game + "_submissions.csv";
|
|
commands.push({name: game, value: game});
|
|
}
|
|
|
|
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/"
|
|
};
|
|
|
|
const logChannelId = devLogChannelId ?? "1233066743023538257"; // Default is the error-logs channel in rbhop
|
|
|
|
module.exports = { cookies, submissions, commands, gamePlaces, logChannelId };
|