mirror of
https://github.com/Lawin0129/LawinServer.git
synced 2026-01-13 02:42:22 +01:00
Compare commits
2 Commits
f8692ba861
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ebb7390e55 | ||
|
|
5af63a3d29 |
@@ -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)
|
||||
|
||||
@@ -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": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user