• We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.

Akkilas

Corporal
52 Badges
Aug 18, 2010
44
0
  • Arsenal of Democracy
  • Warlock 2: Wrath of the Nagas
  • Warlock 2: The Exiled
  • Warlock: Master of the Arcane
  • Rome: Vae Victis
  • Victoria 2: Heart of Darkness
  • Victoria 2: A House Divided
  • Sword of the Stars II
  • Sword of the Stars
  • Rome Gold
  • Europa Universalis: Rome
  • Victoria: Revolutions
  • Lost Empire - Immortals
  • Heir to the Throne
  • For The Glory
  • Europa Universalis III Complete
  • Europa Universalis III: Chronicles
  • Divine Wind
  • Europa Universalis III
  • Darkest Hour
  • Hearts of Iron Anthology
  • Crusader Kings II: Horse Lords
  • Stellaris: Ancient Relics
  • Stellaris
  • Crusader Kings II: Reapers Due
  • Stellaris: Digital Anniversary Edition
  • Stellaris: Leviathans Story Pack
  • Stellaris - Path to Destruction bundle
  • BATTLETECH
  • Stellaris: Lithoids
  • Age of Wonders III
  • Stellaris: Humanoids Species Pack
  • Stellaris: Apocalypse
  • Stellaris: Distant Stars
  • BATTLETECH: Flashpoint
  • Stellaris: Megacorp
  • Crusader Kings II: Way of Life
  • Mount & Blade: With Fire and Sword
  • 500k Club
  • Crusader Kings II: Charlemagne
  • Victoria 2
  • Europa Universalis III Complete
  • Europa Universalis III Complete
  • Crusader Kings II
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: The Republic
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: Sunset Invasion
I've run across a problem I can't seem to solve; I've added a few new techs to NAVAL and they function fine, but the string names for SHORT_TECH_APP_NAVAL_[id]_NAME seem to be completely ignored, along with the string names for the second and fourth component names.

Here are my tech_names.csv modifications and some in-game screens for clarification.

Code:
TECH_APP_NAVAL_49_NAME;Optimized Construction;;;;;;;;;x
TECH_APP_NAVAL_49_DESC;;;;;;;;;;x
TECH_CMP_NAVAL_49_1_NAME;;;;;;;;;;x
TECH_CMP_NAVAL_49_2_NAME;;;;;;;;;;x
TECH_CMP_NAVAL_49_3_NAME;;;;;;;;;;x
TECH_CMP_NAVAL_49_4_NAME;;;;;;;;;;x
TECH_CMP_NAVAL_49_5_NAME;;;;;;;;;;x
SHORT_TECH_APP_NAVAL_49_NAME;Optimization;;;;;;;;;x
TECH_APP_NAVAL_50_NAME;Improved Transport;;;;;;;;;x
TECH_APP_NAVAL_50_DESC;;;;;;;;;;x
TECH_CMP_NAVAL_50_1_NAME;Reinforced Hull Design;;;;;;;;;x
TECH_CMP_NAVAL_50_2_NAME;Efficient Engine Turbines;;;;;;;;;x
TECH_CMP_NAVAL_50_3_NAME;Specialized Cargo Holds;;;;;;;;;x
TECH_CMP_NAVAL_50_4_NAME;Optical Rangefinder;;;;;;;;;x
TECH_CMP_NAVAL_50_5_NAME;Transport Prototype Tests;;;;;;;;;x
SHORT_TECH_APP_NAVAL_50_NAME;Improved;;;;;;;;;x
TECH_APP_NAVAL_51_NAME;Super Transport;;;;;;;;;x
TECH_APP_NAVAL_51_DESC;;;;;;;;;;x
TECH_CMP_NAVAL_51_1_NAME;Streamlined Hull Design;;;;;;;;;x
TECH_CMP_NAVAL_51_2_NAME;Hydro-Powered Engine Turbines;;;;;;;;;x
TECH_CMP_NAVAL_51_3_NAME;Honeycomb Storage Compartments;;;;;;;;;x
TECH_CMP_NAVAL_51_4_NAME;Early Warning Radar System;;;;;;;;;x
TECH_CMP_NAVAL_51_5_NAME;Threshold Tests;;;;;;;;;x
SHORT_TECH_APP_NAVAL_51_NAME;Super;;;;;;;;;x

