Compare commits

...

2 Commits

Author SHA1 Message Date
PRO100KatYT
ebb7390e55 Fixed sometimes not being able to edit styles in the Locker 2026-01-09 18:56:30 +01:00
PRO100KatYT
5af63a3d29 Fixed being unable to go back to BR from STW 2026-01-09 17:45:05 +01:00
3 changed files with 11 additions and 7 deletions

View File

@@ -1,7 +1,6 @@
[/Script/FortniteGame.FortRuntimeOptions]
bEnableGlobalChat=true # Enable global chat.
bEnableMexiCola=true # Enable the new friends tab (v19.00+).
bLoadDirectlyIntoLobby=false # Enable the Select Game Mode screen.
bEnableSocialTab=true # Enable the Rift Tour frontend section (v17.30).
!SocialRTInfo=ClearArray
+SocialRTInfo=(SlotId=1,StartsAtUTC=9999.08.06-22.00.00)

View File

@@ -342,7 +342,7 @@
"descriptionTags": [],
"discoveryIntent": "PUBLIC",
"metadata": {
"product_tag": "Product.LawinServer",
"product_tag": "Product.BR.Build",
"image_url": "https://cdn2.unrealengine.com/solo-1920x1080-1920x1080-bc0a5455ce20.jpg",
"alt_introduction": {
"ar": "انطلق وحدك في معركة لتصبح آخر لاعب صامد.",
@@ -422,7 +422,7 @@
"descriptionTags": [],
"discoveryIntent": "PUBLIC",
"metadata": {
"product_tag": "Product.LawinServer",
"product_tag": "Product.BR.Build",
"image_url": "https://cdn2.unrealengine.com/duos-1920x1080-1920x1080-5a411fe07b21.jpg",
"alt_introduction": {
"ar": "تعاون مع أحد الأصدقاء واقض على الجميع.",
@@ -502,7 +502,7 @@
"descriptionTags": [],
"discoveryIntent": "PUBLIC",
"metadata": {
"product_tag": "Product.LawinServer",
"product_tag": "Product.BR.Build",
"image_url": "https://cdn2.unrealengine.com/trios-1920x1080-1920x1080-d5054bb9691a.jpg",
"alt_introduction": {
"ar": "باتل رويال الكلاسيكية بفرق مكونة من ثلاثة أشخاص.",
@@ -582,7 +582,7 @@
"descriptionTags": [],
"discoveryIntent": "PUBLIC",
"metadata": {
"product_tag": "Product.LawinServer",
"product_tag": "Product.BR.Build",
"image_url": "https://cdn2.unrealengine.com/squads-1920x1080-1920x1080-095c0732502e.jpg",
"alt_introduction": {
"ar": "انضم لمجموعة وتفوق على جميع الفرق الأخرى التي تقاتل للوصول للنصر.",
@@ -664,7 +664,7 @@
],
"discoveryIntent": "PUBLIC",
"metadata": {
"product_tag": "Product.LawinServer",
"product_tag": "Product.STW",
"ownership_token": "Token:campaignaccess",
"image_url": "https://cdn2.unrealengine.com/stw-1920-1920x1080-5a049ecca449.jpg",
"alt_introduction": {
@@ -761,4 +761,4 @@
],
"ModeSets": {}
}
}
}

View File

@@ -62,6 +62,11 @@ express.get("/fortnite/api/cloudstorage/system/:file", async (req, res) => {
ParsedFile += "\n[ConsoleVariables]\nnet.AllowEncryption=0\n";
}
// This hotfix on versions > 19.30 would cause player to be unable to go back to BR from STW
if (req.params.file === "DefaultRuntimeOptions.ini" && 17.50 <= memory.build && memory.build <= 19.30) {
ParsedFile += "\nbLoadDirectlyIntoLobby=false\n";
}
return res.status(200).send(ParsedFile).end();
} else {
res.status(200);