mirror of
https://github.com/Lawin0129/LawinServer.git
synced 2026-01-13 10:52:23 +01:00
Added BR Season 30 Quests
This commit is contained in:
@@ -5,7 +5,7 @@ bUseConfigDisplayName=false
|
|||||||
displayName=LawinServer
|
displayName=LawinServer
|
||||||
|
|
||||||
[Profile]
|
[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
|
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.
|
# 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
|
bGrantFoundersPacks=false
|
||||||
|
|||||||
@@ -65,7 +65,7 @@
|
|||||||
- Support a Creator with specific codes
|
- Support a Creator with specific codes
|
||||||
- Fully working daily challenges system (New daily challenge every day, replacing daily challenges, etc...)
|
- 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)
|
- 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)
|
- Purchasable battle pass from Season 2 to Season 10 (Can change)
|
||||||
- Events Tab (Tournaments)
|
- Events Tab (Tournaments)
|
||||||
- Discovery Tab
|
- Discovery Tab
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -1507,6 +1507,45 @@ express.get("/fortnite/api/calendar/v1/timeline", async (req, res) => {
|
|||||||
"activeSince": "2020-01-01T00:00:00.000Z"
|
"activeSince": "2020-01-01T00:00:00.000Z"
|
||||||
})
|
})
|
||||||
break;
|
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) {
|
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.Starlight",
|
||||||
"EventFlag.StormKing.Landmark",
|
"EventFlag.StormKing.Landmark",
|
||||||
"EventFlag.STWOutlandish",
|
"EventFlag.STWOutlandish",
|
||||||
"EventFlag.YarrrTwo",
|
"EventFlag.YarrrTwo"
|
||||||
]
|
]
|
||||||
|
|
||||||
var activeEventsSet = new Set(activeEvents.map(e => e.eventType));
|
var activeEventsSet = new Set(activeEvents.map(e => e.eventType));
|
||||||
|
|||||||
Reference in New Issue
Block a user