navaltech.png

componentnames.png


I have not had this problem in any other tech area, so i believe it's exclusive to the Naval tree. If anyone has encountered this problem before and knows how to fix it or work around it, I'd appreciate some advice. Thanks.
 
Last edited:
I've already checked the file over and can't find any problem with it. All the techs are set up in the same fashion as the existing ones, so there is no reason for it to break like this.

Code:
  # Optimized Construction
  application =
  { id        = 3490
    name      = TECH_APP_NAVAL_49_NAME
    desc      = TECH_APP_NAVAL_49_DESC
    position  = { x = 24 y = 328 }
    year      = 1936
    # ?
    component = { id = 3491 name = TECH_CMP_NAVAL_49_1_NAME type = naval_engineering difficulty = 8 }
    # ?
    component = { id = 3492 name = TECH_CMP_NAVAL_49_2_NAME type = naval_engineering difficulty = 8 }
    # ?
    component = { id = 3493 name = TECH_CMP_NAVAL_49_3_NAME type = industrial_engineering difficulty = 8 }
    # ?
    component = { id = 3494 name = TECH_CMP_NAVAL_49_4_NAME type = industrial_engineering difficulty = 8 }
    # ?
    component = { id = 3495 name = TECH_CMP_NAVAL_49_5_NAME type = management difficulty = 8 }
    required  = { 3490 }
    effects =
      { command = { type = build_time which = destroyer value = -5 }
	command = { type = build_time which = light_cruiser value = -5 }
	command = { type = build_time which = heavy_cruiser value = -5 }
	command = { type = build_time which = battlecruiser value = -10 }
	command = { type = build_time which = battleship value = -10 }
	command = { type = build_time which = carrier value = -10 }
	command = { type = build_time which = escort_carrier value = -5 }
	command = { type = build_time which = transport value = -5 }
    }
  }

  # Improved Transport
  application =
  { id        = 3500
    name      = TECH_APP_NAVAL_50_NAME
    desc      = TECH_APP_NAVAL_50_DESC
    position  = { x = 24 y = 344 }
    year      = 1943
    # Reinforced Hull Design
    component = { id = 3501 name = TECH_CMP_NAVAL_50_1_NAME type = naval_engineering difficulty = 6 }
    # Efficient Engine Turbines
    component = { id = 3502 name = TECH_CMP_NAVAL_50_2_NAME type = mechanics difficulty = 7 }
    # Specialized Cargo Holds
    component = { id = 3503 name = TECH_CMP_NAVAL_50_3_NAME type = naval_engineering difficulty = 6 }
    # Optical Rangefinder
    component = { id = 3504 name = TECH_CMP_NAVAL_50_4_NAME type = electronics difficulty = 5 }
    # Transport Prototype Tests
    component = { id = 3505 name = TECH_CMP_NAVAL_50_5_NAME type = technical_efficiency difficulty = 5 double_time = yes }
    required  = { 3490 }
    effects =
      { command = { type = new_model which = transport value = 1 }
	command = { type = scrap_model which = transport value = 0 }
    }
  }

  # Super Transport
  application =
  { id        = 3510
    name      = TECH_APP_NAVAL_51_NAME
    desc      = TECH_APP_NAVAL_51_DESC
    position  = { x = 24 y = 360 }
    year      = 1953
    # Streamlined Hull Design
    component = { id = 3511 name = TECH_CMP_NAVAL_51_1_NAME type = naval_engineering difficulty = 7 }
    # Hydro-Powered Engine Turbines
    component = { id = 3512 name = TECH_CMP_NAVAL_51_2_NAME type = mechanics difficulty = 8 }
    # Honycomb Storage Compartments
    component = { id = 3513 name = TECH_CMP_NAVAL_51_3_NAME type = naval_engineering difficulty = 7 }
    # Early Warning Radar System
    component = { id = 3514 name = TECH_CMP_NAVAL_51_4_NAME type = electronics difficulty = 5 }
    # Threshold Tests
    component = { id = 3515 name = TECH_CMP_NAVAL_51_5_NAME type = technical_efficiency difficulty = 5 double_time = yes }
    required  = { 3500 }
    effects =
      { command = { type = new_model which = transport value = 2 }
	command = { type = scrap_model which = transport value = 1 }
    }
  }