Mod will not show up on Modbar whenever I builld it in ModBuddy

Stikarz

Chieftain
Joined
Mar 22, 2017
Messages
2
I do not know what is wrong with this, could somebody tell me what the issue is?
 

Attachments

Moderator Action: The Civ 5 Project and Mod development is for specific mods with their own sub-forums. All queries/requests for help go in the main Civ 5 Creation and Customisation forum.
 
  1. No such thing as BUILDINGCLASS_ROYAL_TOMB
    Code:
      <Civilization_BuildingClassOverrides>
        <Row>
          <CivilizationType>CIVILIZATION_KI_BODEKI</CivilizationType>
          <BuildingClassType>BUILDINGCLASS_ROYAL_TOMB</BuildingClassType>
          <BuildingType>BUILDING_KI_ROYAL_MAUSOLEUM </BuildingType>
        </Row>
      </Civilization_BuildingClassOverrides>
    Also as you have defined it, there is no such thing as "BUILDING_KI_ROYAL_MAUSOLEUM ". You cannot have the extra empty space.
  2. You haven't defined the unit as a combat unit
    Code:
    <Combat>0</Combat>
    <RangedCombat>0</RangedCombat>
    yet you have
    Code:
      <Unit_AITypes>
        <Row>
          <UnitType>UNIT_KI_GEOLOGIST</UnitType>
          <UnitAIType>UNITAI_RANGED</UnitAIType>
        </Row>
      </Unit_AITypes>
    
    and
    
      <Unit_ClassUpgrades>
        <Row>
          <UnitType>UNIT_KI_GEOLOGIST</UnitType>
          <UnitClassType>UNITCLASS_KNIGHT</UnitClassType>
        </Row>
      </Unit_ClassUpgrades>
    
    and etc.
  3. These do not match
    Code:
      <Civilization_Leaders>
        <Row>
          <CivilizationType>CIVILIZATION_KI_BODEKI</CivilizationType>
          <LeaderheadType>LEADER_GRANT_PENNINGTON</LeaderheadType>
        </Row>
      </Civilization_Leaders>
    and
    Code:
    <GameData>
      <Leaders>
        <Row>
          <Type>KI_GRANT_PENNINGTON</Type>
          .....
    Since the civilization-selection set-up page is actually organized by leader, and then civ, your leader may be successfully being added to the game, but won't show on the selection screen because he is not assigned to any civilization.
 
Back
Top Bottom