maptest-bot/config/config.js

27 lines
863 B
JavaScript
Raw Permalink Normal View History

const { bhopCookie, surfCookie, deathrunCookie, flytrialsCookie, devLogChannelId } = require("./config.json");
const cookies = {
bhop: bhopCookie,
surf: surfCookie,
deathrun: deathrunCookie,
2023-03-08 21:11:43 +00:00
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 };