Merge pull request #103 from PRO100KatYT/main

Pull Request #103
This commit is contained in:
Lawin0129
2023-03-04 00:44:17 +00:00
committed by GitHub
4 changed files with 64 additions and 4 deletions

View File

@@ -10,6 +10,7 @@ bIsAthenaGlobalChatEnabled=true # Battle royale global chat.
[/Script/FortniteGame.FortTextHotfixConfig]
+TextReplacements=(Category=Game, Namespace="", bIsMinimalPatch=True, Key="D5ECE3CD484655CBAE1DB6922C1D87C7", NativeString="Getting Started", LocalizedStrings=(("ar","مرحبًا بك في LawinServer!"),("en","Welcome to LawinServer!"),("de","Willkommen bei LawinServer!"),("es","¡Bienvenidos a LawinServer!"),("es-419","¡Bienvenidos a LawinServer!"),("fr","Bienvenue sur LawinServer !"),("it","Benvenuto in LawinServer!"),("ja","LawinServerへようこそ"),("ko","LawinServer에 오신 것을 환영합니다!"),("pl","Witaj w LawinServerze!"),("pt-BR","Bem-vindo ao LawinServer!"),("ru","Добро пожаловать в LawinServer!"),("tr","LavinServer'a Hoş Geldiniz!")))
+TextReplacements=(Category=Game, Namespace="", bIsMinimalPatch=True, Key="CD9D4C7A4486689DB9D16B8A7E290B08", NativeString="Not bad! So, what you'd call this place?", LocalizedStrings=(("ar","استمتع بتجربة لعب استثنائية!"),("en","Have a phenomenal gaming experience!"),("de","Wünsche allen ein wunderbares Spielerlebnis!"),("es","¡Que disfrutes de tu experiencia de videojuegos!"),("es-419","¡Ten una experiencia de juego espectacular!"),("fr","Un bon jeu à toutes et à tous !"),("it","Ti auguriamo un'esperienza di gioco fenomenale!"),("ja","驚きの体験をしよう!"),("ko","게임에서 환상적인 경험을 해보세요!"),("pl","Życzymy fenomenalnej gry!"),("pt-BR","Tenha uma experiência de jogo fenomenal!"),("ru","Желаю невероятно приятной игры!"),("tr","Muhteşem bir oyun deneyimi yaşamanı dileriz!")))
+TextReplacements=(Category=Game, Namespace="", bIsMinimalPatch=True, Key="8E762BB6481EE8FE630559BE5A982622", NativeString="Enter your Homebase name.", LocalizedStrings=(("ar","LawinServer"),("en","LawinServer"),("de","LawinServer"),("es","LawinServer"),("es-419","LawinServer"),("fr","LawinServer"),("it","LawinServer"),("ja","LawinServer"),("ko","LawinServer"),("pl","LawinServer"),("pt-BR","LawinServer"),("ru","LawinServer"),("tr","LawinServer")))
[/Script/FortniteGame.FortGameInstance]
!FrontEndPlaylistData=ClearArray

View File

@@ -1823,7 +1823,7 @@
"xp": 0,
"favorite": false
},
"quantity": 968395829
"quantity": 1000000000
},
"cb0ba21a-0534-417d-b487-e0ac4ec2f484": {
"templateId": "Quest:stonewoodquest_tutorial_levelup_hero",
@@ -2850,7 +2850,7 @@
"xp": 0,
"favorite": false
},
"quantity": 9579248
"quantity": 1000000000
},
"xp-boost": {
"templateId": "Token:xpboost",
@@ -5677,7 +5677,7 @@
"xp": 0,
"favorite": false
},
"quantity": 459283945
"quantity": 1000000000
},
"d0298d94-68c1-4e4d-b7d4-e0d9caa9b945": {
"templateId": "Quest:challenge_holdthedoor_16",
@@ -7275,7 +7275,7 @@
"xp": 0,
"favorite": false
},
"quantity": 8339478
"quantity": 1000000000
},
"fe8032de-98da-4011-800a-db4ba851db85": {
"templateId": "Quest:challenge_eldritchabominations_19",
@@ -13602,6 +13602,50 @@
},
"quantity": 1
},
"Hero:HID_Commando_046_ForestQueen_SR_T05": {
"templateId": "Hero:HID_Commando_046_ForestQueen_SR_T05",
"attributes": {
"outfitvariants": [],
"backblingvariants": [],
"gender": 0,
"level": 50,
"item_seen": true,
"squad_slot_idx": -1,
"portrait": "",
"hero_name": "DefaultHeroName",
"max_level_bonus": 0,
"squad_id": "",
"mode_loadouts": [],
"xp": 0,
"slotted_building_id": "",
"refundable": false,
"building_slot_used": -1,
"favorite": false
},
"quantity": 1
},
"Hero:HID_Commando_046_ForestQueen_VR_T05": {
"templateId": "Hero:HID_Commando_046_ForestQueen_VR_T05",
"attributes": {
"outfitvariants": [],
"backblingvariants": [],
"gender": 0,
"level": 50,
"item_seen": true,
"squad_slot_idx": -1,
"portrait": "",
"hero_name": "DefaultHeroName",
"max_level_bonus": 0,
"squad_id": "",
"mode_loadouts": [],
"xp": 0,
"slotted_building_id": "",
"refundable": false,
"building_slot_used": -1,
"favorite": false
},
"quantity": 1
},
"Hero:HID_Commando_030_RetroSciFiSoldier_SR_T05": {
"templateId": "Hero:HID_Commando_030_RetroSciFiSoldier_SR_T05",
"attributes": {

View File

@@ -381,4 +381,9 @@ express.get("/region", async (req, res) => {
})
})
// Parental Controls
express.all("/v1/epic-settings/public/users/*/values", async (req, res) => {
res.json({})
})
module.exports = express;

View File

@@ -465,6 +465,16 @@ express.post("/fortnite/api/game/v2/profile/*/client/UnlockRewardNode", async (r
"attributeValue": profile.items[req.body.rewardGraphId].attributes.reward_nodes_claimed
})
if (memory.season == 11) {
profile.items.S11_GIFT_KEY.quantity -= 1;
ApplyProfileChanges.push({
"changeType": "itemQuantityChanged",
"itemId": "S11_GIFT_KEY",
"quantity": profile.items.S11_GIFT_KEY.quantity
})
}
fs.writeFileSync(`./profiles/${req.query.profileId || "athena"}.json`, JSON.stringify(profile, null, 2));
if (CommonCoreChanged == true) {
fs.writeFileSync("./profiles/common_core.json", JSON.stringify(common_core, null, 2));