Firetuner question

Copycat665

Chieftain
Joined
Aug 13, 2012
Messages
12
Hey there.

First of, sorry if this is the wrong place for this post, but wasn't sure where else to put it.

I like to play some of my Civ games in certain era's, meaning I need to find a way to stop era's from progressing to, say, Industrial. Sadly the few mods that supported this in the Vanilla game, were outdated for Rise and Fall, and I've been unable to find something that works.

Now I just started playing around with the Firetuner for ingame editing, but I've yet to find anything to help me stop Techs from progressing. There's only an option to remove all techs from AI's, which isn't what I'm looking for.

Anyone got an idea if this is possible to achieve?

Thank you for your time.
 
I don't think you can do this with the firetuner, well at least not easily. If you want to try a quick fix, you can do is this.

Download the developer tools, and open up modbuddy.
Create a new empty project.
Add an SQL file.
Put this line below the green text:

UPDATE Technologies SET Cost='10000' WHERE EraType='ERA_RENAISSANCE' ;

In the modbuddy toolbar, click 'project' and then go to properties and add an update database action, then add the file you just created.
Finally build the solution, and try it in game. This should work, but I haven't tried it.
 
You could also probably do this in a mod with SQL if you aren't using other mods that also reference technologies:

Code:
delete from technologies where eratype in ('ERA_ATOMIC','ERA_INDUSTRIAL', 'ERA_MODERN', 'ERA_INFORMATION');


Just input whatever eras you want.
 
Hi - I have a firetuner question. How do you get the City panel to open up in firetuner for civ vi? I have player, players, and map panels but no cities. Please let me know. Thanks
 
Hi - I have a firetuner question. How do you get the City panel to open up in firetuner for civ vi? I have player, players, and map panels but no cities. Please let me know. Thanks

In the Firetuner, go to "File" then "Open Panel".

Navigate to your debug folder, this is where mine is. "Program Files (x86)\Steam\steamapps\common\Sid Meier's Civilization VI\Debug"

Click on any of those, click "open", and you're good!
 
Back
Top Bottom