Locker items selecting support for latest.

This commit is contained in:
PRO100KatYT
2024-05-06 07:52:20 +02:00
parent 188d8c4913
commit bf52645462
2 changed files with 160 additions and 0 deletions

View File

@@ -105,6 +105,55 @@
}, },
"quantity": 1 "quantity": 1
}, },
"lawin-characterloadout": {
"templateId": "CosmeticLoadout:LoadoutSchema_Character",
"attributes": {
"slots": [],
"display_name": "LawinServer"
},
"quantity": 1
},
"lawin-emotesloadout": {
"templateId": "CosmeticLoadout:LoadoutSchema_Emotes",
"attributes": {
"slots": [],
"display_name": "LawinServer"
},
"quantity": 1
},
"lawin-platformloadout": {
"templateId": "CosmeticLoadout:LoadoutSchema_Platform",
"attributes": {
"slots": [
{
"slot_template": "CosmeticLoadoutSlotTemplate:LoadoutSlot_Banner_Icon",
"equipped_item": "HomebaseBannerIcon:survivalbannerstonewoodcomplete"
},
{
"slot_template": "CosmeticLoadoutSlotTemplate:LoadoutSlot_Banner_Color",
"equipped_item": "HomebaseBannerColor:defaultcolor15"
}
],
"display_name": "LawinServer"
},
"quantity": 1
},
"lawin-wrapsloadout": {
"templateId": "CosmeticLoadout:LoadoutSchema_Wraps",
"attributes": {
"slots": [],
"display_name": "LawinServer"
},
"quantity": 1
},
"lawin-vehicleloadout": {
"templateId": "CosmeticLoadout:LoadoutSchema_Vehicle",
"attributes": {
"slots": [],
"display_name": "LawinServer"
},
"quantity": 1
},
"AthenaBackpack:Backpack_AgentSherbert": { "AthenaBackpack:Backpack_AgentSherbert": {
"templateId": "AthenaBackpack:Backpack_AgentSherbert", "templateId": "AthenaBackpack:Backpack_AgentSherbert",
"attributes": { "attributes": {
@@ -131935,6 +131984,23 @@
"loadouts": [ "loadouts": [
"lawin-loadout" "lawin-loadout"
], ],
"loadout_presets": {
"CosmeticLoadout:LoadoutSchema_Character": {
"0": "lawin-characterloadout"
},
"CosmeticLoadout:LoadoutSchema_Emotes": {
"0": "lawin-emotesloadout"
},
"CosmeticLoadout:LoadoutSchema_Platform": {
"0": "lawin-platformloadout"
},
"CosmeticLoadout:LoadoutSchema_Wraps": {
"0": "lawin-wrapsloadout"
},
"CosmeticLoadout:LoadoutSchema_Vehicle": {
"0": "lawin-vehicleloadout"
}
},
"favorite_victorypose": "", "favorite_victorypose": "",
"mfa_reward_claimed": true, "mfa_reward_claimed": true,
"quest_manager": { "quest_manager": {

View File

@@ -7875,6 +7875,100 @@ express.post("/fortnite/api/game/v2/profile/*/client/SetCosmeticLockerSlot", asy
res.end(); res.end();
}); });
// Set BR Locker 3
express.post("/fortnite/api/game/v2/profile/*/client/PutModularCosmeticLoadout", async (req, res) => {
const profile = require(`./../profiles/${req.query.profileId || "athena"}.json`);
// do not change any of these or you will end up breaking it
var ApplyProfileChanges = [];
var BaseRevision = profile.rvn || 0;
var QueryRevision = req.query.rvn || -1;
var StatChanged = false;
if (!profile.stats.attributes.hasOwnProperty("loadout_presets")) {
profile.stats.attributes.loadout_presets = {};
ApplyProfileChanges.push({
"changeType": "statModified",
"name": "loadout_presets",
"value": {}
})
StatChanged = true;
}
if (!profile.stats.attributes.loadout_presets.hasOwnProperty(req.body.loadoutType)) {
const NewLoadoutID = functions.MakeID();
profile.items[NewLoadoutID] = {
"templateId": req.body.loadoutType,
"attributes": {},
"quantity": 1
}
ApplyProfileChanges.push({
"changeType": "itemAdded",
"itemId": NewLoadoutID,
"item": profile.items[NewLoadoutID]
})
profile.stats.attributes.loadout_presets[req.body.loadoutType] = {
[req.body.presetId]: NewLoadoutID
};
ApplyProfileChanges.push({
"changeType": "statModified",
"name": "loadout_presets",
"value": profile.stats.attributes.loadout_presets
})
StatChanged = true;
}
var LoadoutGUID = [];
try {
LoadoutGUID = profile.stats.attributes.loadout_presets[req.body.loadoutType][req.body.presetId];
profile.items[LoadoutGUID].attributes = JSON.parse(req.body.loadoutData);
ApplyProfileChanges.push({
"changeType": "itemAttrChanged",
"itemId": LoadoutGUID,
"attributeName": "slots",
"attributeValue": profile.items[LoadoutGUID].attributes.slots
})
StatChanged = true;
} catch (err) {}
if (StatChanged == true) {
profile.rvn += 1;
profile.commandRevision += 1;
fs.writeFileSync(`./profiles/${req.query.profileId || "athena"}.json`, JSON.stringify(profile, null, 2));
}
// this doesn't work properly on version v12.20 and above but whatever
if (QueryRevision != BaseRevision) {
ApplyProfileChanges = [{
"changeType": "fullProfileUpdate",
"profile": profile
}];
}
res.json({
"profileRevision": profile.rvn || 0,
"profileId": req.query.profileId || "athena",
"profileChangesBaseRevision": BaseRevision,
"profileChanges": ApplyProfileChanges,
"profileCommandRevision": profile.commandRevision || 0,
"serverTime": new Date().toISOString(),
"responseVersion": 1
})
res.end();
});
// Set hero variants STW // Set hero variants STW
express.post("/fortnite/api/game/v2/profile/*/client/SetHeroCosmeticVariants", async (req, res) => { express.post("/fortnite/api/game/v2/profile/*/client/SetHeroCosmeticVariants", async (req, res) => {
const profile = require(`./../profiles/${req.query.profileId || "campaign"}.json`); const profile = require(`./../profiles/${req.query.profileId || "campaign"}.json`);