diff --git a/Config/config.json b/Config/config.json index f8aa7e7..0d3a3ba 100644 --- a/Config/config.json +++ b/Config/config.json @@ -18,8 +18,8 @@ "gameServerIP": "127.0.0.1:7777", "//": "For 'BattlePassSeason' enter only the number of your season (from 2 to 10)", - "EnableBattlepass": false, - "BattlePassSeason": 2, + "bEnableBattlepass": false, + "bBattlePassSeason": 2, "//": "If bCompletedSeasonalQuests is set to 'true' it will set all quests except daily quests as completed", "bCompletedSeasonalQuests": false diff --git a/README.md b/README.md index 6e9c967..fc2ca83 100644 --- a/README.md +++ b/README.md @@ -1,50 +1,9 @@ -
- ZEROSCP RP ITA -
- ---- - -
- DISCORD - REGOLAMENTO COMPLETO -
- -
- INFORMAZIONI GENERICHE -
- -ZeroSCP è un server nato per gioco tra amici che punta a far divertire i loro giocatori in un contesto di Full RP sano. Ricordiamo di evitare qualsiasi mancanza di rispetto, in modo da garantire un ambiente sereno. - ---- - -
- REGOLAMENTO BREVE -
- -1. Bisogna essere sempre in Full RP. -2. Vietato insultare i giocatori, il server e lo staff. -3. Vietato fare Metagame, Fail RP, NoFear, Powergame e Teamkill. -4. Vietato Camperare per più di 5 minuti in una stanza (2 minuti da SCP) -5. Vietato Trollare. -6. Vietato fare suoni fastidiosi nel microfono (urlare, soffiare, soundboard, canzoni, ecc…) - ---- - -
-
Owner:
-
Raffymimi
-
! Burlone:tm:
- -
-
Manager:
-
Peppe
- -
-
SrAdmin:
-
LolloDJ
- -
-
Developer:
-
Raffymimi
-
! Burlone:tm:
-
\ No newline at end of file +# Reload Backend + +![Banner](https://imgur.com/a/mjh8D4B) + +Reload Backend is a universal Fortnite private server backend written in JavaScript + +Created by Burlone, This is a modded backend, all main backend credits to lawin + +(Missions only work on s8, daily missions working on all versions) \ No newline at end of file diff --git a/routes/mcp.js b/routes/mcp.js index adb234f..89943f7 100644 --- a/routes/mcp.js +++ b/routes/mcp.js @@ -496,7 +496,6 @@ app.post("/fortnite/api/game/v2/profile/*/client/FortRerollDailyQuest", verifyTo }) }); -// NIGGER CODE app.post("/fortnite/api/game/v2/profile/*/client/MarkNewQuestNotificationSent", verifyToken, async (req, res) => { const profiles = await Profile.findOne({ accountId: req.user.accountId }); let profile = profiles.profiles[req.query.profileId]; @@ -1004,9 +1003,9 @@ app.post("/fortnite/api/game/v2/profile/*/client/PurchaseCatalogEntry", verifyTo [req.body.offerId], 16027, undefined, 400, res ); - if (config.EnableBattlepass === true) { - if (memory.season == config.BattlePassSeason) { - var season = `Season${config.BattlePassSeason}`; // Don't change it if you don't know what it is + if (config.bEnableBattlepass === true) { + if (memory.season == config.bBattlePassSeason) { + var season = `Season${config.bBattlePassSeason}`; // Don't change it if you don't know what it is var ItemExists = false; let BattlePass = JSON.parse(fs.readFileSync(path.join(__dirname, "../responses/Athena/BattlePass/", `${season}.json`), "utf8")); if (!BattlePass) diff --git a/structs/log.js b/structs/log.js index f952002..95a9ccf 100644 --- a/structs/log.js +++ b/structs/log.js @@ -5,7 +5,7 @@ function backend() { msg += `${i == "0" ? "" : " "}${backend.arguments[i]}`; } - console.log(`\x1b[32mBackend Log\x1b[0m: ${msg}`); + console.log(`\x1b[32mReload Backend Log\x1b[0m: ${msg}`); } function bot() { @@ -15,7 +15,7 @@ function bot() { msg += `${i == "0" ? "" : " "}${bot.arguments[i]}`; } - console.log(`\x1b[33mBot Log\x1b[0m: ${msg}`); + console.log(`\x1b[33mReload Bot Log\x1b[0m: ${msg}`); } function xmpp() { @@ -25,7 +25,7 @@ function xmpp() { msg += `${i == "0" ? "" : " "}${xmpp.arguments[i]}`; } - console.log(`\x1b[34mXmpp Log\x1b[0m: ${msg}`); + console.log(`\x1b[34mReload Xmpp Log\x1b[0m: ${msg}`); } function error() { @@ -35,7 +35,7 @@ function error() { msg += `${i == "0" ? "" : " "}${error.arguments[i]}`; } - console.log(`\x1b[31mError\x1b[0m: ${msg}`); + console.log(`\x1b[31mReload Error Log\x1b[0m: ${msg}`); } module.exports = {