Added some playlists + fied cosmetic mistake

This commit is contained in:
Burlone
2024-11-15 20:48:38 +01:00
parent abe1315196
commit dc386da0f2
2 changed files with 6 additions and 3 deletions
+3
View File
@@ -111,6 +111,9 @@ bEnableCreativeMode=false ; Change "false" to "true" if u want Enable Creative s
+FrontEndPlaylistData=(PlaylistName=Playlist_Trios, PlaylistAccess=(bEnabled=True, bIsDefaultPlaylist=false, bVisibleWhenDisabled=false, bDisplayAsNew=false, CategoryIndex=0, bDisplayAsLimitedTime=false, DisplayPriority=2))
+FrontEndPlaylistData=(PlaylistName=Playlist_DefaultSquad, PlaylistAccess=(bEnabled=True, bIsDefaultPlaylist=false, bVisibleWhenDisabled=false, bDisplayAsNew=false, CategoryIndex=0, bDisplayAsLimitedTime=false, DisplayPriority=3))
+FrontEndPlaylistData=(PlaylistName=Playlist_Playground, PlaylistAccess=(bEnabled=False, bIsDefaultPlaylist=false, bVisibleWhenDisabled=false, bDisplayAsNew=false, CategoryIndex=1, bDisplayAsLimitedTime=true, DisplayPriority=0))
+FrontEndPlaylistData=(PlaylistName=Playlist_Respawn_24, PlaylistAccess=(bEnabled=False, bIsDefaultPlaylist=false, bVisibleWhenDisabled=false, bDisplayAsNew=false, CategoryIndex=0, bDisplayAsLimitedTime=false, DisplayPriority=6))
+FrontEndPlaylistData=(PlaylistName=Playlist_PlaygroundV2, PlaylistAccess=(bEnabled=False, bIsDefaultPlaylist=false, bVisibleWhenDisabled=false, bDisplayAsNew=false, CategoryIndex=2, bDisplayAsLimitedTime=false, DisplayPriority=16))
+FrontEndPlaylistData=(PlaylistName=Playlist_Campaign, PlaylistAccess=(bEnabled=False, bInvisibleWhenEnabled=true))
; It should improve the volume of something, I think
;[/Script/FortniteGame.FortVolumeManager]
+3 -3
View File
@@ -2868,7 +2868,7 @@ app.post("/fortnite/api/game/v2/profile/:accountId/client/CopyCosmeticLoadout",
const profiles = await Profile.findOne({ accountId: req.user.accountId });
var profile = profiles.profiles[req.query.profileId];
const memory = Version.GetVersionInfo(req);
const memory = functions.GetVersionInfo(req);
if (!await profileManager.validateProfile(req.query.profileId, profiles)) return error.createError(
"errors.com.epicgames.modules.profiles.operation_forbidden",
@@ -2937,7 +2937,7 @@ app.post("/fortnite/api/game/v2/profile/:accountId/client/SetCosmeticLockerName"
const profiles = await Profile.findOne({ accountId: req.user.accountId });
var profile = profiles.profiles[req.query.profileId];
const memory = Version.GetVersionInfo(req);
const memory = functions.GetVersionInfo(req);
if (!await profileManager.validateProfile(req.query.profileId, profiles)) return error.createError(
"errors.com.epicgames.modules.profiles.operation_forbidden",
@@ -2996,7 +2996,7 @@ app.post("/fortnite/api/game/v2/profile/*/client/DeleteCosmeticLoadout", verifyT
const profiles = await Profile.findOne({accountId: req.user.accountId});
let profile = profiles.profiles[req.query.profileId];
const memory = Version.GetVersionInfo(req);
const memory = functions.GetVersionInfo(req);
if (!await profileManager.validateProfile(req.query.profileId, profiles)) return error.createError(
"errors.com.epicgames.modules.profiles.operation_forbidden",