Recent content by danielcofour

  1. D

    Slowing down science

    If you want a general 25%-50% slowdown, then this is for you: --25% UPDATE Technologies SET Cost = Cost*1.25; --50% UPDATE Technologies SET Cost = Cost*1.5; Although it's a good idea to do the same for civics and great people as well so that they don't get to far ahead of research(ex, still...
  2. D

    Slowing down science

    --Copy-paste this into whichever mod you're using. This was made for Marathon game speed. --Since Marathon is so unbalanced, it may need some tweaking if you're planning --on using this on Standard game speed. ----------------------------------------------- -- Technology cost...
  3. D

    How to remove luxury and strategic resources with workers mod?

    Thanks a lot (note to self: pay more attention next time). I do have a question though: I assume you've tried this one out, have you encountered anything weird related to this, specifically regarding the AI? Have they done something stupid with it, like remove all of their strategic resources...
  4. D

    How to remove luxury and strategic resources with workers mod?

    Thanks for the reply. Yeah, this is way more complicated than it should be. I thought it would come down to a simple XML edit, but apparently not. Thanks again, but I'm not going to go into this.
  5. D

    How to remove luxury and strategic resources with workers mod?

    Basically what I would like is to make luxury and strategic resources behave like bonus resources, ie. you can build districts atop them and workers can remove them. I'm guessing this should be possible through a mod, but I can't find anything related to this in game files. Anyone got any ideas?
  6. D

    How would you set unit costs for each Era?

    Yeah, that should work. I'll check and let you know. Thanks. And as far as I am aware it is SQLite.
  7. D

    How would you set unit costs for each Era?

    Basically what I want to do is something like this: UPDATE Units SET Cost = Cost*0.7 WHERE EraType ='ERA_ANCIENT'; UPDATE Units SET Cost = Cost*0.6 WHERE EraType ='ERA_CLASSICAL'; UPDATE Units SET Cost = Cost*0.5 WHERE EraType ='ERA_MEDIEVAL'; etc... Problem is: that won't work, since EraType...
Back
Top Bottom