Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
I would assume it's the "HeightLimit" part:
Lemme know if it worked! ♥
Seconded, I too am hoping this will fix one of the updates issues.
Tried from Height 1 to 6 everytime it got corrupted :-/
Just make sure that you're not just adding the line. Add the comma at the end of the previous line, and don't add it at the end of the heighlimit line ie: copy the syntax litterally. JSON is very close to code, and is interpreted very litterally, and forgetting a comma could easily make your save unloadable. >//<
Manually adding the line into the json seems to be working so far (as in, game can load without giving me the corrupted error).
I'm not far enough to actually build multi-floor castle so the actual build test needs to wait. At least right now I'm able to make the game run after the modification.
Here's the code I have for now (this is the entire json file that also includes modifications to reduce grind):
{
"GameModeType": 0,
"CastleDamageMode": 0,
"CastleHeartDamageMode": 0,
"DeathContainerPermission": 1,
"RelicSpawnType": 1,
"CanLootEnemyContainers": false,
"TeleportBoundItems": false,
"InventoryStacksModifier": 5.0,
"DropTableModifier_General": 5.0,
"DropTableModifier_Missions": 5.0,
"MaterialYieldModifier_Global": 5.0,
"BloodEssenceYieldModifier": 5.0,
"CastleMinimumDistanceInFloors": 1,
"ClanSize": 20,
"DurabilityDrainModifier": 0.5,
"CastleDecayRateModifier": 0.0,
"AnnounceSiegeWeaponSpawn": false,
"BuildCostModifier": 0.5,
"RecipeCostModifier": 0.5,
"CraftRateModifier": 10.0,
"RefinementCostModifier": 0.5,
"RefinementRateModifier": 10.0,
"ServantConvertRateModifier": 20.0,
"Death_DurabilityFactorLoss": 0.0,
"Death_DurabilityLossFactorAsResources": 0.0,
"VBloodUnitSettings": [],
"UnlockedAchievements": [],
"UnlockedResearchs": [],
"GameTimeModifiers": {},
"VampireStatModifiers": {},
"UnitStatModifiers_Global": {},
"UnitStatModifiers_VBlood": {},
"EquipmentStatModifiers_Global": {
"ResourceYieldModifier": 5.0
},
"CastleStatModifiers_Global": {
"SafetyBoxLimit": 20,
"TombLimit": 20,
"VerminNestLimit": 20,
"PrisonCellLimit": 50,
"HeartLimits": {
"Level1": {
"FloorLimit": 268,
"ServantLimit": 10,
"HeightLimit": 6
},
"Level2": {
"FloorLimit": 327,
"ServantLimit": 12,
"HeightLimit": 6
},
"Level3": {
"FloorLimit": 408,
"ServantLimit": 15,
"HeightLimit": 6
},
"Level4": {
"FloorLimit": 499,
"ServantLimit": 18,
"HeightLimit": 6
},
"Level5": {
"FloorLimit": 600,
"ServantLimit": 20,
"HeightLimit": 6
}
},
"CastleLimit": 5
},
"PlayerInteractionSettings": {
"VSPlayerWeekdayTime": {},
"VSPlayerWeekendTime": {},
"VSCastleWeekdayTime": {},
"VSCastleWeekendTime": {}
},
"TraderModifiers": {
"StockModifier": 5.01
}
}
Thanks man, i had a comma at the End that was my mistake.