[Help] Civilisation Bonus, UU and UB not loading

thinkingnut

Warlord
Joined
Sep 18, 2013
Messages
146
Hi All,

I've recently programmed a new civilisation bonus, UU and UB for my mod, but for some reason, they do not show up in game. Why might this be? I've attached the zip file of my mod for your inspection.

Many thanks, people.
 

Attachments

  1. You've spelled a table name incorrectly and also you have not provided a definition of the Modifiers you are referencing in the table you named incorrectly.
    Code:
    [3613478.454] [Gameplay] ERROR: no such table: ModfierArguments
    [3613478.454] [Gameplay]: In Query - insert into ModfierArguments('ModifierId', 'Name', 'Value') values (?, ?, ?);
    [3613478.454] [Gameplay]: In XMLSerializer while updating table ModfierArguments from file Warren_Civilizations.xml.
  2. Therefore these never get read by the game
    Code:
    	<CivilizationTraits>
    		<Row CivilizationType="CIVILIZATION_WARREN" TraitType="TRAIT_CIVILIZATION_WONDERHEAVEN"/>
    		<Row CivilizationType="CIVILIZATION_WARREN" TraitType="TRAIT_CIVILIZATION_BUILDING_WARRENSOULSTONE"/>
    		<Row CivilizationType="CIVILIZATION_WARREN" TraitType="TRAIT_CIVILIZATION_UNIT_WORKER"/>	
    	</CivilizationTraits>
  3. Once you fix the mis-spelled table-name you will start to get shunted back to the game's main menu because none of the modifiers you are providing arguments and a <TraitModifiers> reference to are defined within table Modifiers
 
  1. You've spelled a table name incorrectly and also you have not provided a definition of the Modifiers you are referencing in the table you named incorrectly.
    Code:
    [3613478.454] [Gameplay] ERROR: no such table: ModfierArguments
    [3613478.454] [Gameplay]: In Query - insert into ModfierArguments('ModifierId', 'Name', 'Value') values (?, ?, ?);
    [3613478.454] [Gameplay]: In XMLSerializer while updating table ModfierArguments from file Warren_Civilizations.xml.
  2. Therefore these never get read by the game
    Code:
        <CivilizationTraits>
            <Row CivilizationType="CIVILIZATION_WARREN" TraitType="TRAIT_CIVILIZATION_WONDERHEAVEN"/>
            <Row CivilizationType="CIVILIZATION_WARREN" TraitType="TRAIT_CIVILIZATION_BUILDING_WARRENSOULSTONE"/>
            <Row CivilizationType="CIVILIZATION_WARREN" TraitType="TRAIT_CIVILIZATION_UNIT_WORKER"/>    
        </CivilizationTraits>
  3. Once you fix the mis-spelled table-name you will start to get shunted back to the game's main menu because none of the modifiers you are providing arguments and a <TraitModifiers> reference to are defined within table Modifiers

As usual, thank you very much for the help, LeeS. It's working now!
 
Back
Top Bottom