Documentation of Splitgate file formats and game data.
This repository documents file structures, formats, and findings discovered while investigating Splitgate's local and CloudSave data.
Status: Work in progress
Disclaimer: This is an independent research project and is not affiliated with 1047 Games.
Splitgate uses several file types for storing user-created content in the CloudSave directory. All custom content is tracked via a central manifest and sorted into specific subdirectories by UUID.
CloudSave/
┣ CloudSaveManifest.json
┣ CustomModes/
┃ ┗ <UUID>/
┃ ┗ <UUID>.bin (Custom Mode Archive)
┣ MapCreator/
┃ ┗ <UUID>/
┃ ┗ <UUID>.bin (Map Archive)
┗ MapCreatorPrefab/
┗ <UUID>/
┗ <UUID>.bin (Prefab Archive)
Despite using the .bin extension, the relevant content files are actually standard ZIP archives.
All .bin files examined so far share the following ZIP properties:
- Compression Method: 8 (DEFLATE)
- General Purpose Bit Flag: 0
- Structure: Standard ZIP layout (Local File Header ➔ Compressed Data ➔ Central Directory ➔ End of Central Directory)
- Note: The files do not use ZIP64 or Data Descriptors.
Below is a detailed breakdown of the internal contents found inside each specific .bin archive type. All internal files are stored as ZIP entries using DEFLATE compression.
Maps contain the 3D world data and an associated preview thumbnail.
Internal Structure of a Map .bin:
map.bin
┣ World.cf1047 (Primary game-specific world/map data)
┗ Screenshot.jpg (Preview image associated with the map)
Prefabs are saved structures or object groups used within the Map Creator.
Internal Structure of a Prefab .bin:
prefab.bin
┣ Prefab.cf1047_prefab (Primary game-specific prefab data)
┗ Screenshot.jpg (Preview image associated with the prefab)
Custom game modes store the specific rules and settings for user-created match types.
Internal Structure of a Custom Mode .bin:
gamemode.bin
┗ payload.json (Configuration and data of the custom game mode)
Show payload.json (FFA One in the Chamber)
{
"Version": 1,
"Variant": "PortalWarsGameVariant:GV_Deathmatch_FFA_OITC_Default",
"Options": {
"OptionMap": {
"15AF39160DD50F8B89CA9A8C88EEF83D": {
"Options": {
"/Script/GameFramework1047.GF1047GameOptions_GameMode": {
"NumberOfRounds": 1,
"GameScoreLimit": 0,
"NumTeams": 0,
"bChangeTeamsEveryRound": true,
"bAllowTiebreaker": false,
"bForceFriendFoeColoring": true,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_ServerTickRate": { "Version": 0 },
"/Script/GameFramework1047.GF1047GameOptions_Damage": {
"AllowFriendlyFire": { "defaultValue": false, "overrides": {} },
"AllowEnemyHealing": { "defaultValue": false, "overrides": {} },
"DefaultMaxHealth": { "defaultValue": 100, "overrides": {} },
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_Character": {
"AllyCollision": { "defaultValue": false, "overrides": {} },
"EnemyCollision": { "defaultValue": true, "overrides": {} },
"bShowEnemyRespawnTimers": false,
"bShowEnemyHealth": true,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_Spectator": {
"bSpectateClosestPlayerOnStartSpectating": true,
"bSpectatePlayerWhoKilledUsWhenOnStartSpectatingAsParticipant": true,
"bCanSpectateEnemies": false,
"bCanSpectateEnemiesWithInjunctionActive": false,
"bFreeCamEnabled": true,
"bFreeCamEnabledWithInjunctionActive": false,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_CharacterDeath": {
"bPlayDeathEffects": true,
"RagdollLifetime": -1,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_WeaponPickups": {
"bEnabled": true,
"bDropOnlyEquippedWeapon": true,
"LifeSpan": 20,
"PowerWeaponLifeSpan": 45,
"DestroyPowerWeaponPickupsAmmoPercentage": 0.15000000596046448,
"DestroyWeaponPickupsAmmoPercentage": 0.15000000596046448,
"bDropAllReserveAmmo": true,
"bDestroyPickupsWithNoAmmo": true,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_Loadout": { "Version": 0 },
"/Script/GameFramework1047.GF1047GameOptions_Map": { "bEnableMapBoundaries": true, "Version": 0 },
"/Script/PortalWarsUI.PortalWarsUIGameOptions_HUDCustomModifiers": {
"bDisableRadar": false,
"bWeaponAttacksRevealSelfOnRadar": true,
"RadarBoundaryExtent": -1,
"Version": 0
},
"/Script/PortalWarsUI.PortalWarsUIGameOptions_InGameStats": { "Version": 0 },
"/Script/PortalWarsOnline.PortalWarsGameOptions_Chat": { "Version": 0 },
"/Script/GameFramework1047.GF1047GameOptions_PortalLauncher": {
"PortalLauncherMagazineSize": { "defaultValue": 0, "overrides": {} },
"PortalLauncherRechargeRate": { "defaultValue": 10, "overrides": {} },
"bFillMagazineOnRecharge": true,
"PortalWallOverloading": { "defaultValue": true, "overrides": {} },
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_PortalAbility": {
"EnablePortals": { "defaultValue": true, "overrides": {} },
"AllowReplacingAllyPortals": { "defaultValue": true, "overrides": {} },
"AllowReplacingEnemyPortals": { "defaultValue": true, "overrides": {} },
"BlockReplacementTime": { "defaultValue": 1.5, "overrides": {} },
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_Weapons": {
"InfiniteMagazine": { "defaultValue": false, "overrides": {} },
"InfiniteReserves": { "defaultValue": false, "overrides": {} },
"InfiniteEquipment": { "defaultValue": false, "overrides": {} },
"AmmoGrantMelee": { "defaultValue": "Kill", "overrides": {} },
"AmmoGrantAmountMelee": { "defaultValue": "GrantSingleUnit", "overrides": {} },
"AmmoGrantRanged": { "defaultValue": "Kill", "overrides": {} },
"AmmoGrantAmountRanged": { "defaultValue": "GrantSingleUnit", "overrides": {} },
"StartingAmmoRestriction": { "defaultValue": "LowestAmmoCost", "overrides": {} },
"OneShotOneKill": { "defaultValue": true, "overrides": {} },
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_ItemPickups": { "Version": 0 }
}
},
"45C81DFA4B96D7569C5912987E791968": {
"InheritsFrom": "6CF0FA724A102B1C19020BBF68D92EFB",
"Options": {
"/Script/GameFramework1047.GF1047GameOptions_Damage": {
"AllowFriendlyFire": { "defaultValue": false, "overrides": {} },
"AllowEnemyHealing": { "defaultValue": false, "overrides": {} },
"DefaultMaxHealth": { "defaultValue": 100, "overrides": {} },
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_Character": {
"AllyCollision": { "defaultValue": false, "overrides": {} },
"EnemyCollision": { "defaultValue": true, "overrides": {} },
"bShowEnemyRespawnTimers": false,
"bShowEnemyHealth": true,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_Spectator": {
"bSpectateClosestPlayerOnStartSpectating": true,
"bSpectatePlayerWhoKilledUsWhenOnStartSpectatingAsParticipant": true,
"bCanSpectateEnemies": false,
"bCanSpectateEnemiesWithInjunctionActive": false,
"bFreeCamEnabled": true,
"bFreeCamEnabledWithInjunctionActive": false,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_CharacterDeath": {
"bPlayDeathEffects": true,
"RagdollLifetime": -1,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_WeaponPickups": {
"bEnabled": true,
"bDropOnlyEquippedWeapon": true,
"LifeSpan": 20,
"PowerWeaponLifeSpan": 45,
"DestroyPowerWeaponPickupsAmmoPercentage": 0.15000000596046448,
"DestroyWeaponPickupsAmmoPercentage": 0.15000000596046448,
"bDropAllReserveAmmo": true,
"bDestroyPickupsWithNoAmmo": true,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_Loadout": { "Version": 0 },
"/Script/GameFramework1047.GF1047GameOptions_Map": { "bEnableMapBoundaries": true, "Version": 0 },
"/Script/PortalWarsUI.PortalWarsUIGameOptions_HUDCustomModifiers": {
"bDisableRadar": false,
"bWeaponAttacksRevealSelfOnRadar": true,
"RadarBoundaryExtent": -1,
"Version": 0
},
"/Script/PortalWarsUI.PortalWarsUIGameOptions_InGameStats": { "Version": 0 },
"/Script/PortalWarsOnline.PortalWarsGameOptions_Chat": { "Version": 0 },
"/Script/GameFramework1047.GF1047GameOptions_PortalLauncher": {
"PortalLauncherMagazineSize": { "defaultValue": 0, "overrides": {} },
"PortalLauncherRechargeRate": { "defaultValue": 10, "overrides": {} },
"bFillMagazineOnRecharge": true,
"PortalWallOverloading": { "defaultValue": true, "overrides": {} },
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_PortalAbility": {
"EnablePortals": { "defaultValue": true, "overrides": {} },
"AllowReplacingAllyPortals": { "defaultValue": true, "overrides": {} },
"AllowReplacingEnemyPortals": { "defaultValue": true, "overrides": {} },
"BlockReplacementTime": { "defaultValue": 1.5, "overrides": {} },
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_WorldStreaming": { "Version": 0 },
"/Script/AIFramework1047.AIF1047GameOptions_BotSpawning": {
"bEnabled": false,
"bAutoRebalance": true,
"bSpawnCustomAmountOfBots": false,
"MaxBots": 8,
"Difficulty": "AI.Difficulty.Level.Medium",
"FactionLoadoutOptions": { "overrideFactionWeights": {} },
"Version": 0
},
"/Script/AIFramework1047.AIF1047GameOptions_BotCoaching": { "Version": 0 },
"/Script/AIFramework1047.AIF1047GameOptions_BotCoachingFTUE": { "Version": 0 },
"/Script/AIFramework1047.AIF1047GameOptions_SelectHTN": { "Version": 0 },
"/Script/AIFramework1047.AIF1047GameOptions_BotNavigationRecovery": { "Version": 0 },
"/Script/GameFramework1047.GF1047GameOptions_Weapons": {
"InfiniteMagazine": { "defaultValue": false, "overrides": {} },
"InfiniteReserves": { "defaultValue": false, "overrides": {} },
"InfiniteEquipment": { "defaultValue": false, "overrides": {} },
"AmmoGrantMelee": { "defaultValue": "Kill", "overrides": {} },
"AmmoGrantAmountMelee": { "defaultValue": "GrantSingleUnit", "overrides": {} },
"AmmoGrantRanged": { "defaultValue": "Kill", "overrides": {} },
"AmmoGrantAmountRanged": { "defaultValue": "GrantSingleUnit", "overrides": {} },
"StartingAmmoRestriction": { "defaultValue": "LowestAmmoCost", "overrides": {} },
"OneShotOneKill": { "defaultValue": true, "overrides": {} },
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_ItemPickups": { "Version": 0 },
"/Script/PortalWarsCore.PortalWarsGameOptions_FactionSelection": {
"bAllowFactionChangesDuringGameplay": true,
"bAllowLoadoutChangesDuringGameplay": false,
"bLoadoutChangesApplyImmediately": false,
"RestrictToFactions": [],
"CustomLoadouts": {
"customLoadouts": {
"None": {
"customLoadouts": [
{
"selectedItems": {
"LoadoutSlot.CustomWeapon.01.Weapon": "LoadoutItem:706B0E254A33CC7E50D537B0C3C004DF",
"LoadoutSlot.CustomEquipment": "LoadoutItem:B1EFD17544E867F4C7435CB0F75D3E62"
},
"randomItemTags": {},
"randomWeaponAttachmentSlots": {}
}
]
}
}
},
"Version": 0
}
}
},
"14CC4E3B4D868C8242FAD9A372C1A6A3": {
"InheritsFrom": "6CF0FA724A102B1C19020BBF68D92EFB",
"Options": {
"/Script/GameFramework1047.GF1047GameOptions_Damage": {
"AllowFriendlyFire": { "defaultValue": false, "overrides": {} },
"AllowEnemyHealing": { "defaultValue": false, "overrides": {} },
"DefaultMaxHealth": { "defaultValue": 100, "overrides": {} },
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_Character": {
"AllyCollision": { "defaultValue": false, "overrides": {} },
"EnemyCollision": { "defaultValue": true, "overrides": {} },
"bShowEnemyRespawnTimers": false,
"bShowEnemyHealth": true,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_Spectator": {
"bSpectateClosestPlayerOnStartSpectating": true,
"bSpectatePlayerWhoKilledUsWhenOnStartSpectatingAsParticipant": true,
"bCanSpectateEnemies": false,
"bCanSpectateEnemiesWithInjunctionActive": false,
"bFreeCamEnabled": true,
"bFreeCamEnabledWithInjunctionActive": false,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_CharacterDeath": {
"bPlayDeathEffects": true,
"RagdollLifetime": -1,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_WeaponPickups": {
"bEnabled": true,
"bDropOnlyEquippedWeapon": true,
"LifeSpan": 20,
"PowerWeaponLifeSpan": 45,
"DestroyPowerWeaponPickupsAmmoPercentage": 0.15000000596046448,
"DestroyWeaponPickupsAmmoPercentage": 0.15000000596046448,
"bDropAllReserveAmmo": true,
"bDestroyPickupsWithNoAmmo": true,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_Loadout": { "Version": 0 },
"/Script/GameFramework1047.GF1047GameOptions_Map": { "bEnableMapBoundaries": true, "Version": 0 },
"/Script/PortalWarsUI.PortalWarsUIGameOptions_HUDCustomModifiers": {
"bDisableRadar": false,
"bWeaponAttacksRevealSelfOnRadar": true,
"RadarBoundaryExtent": -1,
"Version": 0
},
"/Script/PortalWarsUI.PortalWarsUIGameOptions_InGameStats": { "Version": 0 },
"/Script/PortalWarsOnline.PortalWarsGameOptions_Chat": { "Version": 0 },
"/Script/GameFramework1047.GF1047GameOptions_PortalLauncher": {
"PortalLauncherMagazineSize": { "defaultValue": 0, "overrides": {} },
"PortalLauncherRechargeRate": { "defaultValue": 10, "overrides": {} },
"bFillMagazineOnRecharge": true,
"PortalWallOverloading": { "defaultValue": true, "overrides": {} },
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_PortalAbility": {
"EnablePortals": { "defaultValue": true, "overrides": {} },
"AllowReplacingAllyPortals": { "defaultValue": true, "overrides": {} },
"AllowReplacingEnemyPortals": { "defaultValue": true, "overrides": {} },
"BlockReplacementTime": { "defaultValue": 1.5, "overrides": {} },
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_WorldStreaming": { "Version": 0 },
"/Script/GameFramework1047.GF1047GameOptions_Weapons": {
"InfiniteMagazine": { "defaultValue": false, "overrides": {} },
"InfiniteReserves": { "defaultValue": false, "overrides": {} },
"InfiniteEquipment": { "defaultValue": false, "overrides": {} },
"AmmoGrantMelee": { "defaultValue": "Kill", "overrides": {} },
"AmmoGrantAmountMelee": { "defaultValue": "GrantSingleUnit", "overrides": {} },
"AmmoGrantRanged": { "defaultValue": "Kill", "overrides": {} },
"AmmoGrantAmountRanged": { "defaultValue": "GrantSingleUnit", "overrides": {} },
"StartingAmmoRestriction": { "defaultValue": "LowestAmmoCost", "overrides": {} },
"OneShotOneKill": { "defaultValue": true, "overrides": {} },
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_ItemPickups": { "Version": 0 },
"/Script/PortalWarsCore.PortalWarsGameOptions_FactionSelection": {
"bAllowFactionChangesDuringGameplay": true,
"bAllowLoadoutChangesDuringGameplay": false,
"bLoadoutChangesApplyImmediately": false,
"RestrictToFactions": [],
"CustomLoadouts": {
"customLoadouts": {
"None": {
"customLoadouts": [
{
"selectedItems": {
"LoadoutSlot.CustomWeapon.01.Weapon": "LoadoutItem:706B0E254A33CC7E50D537B0C3C004DF",
"LoadoutSlot.CustomEquipment": "LoadoutItem:B1EFD17544E867F4C7435CB0F75D3E62"
},
"randomItemTags": {},
"randomWeaponAttachmentSlots": {}
}
]
}
}
},
"Version": 0
}
}
},
"AAC1EB8949139A18E74EF8B0C7F747BB": {
"InheritsFrom": "6CF0FA724A102B1C19020BBF68D92EFB",
"Options": {
"/Script/GameFramework1047.GF1047GameOptions_Damage": {
"AllowFriendlyFire": { "defaultValue": false, "overrides": {} },
"AllowEnemyHealing": { "defaultValue": false, "overrides": {} },
"DefaultMaxHealth": { "defaultValue": 100, "overrides": {} },
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_Character": {
"AllyCollision": { "defaultValue": false, "overrides": {} },
"EnemyCollision": { "defaultValue": true, "overrides": {} },
"bShowEnemyRespawnTimers": false,
"bShowEnemyHealth": true,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_Spectator": {
"bSpectateClosestPlayerOnStartSpectating": true,
"bSpectatePlayerWhoKilledUsWhenOnStartSpectatingAsParticipant": true,
"bCanSpectateEnemies": false,
"bCanSpectateEnemiesWithInjunctionActive": false,
"bFreeCamEnabled": true,
"bFreeCamEnabledWithInjunctionActive": false,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_CharacterDeath": {
"bPlayDeathEffects": true,
"RagdollLifetime": -1,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_WeaponPickups": {
"bEnabled": true,
"bDropOnlyEquippedWeapon": true,
"LifeSpan": 20,
"PowerWeaponLifeSpan": 45,
"DestroyPowerWeaponPickupsAmmoPercentage": 0.15000000596046448,
"DestroyWeaponPickupsAmmoPercentage": 0.15000000596046448,
"bDropAllReserveAmmo": true,
"bDestroyPickupsWithNoAmmo": true,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_Loadout": { "Version": 0 },
"/Script/GameFramework1047.GF1047GameOptions_Map": { "bEnableMapBoundaries": true, "Version": 0 },
"/Script/PortalWarsUI.PortalWarsUIGameOptions_HUDCustomModifiers": {
"bDisableRadar": false,
"bWeaponAttacksRevealSelfOnRadar": true,
"RadarBoundaryExtent": -1,
"Version": 0
},
"/Script/PortalWarsUI.PortalWarsUIGameOptions_InGameStats": { "Version": 0 },
"/Script/PortalWarsOnline.PortalWarsGameOptions_Chat": { "Version": 0 },
"/Script/GameFramework1047.GF1047GameOptions_PortalLauncher": {
"PortalLauncherMagazineSize": { "defaultValue": 0, "overrides": {} },
"PortalLauncherRechargeRate": { "defaultValue": 10, "overrides": {} },
"bFillMagazineOnRecharge": true,
"PortalWallOverloading": { "defaultValue": true, "overrides": {} },
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_PortalAbility": {
"EnablePortals": { "defaultValue": true, "overrides": {} },
"AllowReplacingAllyPortals": { "defaultValue": true, "overrides": {} },
"AllowReplacingEnemyPortals": { "defaultValue": true, "overrides": {} },
"BlockReplacementTime": { "defaultValue": 1.5, "overrides": {} },
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_WorldStreaming": { "Version": 0 },
"/Script/AIFramework1047.AIF1047GameOptions_BotSpawning": {
"bEnabled": false,
"bAutoRebalance": true,
"bSpawnCustomAmountOfBots": false,
"MaxBots": 8,
"Difficulty": "AI.Difficulty.Level.Medium",
"FactionLoadoutOptions": { "overrideFactionWeights": {} },
"Version": 0
},
"/Script/AIFramework1047.AIF1047GameOptions_BotCoaching": { "Version": 0 },
"/Script/AIFramework1047.AIF1047GameOptions_BotCoachingFTUE": { "Version": 0 },
"/Script/AIFramework1047.AIF1047GameOptions_SelectHTN": { "Version": 0 },
"/Script/AIFramework1047.AIF1047GameOptions_BotNavigationRecovery": { "Version": 0 },
"/Script/GameFramework1047.GF1047GameOptions_Weapons": {
"InfiniteMagazine": { "defaultValue": false, "overrides": {} },
"InfiniteReserves": { "defaultValue": false, "overrides": {} },
"InfiniteEquipment": { "defaultValue": false, "overrides": {} },
"AmmoGrantMelee": { "defaultValue": "Kill", "overrides": {} },
"AmmoGrantAmountMelee": { "defaultValue": "GrantSingleUnit", "overrides": {} },
"AmmoGrantRanged": { "defaultValue": "Kill", "overrides": {} },
"AmmoGrantAmountRanged": { "defaultValue": "GrantSingleUnit", "overrides": {} },
"StartingAmmoRestriction": { "defaultValue": "LowestAmmoCost", "overrides": {} },
"OneShotOneKill": { "defaultValue": true, "overrides": {} },
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_ItemPickups": { "Version": 0 },
"/Script/PortalWarsCore.PortalWarsGameOptions_FactionSelection": {
"bAllowFactionChangesDuringGameplay": true,
"bAllowLoadoutChangesDuringGameplay": false,
"bLoadoutChangesApplyImmediately": false,
"RestrictToFactions": [],
"CustomLoadouts": {
"customLoadouts": {
"None": {
"customLoadouts": [
{
"selectedItems": {
"LoadoutSlot.CustomWeapon.01.Weapon": "LoadoutItem:706B0E254A33CC7E50D537B0C3C004DF",
"LoadoutSlot.CustomEquipment": "LoadoutItem:B1EFD17544E867F4C7435CB0F75D3E62"
},
"randomItemTags": {},
"randomWeaponAttachmentSlots": {}
}
]
}
}
},
"Version": 0
}
}
},
"6CF0FA724A102B1C19020BBF68D92EFB": {
"Options": {
"/Script/GameFramework1047.GF1047GameOptions_Damage": {
"AllowFriendlyFire": { "defaultValue": false, "overrides": {} },
"AllowEnemyHealing": { "defaultValue": false, "overrides": {} },
"DefaultMaxHealth": { "defaultValue": 100, "overrides": {} },
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_Character": {
"AllyCollision": { "defaultValue": false, "overrides": {} },
"EnemyCollision": { "defaultValue": true, "overrides": {} },
"bShowEnemyRespawnTimers": false,
"bShowEnemyHealth": true,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_Spectator": {
"bSpectateClosestPlayerOnStartSpectating": true,
"bSpectatePlayerWhoKilledUsWhenOnStartSpectatingAsParticipant": true,
"bCanSpectateEnemies": false,
"bCanSpectateEnemiesWithInjunctionActive": false,
"bFreeCamEnabled": true,
"bFreeCamEnabledWithInjunctionActive": false,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_CharacterDeath": {
"bPlayDeathEffects": true,
"RagdollLifetime": -1,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_WeaponPickups": {
"bEnabled": true,
"bDropOnlyEquippedWeapon": true,
"LifeSpan": 20,
"PowerWeaponLifeSpan": 45,
"DestroyPowerWeaponPickupsAmmoPercentage": 0.15000000596046448,
"DestroyWeaponPickupsAmmoPercentage": 0.15000000596046448,
"bDropAllReserveAmmo": true,
"bDestroyPickupsWithNoAmmo": true,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_Loadout": { "Version": 0 },
"/Script/GameFramework1047.GF1047GameOptions_Map": { "bEnableMapBoundaries": true, "Version": 0 },
"/Script/PortalWarsUI.PortalWarsUIGameOptions_HUDCustomModifiers": {
"bDisableRadar": false,
"bWeaponAttacksRevealSelfOnRadar": true,
"RadarBoundaryExtent": -1,
"Version": 0
},
"/Script/PortalWarsUI.PortalWarsUIGameOptions_InGameStats": { "Version": 0 },
"/Script/PortalWarsOnline.PortalWarsGameOptions_Chat": { "Version": 0 },
"/Script/GameFramework1047.GF1047GameOptions_PortalLauncher": {
"PortalLauncherMagazineSize": { "defaultValue": 0, "overrides": {} },
"PortalLauncherRechargeRate": { "defaultValue": 10, "overrides": {} },
"bFillMagazineOnRecharge": true,
"PortalWallOverloading": { "defaultValue": true, "overrides": {} },
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_PortalAbility": {
"EnablePortals": { "defaultValue": true, "overrides": {} },
"AllowReplacingAllyPortals": { "defaultValue": true, "overrides": {} },
"AllowReplacingEnemyPortals": { "defaultValue": true, "overrides": {} },
"BlockReplacementTime": { "defaultValue": 1.5, "overrides": {} },
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_WorldStreaming": { "Version": 0 },
"/Script/GameFramework1047.GF1047GameOptions_KillScoring": {
"KillScore": { "defaultValue": 1, "overrides": {} },
"DeathScore": { "defaultValue": 0, "overrides": {} },
"AssistScore": { "defaultValue": 0, "overrides": {} },
"SuicideScore": { "defaultValue": -1, "overrides": {} },
"FriendlyFireScore": { "defaultValue": -1, "overrides": {} },
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_Vehicles": { "Version": 0 },
"/Script/AIFramework1047.AIF1047GameOptions_BotSpawning": {
"bEnabled": false,
"bAutoRebalance": true,
"bSpawnCustomAmountOfBots": false,
"MaxBots": 7,
"Difficulty": "AI.Difficulty.Level.Medium",
"FactionLoadoutOptions": { "overrideFactionWeights": {} },
"Version": 0
},
"/Script/AIFramework1047.AIF1047GameOptions_BotCoaching": { "Version": 0 },
"/Script/AIFramework1047.AIF1047GameOptions_BotCoachingFTUE": { "Version": 0 },
"/Script/AIFramework1047.AIF1047GameOptions_SelectHTN": { "Version": 0 },
"/Script/AIFramework1047.AIF1047GameOptions_BotNavigationRecovery": { "Version": 0 },
"/Script/GameFramework1047.GF1047GameOptions_LevelConfiguration": { "Version": 0 },
"/Script/GameFramework1047.GF1047GameOptions_ScheduleVariant": { "Version": 0 },
"/Script/PortalWarsCore.PortalWarsGameOptions_AbilityCustomModifiers": {
"FactionAbilityCooldownMultiplier": { "defaultValue": 1, "overrides": {} },
"EquipmentCooldownMultiplier": { "defaultValue": 1, "overrides": {} },
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_MovementCustomModifiers": {
"MovementSpeedMultiplier": { "defaultValue": 1, "overrides": {} },
"GravityScaleMultiplier": { "defaultValue": 1, "overrides": {} },
"JumpHeightMultiplier": { "defaultValue": 1, "overrides": {} },
"AllowBeginningRechargeInAir": { "defaultValue": false, "overrides": {} },
"AllowRechargeAfterTeleport": { "defaultValue": true, "overrides": {} },
"ThrusterRechargeDelay": { "defaultValue": 0, "overrides": {} },
"ThrusterUsageMultiplier": { "defaultValue": 1, "overrides": {} },
"ThrusterAccelerationMultiplier": { "defaultValue": 1, "overrides": {} },
"EnableSprint": { "defaultValue": true, "overrides": {} },
"EnableThruster": { "defaultValue": true, "overrides": {} },
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_TimedRespawn": {
"RespawnTime": { "defaultValue": 4, "overrides": {} },
"DeathRespawnTimePenalty": { "defaultValue": 0, "overrides": {} },
"KillRespawnTimePenalty": { "defaultValue": 0, "overrides": {} },
"PeriodicPenaltyTime": { "defaultValue": 0, "overrides": {} },
"PeriodicPenaltyAmount": { "defaultValue": 0, "overrides": {} },
"RespawnPenaltyMin": { "defaultValue": 0, "overrides": {} },
"RespawnPenaltyMax": { "defaultValue": 0, "overrides": {} },
"DeathInProgressRespawnModifier": { "defaultValue": 0, "overrides": {} },
"KillInProgressRespawnModifier": { "defaultValue": 0, "overrides": {} },
"AllowTimedRespawns": { "defaultValue": true, "overrides": {} },
"TeamBasedRespawnPenalties": { "defaultValue": true, "overrides": {} },
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_RoundTimer": {
"RoundLength": 600,
"OvertimeLength": -1,
"SuddenDeathLength": 600,
"bAllowNormalSuddenDeath": true,
"bAllowOvertimeSuddenDeath": true,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_Scoring": { "ScoreMode": "HighestScoreWins", "Version": 0 },
"/Script/GameFramework1047.GF1047GameOptions_ScoreLimit": {
"bEnabled": true,
"ScoreLimit": 30,
"bAlwaysShowScores": false,
"bOverrideScoreDisplayType": false,
"ScoreDisplayTypeOverride": "PointsEarned",
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_PlayerLives": {
"bLivesEnabled": false,
"NumberOfLives": 1,
"bTeamLivesEnabled": false,
"NumberOfTeamLives": 10,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_PortalPartners": { "Version": 0 },
"/Script/PortalWarsCore.PortalWarsGameOptions_AirdropSpawning": {
"bEnabled": false,
"MinTimeBetweenSpawns": 60,
"MaxTimeBetweenSpawns": 60,
"MinSpawnCount": 1,
"MaxSpawnCount": 1,
"TimeBetweenAirdrops": 4,
"MinObjectiveRange": 0,
"MaxObjectiveRange": 0,
"MinAveragePlayerRange": 0,
"MaxAveragePlayerRange": 0,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_WeightedSpawns": {
"bAlwaysUseTeamSpawns": { "defaultValue": false, "overrides": {} },
"bRequireNearbyAllies": { "defaultValue": false, "overrides": {} },
"bRequireNearbyObjective": { "defaultValue": false, "overrides": {} },
"bRequireNoNearbyObjective": { "defaultValue": false, "overrides": {} },
"AllyConsiderationDistance": { "defaultValue": 8000, "overrides": {} },
"ObjectiveMaxDistance": { "defaultValue": 8000, "overrides": {} },
"ObjectiveMinDistance": { "defaultValue": 4000, "overrides": {} },
"Version": 0
},
"/Script/PortalWarsCore.PortalWarsGameOptions_SpawnSelection": {
"EnemyPortalSpawnSortWeight": 2,
"EnemyUnlinkedPortalSpawnSortWeight": 3,
"EnemyPortalWallSpawnSortWeight": 5,
"EnemyFarDistance": { "defaultValue": 4000, "overrides": {} },
"EnemyPortalWallConsiderationDistance": { "defaultValue": 4000, "overrides": {} },
"EnemyPortalConsiderationDistance": { "defaultValue": 4000, "overrides": {} },
"Version": 0
},
"/Script/PortalWarsCore.PortalWarsGameOptions_TakedownRounds": { "bTeamWipesEnabled": false, "Version": 0 },
"/Script/PortalWarsCore.PortalWarsGameOptions_TakedownSpawning": {
"bPreventSpawningWhenTeamIsDead": false,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_Weapons": {
"InfiniteMagazine": { "defaultValue": false, "overrides": {} },
"InfiniteReserves": { "defaultValue": false, "overrides": {} },
"InfiniteEquipment": { "defaultValue": false, "overrides": {} },
"AmmoGrantMelee": { "defaultValue": "Kill", "overrides": {} },
"AmmoGrantAmountMelee": { "defaultValue": "GrantSingleUnit", "overrides": {} },
"AmmoGrantRanged": { "defaultValue": "Kill", "overrides": {} },
"AmmoGrantAmountRanged": { "defaultValue": "GrantSingleUnit", "overrides": {} },
"StartingAmmoRestriction": { "defaultValue": "LowestAmmoCost", "overrides": {} },
"OneShotOneKill": { "defaultValue": true, "overrides": {} },
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_ItemPickups": { "Version": 0 },
"/Script/PortalWarsCore.PortalWarsGameOptions_FactionSelection": {
"bAllowFactionChangesDuringGameplay": true,
"bAllowLoadoutChangesDuringGameplay": false,
"bLoadoutChangesApplyImmediately": false,
"RestrictToFactions": [],
"CustomLoadouts": {
"customLoadouts": {
"None": {
"customLoadouts": [
{
"selectedItems": {
"LoadoutSlot.CustomWeapon.01.Weapon": "LoadoutItem:706B0E254A33CC7E50D537B0C3C004DF",
"LoadoutSlot.CustomEquipment": "LoadoutItem:B1EFD17544E867F4C7435CB0F75D3E62"
},
"randomItemTags": {},
"randomWeaponAttachmentSlots": {}
}
]
}
}
},
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_ItemPads": {
"bEnabled": false,
"bRespawningEnabled": false,
"SelectionBehavior": "RandomPerMatch",
"ItemPadTypes": [],
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_DamageCustomModifiers": {
"DamageMultiplier": { "defaultValue": 1, "overrides": {} },
"MeleeDamageMultiplier": { "defaultValue": 100, "overrides": {} },
"PrecisionDamageMultiplier": { "defaultValue": 1, "overrides": {} },
"PrecisionDamageOnly": { "defaultValue": false, "overrides": {} },
"EnableBigHeadMode": { "defaultValue": false, "overrides": {} },
"Version": 0
}
}
},
"4ACC7B554127859C9322699B09E1C6C4": {
"InheritsFrom": "78D3D5724D83E54B9B62DBA0A1E4F10B",
"Options": {
"/Script/GameFramework1047.GF1047GameOptions_Damage": {
"AllowFriendlyFire": { "defaultValue": false, "overrides": {} },
"AllowEnemyHealing": { "defaultValue": false, "overrides": {} },
"DefaultMaxHealth": { "defaultValue": 100, "overrides": {} },
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_Character": {
"AllyCollision": { "defaultValue": false, "overrides": {} },
"EnemyCollision": { "defaultValue": true, "overrides": {} },
"bShowEnemyRespawnTimers": false,
"bShowEnemyHealth": true,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_Spectator": {
"bSpectateClosestPlayerOnStartSpectating": true,
"bSpectatePlayerWhoKilledUsWhenOnStartSpectatingAsParticipant": true,
"bCanSpectateEnemies": false,
"bCanSpectateEnemiesWithInjunctionActive": false,
"bFreeCamEnabled": true,
"bFreeCamEnabledWithInjunctionActive": false,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_CharacterDeath": {
"bPlayDeathEffects": true,
"RagdollLifetime": -1,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_WeaponPickups": {
"bEnabled": true,
"bDropOnlyEquippedWeapon": true,
"LifeSpan": 20,
"PowerWeaponLifeSpan": 45,
"DestroyPowerWeaponPickupsAmmoPercentage": 0.15000000596046448,
"DestroyWeaponPickupsAmmoPercentage": 0.15000000596046448,
"bDropAllReserveAmmo": true,
"bDestroyPickupsWithNoAmmo": true,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_Loadout": { "Version": 0 },
"/Script/GameFramework1047.GF1047GameOptions_Map": { "bEnableMapBoundaries": true, "Version": 0 },
"/Script/PortalWarsUI.PortalWarsUIGameOptions_HUDCustomModifiers": {
"bDisableRadar": false,
"bWeaponAttacksRevealSelfOnRadar": true,
"RadarBoundaryExtent": -1,
"Version": 0
},
"/Script/PortalWarsUI.PortalWarsUIGameOptions_InGameStats": { "Version": 0 },
"/Script/PortalWarsOnline.PortalWarsGameOptions_Chat": { "Version": 0 },
"/Script/GameFramework1047.GF1047GameOptions_PortalLauncher": {
"PortalLauncherMagazineSize": { "defaultValue": 0, "overrides": {} },
"PortalLauncherRechargeRate": { "defaultValue": 10, "overrides": {} },
"bFillMagazineOnRecharge": true,
"PortalWallOverloading": { "defaultValue": true, "overrides": {} },
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_PortalAbility": {
"EnablePortals": { "defaultValue": true, "overrides": {} },
"AllowReplacingAllyPortals": { "defaultValue": true, "overrides": {} },
"AllowReplacingEnemyPortals": { "defaultValue": true, "overrides": {} },
"BlockReplacementTime": { "defaultValue": 1.5, "overrides": {} },
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_WorldStreaming": { "Version": 0 },
"/Script/AIFramework1047.AIF1047GameOptions_BotSpawning": {
"bEnabled": false,
"bAutoRebalance": true,
"bSpawnCustomAmountOfBots": false,
"MaxBots": 8,
"Difficulty": "AI.Difficulty.Level.Medium",
"FactionLoadoutOptions": { "overrideFactionWeights": {} },
"Version": 0
},
"/Script/AIFramework1047.AIF1047GameOptions_BotCoaching": { "Version": 0 },
"/Script/AIFramework1047.AIF1047GameOptions_BotCoachingFTUE": { "Version": 0 },
"/Script/AIFramework1047.AIF1047GameOptions_SelectHTN": { "Version": 0 },
"/Script/AIFramework1047.AIF1047GameOptions_BotNavigationRecovery": { "Version": 0 },
"/Script/GameFramework1047.GF1047GameOptions_Weapons": {
"InfiniteMagazine": { "defaultValue": false, "overrides": {} },
"InfiniteReserves": { "defaultValue": false, "overrides": {} },
"InfiniteEquipment": { "defaultValue": false, "overrides": {} },
"AmmoGrantMelee": { "defaultValue": "Kill", "overrides": {} },
"AmmoGrantAmountMelee": { "defaultValue": "GrantSingleUnit", "overrides": {} },
"AmmoGrantRanged": { "defaultValue": "Kill", "overrides": {} },
"AmmoGrantAmountRanged": { "defaultValue": "GrantSingleUnit", "overrides": {} },
"StartingAmmoRestriction": { "defaultValue": "LowestAmmoCost", "overrides": {} },
"OneShotOneKill": { "defaultValue": true, "overrides": {} },
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_ItemPickups": { "Version": 0 },
"/Script/PortalWarsCore.PortalWarsGameOptions_FactionSelection": {
"bAllowFactionChangesDuringGameplay": true,
"bAllowLoadoutChangesDuringGameplay": false,
"bLoadoutChangesApplyImmediately": false,
"RestrictToFactions": [],
"CustomLoadouts": {
"customLoadouts": {
"None": {
"customLoadouts": [
{
"selectedItems": {
"LoadoutSlot.CustomWeapon.01.Weapon": "LoadoutItem:706B0E254A33CC7E50D537B0C3C004DF",
"LoadoutSlot.CustomEquipment": "LoadoutItem:B1EFD17544E867F4C7435CB0F75D3E62"
},
"randomItemTags": {},
"randomWeaponAttachmentSlots": {}
}
]
}
}
},
"Version": 0
}
}
},
"78D3D5724D83E54B9B62DBA0A1E4F10B": {
"InheritsFrom": "6CF0FA724A102B1C19020BBF68D92EFB",
"Options": {
"/Script/GameFramework1047.GF1047GameOptions_Damage": {
"AllowFriendlyFire": { "defaultValue": false, "overrides": {} },
"AllowEnemyHealing": { "defaultValue": false, "overrides": {} },
"DefaultMaxHealth": { "defaultValue": 100, "overrides": {} },
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_Character": {
"AllyCollision": { "defaultValue": false, "overrides": {} },
"EnemyCollision": { "defaultValue": true, "overrides": {} },
"bShowEnemyRespawnTimers": false,
"bShowEnemyHealth": true,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_Spectator": {
"bSpectateClosestPlayerOnStartSpectating": true,
"bSpectatePlayerWhoKilledUsWhenOnStartSpectatingAsParticipant": true,
"bCanSpectateEnemies": false,
"bCanSpectateEnemiesWithInjunctionActive": false,
"bFreeCamEnabled": true,
"bFreeCamEnabledWithInjunctionActive": false,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_CharacterDeath": {
"bPlayDeathEffects": true,
"RagdollLifetime": -1,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_WeaponPickups": {
"bEnabled": true,
"bDropOnlyEquippedWeapon": true,
"LifeSpan": 20,
"PowerWeaponLifeSpan": 45,
"DestroyPowerWeaponPickupsAmmoPercentage": 0.15000000596046448,
"DestroyWeaponPickupsAmmoPercentage": 0.15000000596046448,
"bDropAllReserveAmmo": true,
"bDestroyPickupsWithNoAmmo": true,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_Loadout": { "Version": 0 },
"/Script/GameFramework1047.GF1047GameOptions_Map": { "bEnableMapBoundaries": true, "Version": 0 },
"/Script/PortalWarsUI.PortalWarsUIGameOptions_HUDCustomModifiers": {
"bDisableRadar": false,
"bWeaponAttacksRevealSelfOnRadar": true,
"RadarBoundaryExtent": -1,
"Version": 0
},
"/Script/PortalWarsUI.PortalWarsUIGameOptions_InGameStats": { "Version": 0 },
"/Script/PortalWarsOnline.PortalWarsGameOptions_Chat": { "Version": 0 },
"/Script/GameFramework1047.GF1047GameOptions_PortalLauncher": {
"PortalLauncherMagazineSize": { "defaultValue": 0, "overrides": {} },
"PortalLauncherRechargeRate": { "defaultValue": 10, "overrides": {} },
"bFillMagazineOnRecharge": true,
"PortalWallOverloading": { "defaultValue": true, "overrides": {} },
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_PortalAbility": {
"EnablePortals": { "defaultValue": true, "overrides": {} },
"AllowReplacingAllyPortals": { "defaultValue": true, "overrides": {} },
"AllowReplacingEnemyPortals": { "defaultValue": true, "overrides": {} },
"BlockReplacementTime": { "defaultValue": 1.5, "overrides": {} },
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_WorldStreaming": { "Version": 0 },
"/Script/GameFramework1047.GF1047GameOptions_KillScoring": {
"KillScore": { "defaultValue": 1, "overrides": {} },
"DeathScore": { "defaultValue": 0, "overrides": {} },
"AssistScore": { "defaultValue": 0, "overrides": {} },
"SuicideScore": { "defaultValue": -1, "overrides": {} },
"FriendlyFireScore": { "defaultValue": -1, "overrides": {} },
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_Vehicles": { "Version": 0 },
"/Script/AIFramework1047.AIF1047GameOptions_BotSpawning": {
"bEnabled": false,
"bAutoRebalance": true,
"bSpawnCustomAmountOfBots": false,
"MaxBots": 7,
"Difficulty": "AI.Difficulty.Level.Medium",
"FactionLoadoutOptions": { "overrideFactionWeights": {} },
"Version": 0
},
"/Script/AIFramework1047.AIF1047GameOptions_BotCoaching": { "Version": 0 },
"/Script/AIFramework1047.AIF1047GameOptions_BotCoachingFTUE": { "Version": 0 },
"/Script/AIFramework1047.AIF1047GameOptions_SelectHTN": { "Version": 0 },
"/Script/AIFramework1047.AIF1047GameOptions_BotNavigationRecovery": { "Version": 0 },
"/Script/GameFramework1047.GF1047GameOptions_LevelConfiguration": { "Version": 0 },
"/Script/GameFramework1047.GF1047GameOptions_ScheduleVariant": { "Version": 0 },
"/Script/PortalWarsCore.PortalWarsGameOptions_AbilityCustomModifiers": {
"FactionAbilityCooldownMultiplier": { "defaultValue": 1, "overrides": {} },
"EquipmentCooldownMultiplier": { "defaultValue": 1, "overrides": {} },
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_MovementCustomModifiers": {
"MovementSpeedMultiplier": { "defaultValue": 1, "overrides": {} },
"GravityScaleMultiplier": { "defaultValue": 1, "overrides": {} },
"JumpHeightMultiplier": { "defaultValue": 1, "overrides": {} },
"AllowBeginningRechargeInAir": { "defaultValue": false, "overrides": {} },
"AllowRechargeAfterTeleport": { "defaultValue": true, "overrides": {} },
"ThrusterRechargeDelay": { "defaultValue": 0, "overrides": {} },
"ThrusterUsageMultiplier": { "defaultValue": 1, "overrides": {} },
"ThrusterAccelerationMultiplier": { "defaultValue": 1, "overrides": {} },
"EnableSprint": { "defaultValue": true, "overrides": {} },
"EnableThruster": { "defaultValue": true, "overrides": {} },
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_TimedRespawn": {
"RespawnTime": { "defaultValue": 4, "overrides": {} },
"DeathRespawnTimePenalty": { "defaultValue": 0, "overrides": {} },
"KillRespawnTimePenalty": { "defaultValue": 0, "overrides": {} },
"PeriodicPenaltyTime": { "defaultValue": 0, "overrides": {} },
"PeriodicPenaltyAmount": { "defaultValue": 0, "overrides": {} },
"RespawnPenaltyMin": { "defaultValue": 0, "overrides": {} },
"RespawnPenaltyMax": { "defaultValue": 0, "overrides": {} },
"DeathInProgressRespawnModifier": { "defaultValue": 0, "overrides": {} },
"KillInProgressRespawnModifier": { "defaultValue": 0, "overrides": {} },
"AllowTimedRespawns": { "defaultValue": true, "overrides": {} },
"TeamBasedRespawnPenalties": { "defaultValue": true, "overrides": {} },
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_RoundTimer": {
"RoundLength": 600,
"OvertimeLength": -1,
"SuddenDeathLength": 600,
"bAllowNormalSuddenDeath": true,
"bAllowOvertimeSuddenDeath": true,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_Scoring": { "ScoreMode": "HighestScoreWins", "Version": 0 },
"/Script/GameFramework1047.GF1047GameOptions_ScoreLimit": {
"bEnabled": true,
"ScoreLimit": 30,
"bAlwaysShowScores": false,
"bOverrideScoreDisplayType": false,
"ScoreDisplayTypeOverride": "PointsEarned",
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_PlayerLives": {
"bLivesEnabled": false,
"NumberOfLives": 1,
"bTeamLivesEnabled": false,
"NumberOfTeamLives": 10,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_PortalPartners": { "Version": 0 },
"/Script/PortalWarsCore.PortalWarsGameOptions_AirdropSpawning": {
"bEnabled": false,
"MinTimeBetweenSpawns": 60,
"MaxTimeBetweenSpawns": 60,
"MinSpawnCount": 1,
"MaxSpawnCount": 1,
"TimeBetweenAirdrops": 4,
"MinObjectiveRange": 0,
"MaxObjectiveRange": 0,
"MinAveragePlayerRange": 0,
"MaxAveragePlayerRange": 0,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_WeightedSpawns": {
"bAlwaysUseTeamSpawns": { "defaultValue": false, "overrides": {} },
"bRequireNearbyAllies": { "defaultValue": false, "overrides": {} },
"bRequireNearbyObjective": { "defaultValue": false, "overrides": {} },
"bRequireNoNearbyObjective": { "defaultValue": false, "overrides": {} },
"AllyConsiderationDistance": { "defaultValue": 8000, "overrides": {} },
"ObjectiveMaxDistance": { "defaultValue": 8000, "overrides": {} },
"ObjectiveMinDistance": { "defaultValue": 4000, "overrides": {} },
"Version": 0
},
"/Script/PortalWarsCore.PortalWarsGameOptions_SpawnSelection": {
"EnemyPortalSpawnSortWeight": 2,
"EnemyUnlinkedPortalSpawnSortWeight": 3,
"EnemyPortalWallSpawnSortWeight": 5,
"EnemyFarDistance": { "defaultValue": 4000, "overrides": {} },
"EnemyPortalWallConsiderationDistance": { "defaultValue": 4000, "overrides": {} },
"EnemyPortalConsiderationDistance": { "defaultValue": 4000, "overrides": {} },
"Version": 0
},
"/Script/PortalWarsCore.PortalWarsGameOptions_TakedownRounds": { "bTeamWipesEnabled": false, "Version": 0 },
"/Script/PortalWarsCore.PortalWarsGameOptions_TakedownSpawning": {
"bPreventSpawningWhenTeamIsDead": false,
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_Weapons": {
"InfiniteMagazine": { "defaultValue": false, "overrides": {} },
"InfiniteReserves": { "defaultValue": false, "overrides": {} },
"InfiniteEquipment": { "defaultValue": false, "overrides": {} },
"AmmoGrantMelee": { "defaultValue": "Kill", "overrides": {} },
"AmmoGrantAmountMelee": { "defaultValue": "GrantSingleUnit", "overrides": {} },
"AmmoGrantRanged": { "defaultValue": "Kill", "overrides": {} },
"AmmoGrantAmountRanged": { "defaultValue": "GrantSingleUnit", "overrides": {} },
"StartingAmmoRestriction": { "defaultValue": "LowestAmmoCost", "overrides": {} },
"OneShotOneKill": { "defaultValue": true, "overrides": {} },
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_ItemPickups": { "Version": 0 },
"/Script/PortalWarsCore.PortalWarsGameOptions_FactionSelection": {
"bAllowFactionChangesDuringGameplay": true,
"bAllowLoadoutChangesDuringGameplay": false,
"bLoadoutChangesApplyImmediately": false,
"RestrictToFactions": [],
"CustomLoadouts": {
"customLoadouts": {
"None": {
"customLoadouts": [
{
"selectedItems": {
"LoadoutSlot.CustomWeapon.01.Weapon": "LoadoutItem:706B0E254A33CC7E50D537B0C3C004DF",
"LoadoutSlot.CustomEquipment": "LoadoutItem:B1EFD17544E867F4C7435CB0F75D3E62"
},
"randomItemTags": {},
"randomWeaponAttachmentSlots": {}
}
]
}
}
},
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_ItemPads": {
"bEnabled": false,
"bRespawningEnabled": false,
"SelectionBehavior": "RandomPerMatch",
"ItemPadTypes": [],
"Version": 0
},
"/Script/GameFramework1047.GF1047GameOptions_DamageCustomModifiers": {
"DamageMultiplier": { "defaultValue": 1, "overrides": {} },
"MeleeDamageMultiplier": { "defaultValue": 100, "overrides": {} },
"PrecisionDamageMultiplier": { "defaultValue": 1, "overrides": {} },
"PrecisionDamageOnly": { "defaultValue": false, "overrides": {} },
"EnableBigHeadMode": { "defaultValue": false, "overrides": {} },
"Version": 0
}
}
}
},
"CustomName": "FFA One in the Chamber"
}
}The CloudSaveManifest.json located in the root CloudSave/ directory acts as a master index. It tracks metadata, UUIDs, and file paths for all the user-created content mentioned above.