Added BR Season 30 Quests

This commit is contained in:
PRO100KatYT
2024-08-13 11:42:00 +02:00
parent da7e4cb50e
commit dff02e2189
4 changed files with 5909 additions and 3 deletions

View File

@@ -5,7 +5,7 @@ bUseConfigDisplayName=false
displayName=LawinServer
[Profile]
# If this is set to true, every BR and StW seasonal quest will be on complete. Works for Battle Royale from Season 3 to Season 29 and for Save the World from Season 2 to Season X & Season 24.
# If this is set to true, every BR and StW seasonal quest will be on complete. Works for Battle Royale from Season 3 to Season 30 and for Save the World from Season 2 to Season X & Season 24.
bCompletedSeasonalQuests=false
# If this is set to true, you will receive all founder's pack rewards upon logging into StW if the account didn't claim them yet.
bGrantFoundersPacks=false

View File

@@ -65,7 +65,7 @@
- Support a Creator with specific codes
- Fully working daily challenges system (New daily challenge every day, replacing daily challenges, etc...)
- Completed Location & Discovery quests (discovered map in game & in lobby) for Chapter 2, 3, 4 and Season OG (Can change)
- Seasonal Quests from Season 3 up to Season 29 (Can change)
- Seasonal Quests from Season 3 up to Season 30 (Can change)
- Purchasable battle pass from Season 2 to Season 10 (Can change)
- Events Tab (Tournaments)
- Discovery Tab

File diff suppressed because it is too large Load Diff

View File

@@ -1507,6 +1507,45 @@ express.get("/fortnite/api/calendar/v1/timeline", async (req, res) => {
"activeSince": "2020-01-01T00:00:00.000Z"
})
break;
case 30:
activeEvents.push(
{
"eventType": "EventFlag.Event_S30_FlatWare",
"activeUntil": "9999-01-01T00:00:00.000Z",
"activeSince": "2020-01-01T00:00:00.000Z"
},
{
"eventType": "Event_GreenhousePrelude",
"activeUntil": "9999-01-01T00:00:00.000Z",
"activeSince": "2020-01-01T00:00:00.000Z"
},
{
"eventType": "EventFlag.Event_S30_LevelUpPass",
"activeUntil": "9999-01-01T00:00:00.000Z",
"activeSince": "2020-01-01T00:00:00.000Z"
},
{
"eventType": "EventFlag.Event_S30_RebootRally",
"activeUntil": "9999-01-01T00:00:00.000Z",
"activeSince": "2020-01-01T00:00:00.000Z"
},
{
"eventType": "EventFlag.Event_S30_StoryQuests",
"activeUntil": "9999-01-01T00:00:00.000Z",
"activeSince": "2020-01-01T00:00:00.000Z"
},
{
"eventType": "EventFlag.Event_S30_StoryQuests_P6",
"activeUntil": "9999-01-01T00:00:00.000Z",
"activeSince": "2020-01-01T00:00:00.000Z"
},
{
"eventType": "EventFlag.Event_S30_AllSweat",
"activeUntil": "9999-01-01T00:00:00.000Z",
"activeSince": "2020-01-01T00:00:00.000Z"
})
break;
}
if (24.3 <= memory.build && memory.build <= 25) {
@@ -1605,7 +1644,7 @@ express.get("/fortnite/api/calendar/v1/timeline", async (req, res) => {
"EventFlag.Starlight",
"EventFlag.StormKing.Landmark",
"EventFlag.STWOutlandish",
"EventFlag.YarrrTwo",
"EventFlag.YarrrTwo"
]
var activeEventsSet = new Set(activeEvents.map(e => e.eventType));