Default production items no longer available

The permanent production items such as economic stimulus no longer show up in the queue regardless of the race I play. I am playing a vanilla game, no DLCs. I just finished a game with no issues so  if Steam pushed an update I don't know. The version is 4.5

I have a debug file but it is very big and there is no way to post it as an attachment.

30,545 views 6 replies
Reply #1 Top

I'd doubt this will get fixed. The devs abandoned the base game a long time ago. They replaced it with the Crusade expansion. Now a days they expect new players to start with Crusade, Retribution, and Mega events DLC. These DLC and the base game are sold together and are expected to be installed together.

Reply #2 Top


The permanent production items such as economic stimulus no longer show up in the queue regardless of the race I play. I am playing a vanilla game, no DLCs. I just finished a game with no issues so  if Steam pushed an update I don't know. The version is 4.5

I have a debug file but it is very big and there is no way to post it as an attachment.

Is this new in 4.5?  And by no DLCs or expansions, you don't have Crusade?

Reply #3 Top

If you want to try something you can open up PlanetaryProjectDefs.xml which is in the data\game folder and the first project should be the economic stimulus.

Try replacing it with this code:

Code
  1.  </div>
  2. <div>
  3. <div>
  4. <div>  &lt;PlanetaryProject&gt;</div>
  5. <div>    &lt;InternalName&gt;ProjectEconomicStimulus&lt;/InternalName&gt;</div>
  6. <div>    &lt;DisplayName&gt;ProjectEconomicStimulus_Name&lt;/DisplayName&gt;</div>
  7. <div>    &lt;ShortDescription&gt;ProjectEconomicStimulus_ShortDec&lt;/ShortDescription&gt;</div>
  8. <div>    &lt;Icon&gt;GC3_Wealth_Priority_Icon.png&lt;/Icon&gt;</div>
  9. <div>    &lt;ManufacturingPerBonus&gt;10&lt;/ManufacturingPerBonus&gt;</div>
  10. <div>    &lt;BonusMax&gt;1&lt;/BonusMax&gt;</div>
  11. <div>    &lt;Bonus&gt;</div>
  12. <div>      &lt;EffectType&gt;ColonyGrossIncome&lt;/EffectType&gt;</div>
  13. <div>      &lt;Target&gt;</div>
  14. <div>        &lt;TargetType&gt;Colony&lt;/TargetType&gt;</div>
  15. <div>      &lt;/Target&gt;</div>
  16. <div>      &lt;BonusType&gt;Multiplier&lt;/BonusType&gt;</div>
  17. <div>      &lt;Value&gt;0.05&lt;/Value&gt;</div>
  18. <div>    &lt;/Bonus&gt;</div>
  19. <div>    &lt;Prerequ&gt;</div>
  20. <div>      &lt;Unavailable&gt;true&lt;/Unavailable&gt;</div>
  21. <div>      &lt;ColonySponsoringShipyard&gt;true&lt;/ColonySponsoringShipyard&gt;</div>
  22. <div>    &lt;/Prerequ&gt;</div>
  23. <div>  &lt;/PlanetaryProject&gt;</div>
  24. </div>
  25. </div>
  26. <div>
Reply #4 Top

So in this case, try elimianting the unavailable true part.

Reply #5 Top

This is the vanilla game. NO DLCs

Reply #6 Top

Quoting Frogboy, reply 4

So in this case, try elimianting the unavailable true part.

 

This did the trick. Thx