-
SrAdmin:
-
LolloDJ
-
-
-
Developer:
-
Raffymimi
-
! Burlone:tm:
-
\ No newline at end of file
+# Reload Backend
+
+
+
+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 = {