Is there a way to slow production

Armada 2526 continues the great tradition of space opera games. You guide your race from its first interstellar journeys, until it becomes a mighty galactic empire. Along the way, you'll explore the galaxy, conduct research, diplomacy and trade, found new colonies, maneuver mighty star fleets, and fight epic battles.

Moderator: MOD_Armada2526

tornnight
Posts: 139
Joined: Sat Jun 12, 2010 9:38 pm

Is there a way to slow production

Post by tornnight »

I own SuperNova.

I don't quite enjoy the extremely rapid pace of production and colony expansion.

Is there any way to slow down production, increase production costs with a mod or otherwise?

Thanks.
User avatar
Anguille
Posts: 538
Joined: Wed Jun 28, 2006 12:10 pm
Location: Hyper-cruiser "Phantom"

RE: Is there a way to slow production

Post by Anguille »

It should be possible to mod but i am not a modder so haven't done it.

Suggestions to make it slower:

1) slow down the research rate...new buildings will take time before they are available, same for Ark ships.
2) Choose sparse density...less stars and planets but more important. Also contact with other races will be less quickly.
3) Select a larger galaxy, you'll get more time....i've had games where i didn't meet a single alien race during the first 100 turns...[;)]

Cheers
tornnight
Posts: 139
Joined: Sat Jun 12, 2010 9:38 pm

RE: Is there a way to slow production

Post by tornnight »

I'm using the slowest research, very sparse, 300x300 galaxy.

It's ok but production for anything finishes in about 2 turns. So as long as I can reach colonizable worlds (quite easy), I can colonize extremely quickly.
code99
Posts: 33
Joined: Tue Mar 02, 2010 12:04 am

RE: Is there a way to slow production

Post by code99 »

There is a "simple" way of solving this, like Anguille suggested, through mods.
By editing FacilityTypes.xml located in gamedir/XML/ you can change each structure build time (among other things like cost and upkeep).

I am making a mod that does something similar to that, if you want i can make some adjustments and give it to you, just tell me how slower you want things to be.

tornnight
Posts: 139
Joined: Sat Jun 12, 2010 9:38 pm

RE: Is there a way to slow production

Post by tornnight »

Hmm. Thanks for the clue.

FacilityTypes.xml
DefenceTypes.xml
ShipTypes.xml
GroundUnitTypes.xml

I'm guessing I need to change the Time value to suit me.
tornnight
Posts: 139
Joined: Sat Jun 12, 2010 9:38 pm

RE: Is there a way to slow production

Post by tornnight »

Ok now I need to find a way to slow down population growth. Anyone have any clue where that may be?
code99
Posts: 33
Joined: Tue Mar 02, 2010 12:04 am

RE: Is there a way to slow production

Post by code99 »

That is a bit more complex as it depends on several things like planet quality, type, racial bonuses, techs and so on.
An easy way to do this and still keep each races/faction positive bonuses or negative bonuses to the growth rate is to add growth penalty to specific races or all of them. Open Races.xml and add this line "<Capability Name="Low Growth Rate" Level="x"/>" after the already existing "Capability" lines for each race. The x i colored in red has to be replaced by a number ranging from 0 to 9 where 0 is 10% lower growth rate in game, 1 is 20% lower growth rate in game and so on until 9 that in game translates as 100% lower growth rate.

Example, from this :

Code: Select all

<Race Name ="Human">
 		<ShortDescription>
 			Monkey descendents from Earth
 		</ShortDescription>
 		<LongDescription>
 Chances are that if you're playing this game, you're one of them. The ape descendants survived the perils of war, energy shortages and global warming, and spread out into deep space.
 Their agile minds and willingness to embrace change makes them adept at technology, but with their existence firmly rooted in the dimensions of time and space their ability to use the other dimensions of existence is poor.
 An emphasis on individualism sometimes makes other races wary and slightly mistrustful of humans as they do not understand the way that motivation and moral compass vary from one individual to another. They also dislike the way that democratic government can lead to inconsistent high level policy.
 		</LongDescription>
 		<Symbols Population="@Human_Population" Victory="Art\UI\Victory-Human.jpg" Fleet="FS Human"/>
     <Animation Folder="Art\Animations\Human" Prefix="Human"/>
     <Sound Music ="Human" Accept ="HumanAccept" Talk ="HumanTalk" Reject ="HumanReject" Angry ="HumanAngry"/>
     <Capability Name="Disorderly" Level ="0"/>
   </Race>

to this (note that i've added a new line "<Capability Name="Low Growth Rate" Level="2"/>" just bellow the existing "Capability" line which in game makes the humans get -30% growth rate) :

Code: Select all

<Race Name ="Human">
 		<ShortDescription>
 			Monkey descendents from Earth
 		</ShortDescription>
 		<LongDescription>
 Chances are that if you're playing this game, you're one of them. The ape descendants survived the perils of war, energy shortages and global warming, and spread out into deep space.
 Their agile minds and willingness to embrace change makes them adept at technology, but with their existence firmly rooted in the dimensions of time and space their ability to use the other dimensions of existence is poor.
 An emphasis on individualism sometimes makes other races wary and slightly mistrustful of humans as they do not understand the way that motivation and moral compass vary from one individual to another. They also dislike the way that democratic government can lead to inconsistent high level policy.
 		</LongDescription>
 		<Symbols Population="@Human_Population" Victory="Art\UI\Victory-Human.jpg" Fleet="FS Human"/>
     <Animation Folder="Art\Animations\Human" Prefix="Human"/>
     <Sound Music ="Human" Accept ="HumanAccept" Talk ="HumanTalk" Reject ="HumanReject" Angry ="HumanAngry"/>
     <Capability Name="Disorderly" Level ="0"/>
     <Capability Name="Low Growth Rate" Level="2"/>
   </Race>
Note that by editing the races.xml all factions for the race/s you modify will take the same effects. If you want only certain factions to have this effect edit the factions.xml file.
Obviously for the races that already have a "Capability" line about the low growth rate (like the Qa Qa Assembly) you will only have to increase that number in proportion to the other races so you won't unbalance the game.

I highly suggest you dont edit the .xml files in the game directory but rather make a copy of the files you want to edit and place them in the following structure :

"yourmodname/XML/"

and place that "yourmodname" folder in "My Documents\My Games\Armada 2526\Supernova\Mods" and add the following parameter to your supernova shortcut (add the parameter in the target field) "-mods yourmodname", should look something like this "Z:\games\Armada 2526 SuperNova\Armada2526.exe" -mods MyMod
Keep the spacing and the quotes as shown or it wont work.

code99
tornnight
Posts: 139
Joined: Sat Jun 12, 2010 9:38 pm

RE: Is there a way to slow production

Post by tornnight »

Excellent, thank you for the tip!
gwgardner
Posts: 6909
Joined: Fri Apr 07, 2006 1:23 pm

RE: Is there a way to slow production

Post by gwgardner »

Just wondering if any of you guys have made progress on your mods to slow things down. I'd be glad to test them, if so. Otherwise, I guess I'll attempt the same thing.

As an aside, I'm new to the game and haven't found anything in the manuals or the game itself to indicate how much time a turn represents. Left up to the imagination?


User avatar
Tanaka
Posts: 4871
Joined: Tue Apr 08, 2003 3:42 am
Location: USA

RE: Is there a way to slow production

Post by Tanaka »

ORIGINAL: gwgardner

Just wondering if any of you guys have made progress on your mods to slow things down. I'd be glad to test them, if so. Otherwise, I guess I'll attempt the same thing.

As an aside, I'm new to the game and haven't found anything in the manuals or the game itself to indicate how much time a turn represents. Left up to the imagination?


I would be interested in a slow down mod as well has anyone made anything like this?
Image
User avatar
FirstPappy
Posts: 714
Joined: Tue Sep 12, 2000 8:00 am
Location: NY, USA

RE: Is there a way to slow production

Post by FirstPappy »

Did you check the mod section? Looks like someone did it.
Windows 10 Home 64
AMD Ryzen 7 3700x 3.70Ghz Processor
32 GB Ram
Nvidia GEFORCE GTX1080 w/8 GB
LG 32GK850F 2560x1440
gwgardner
Posts: 6909
Joined: Fri Apr 07, 2006 1:23 pm

RE: Is there a way to slow production

Post by gwgardner »

Yes, I did the Epic Experience Mod to slow things down. See the mods forum.

I'm playing with it now, plus another minor mod I made which adds a 1000 credits to the cost of all ships. I want to drastically cut down on the numbers of ships a player can build. I didn't post that one, because I doubt anyone else wants it.

User avatar
Tanaka
Posts: 4871
Joined: Tue Apr 08, 2003 3:42 am
Location: USA

RE: Is there a way to slow production

Post by Tanaka »

ORIGINAL: gwgardner

Yes, I did the Epic Experience Mod to slow things down. See the mods forum.

I'm playing with it now, plus another minor mod I made which adds a 1000 credits to the cost of all ships. I want to drastically cut down on the numbers of ships a player can build. I didn't post that one, because I doubt anyone else wants it.

Actually that is exactly what I am looking for as well would love if you would post it!
Image
User avatar
FirstPappy
Posts: 714
Joined: Tue Sep 12, 2000 8:00 am
Location: NY, USA

RE: Is there a way to slow production

Post by FirstPappy »

Did you check the mod section? Looks like someone did it.

Did you check the mod section? Looks like he posted it there as a zip attachment.
Windows 10 Home 64
AMD Ryzen 7 3700x 3.70Ghz Processor
32 GB Ram
Nvidia GEFORCE GTX1080 w/8 GB
LG 32GK850F 2560x1440
User avatar
Tanaka
Posts: 4871
Joined: Tue Apr 08, 2003 3:42 am
Location: USA

RE: Is there a way to slow production

Post by Tanaka »

ORIGINAL: Pappy
Did you check the mod section? Looks like someone did it.

Did you check the mod section? Looks like he posted it there as a zip attachment.

He posted his main mod but not the additional minor mod making ships more expensive would love both!
Image
gwgardner
Posts: 6909
Joined: Fri Apr 07, 2006 1:23 pm

RE: Is there a way to slow production

Post by gwgardner »

ok, just saw this, sorry. I will post the ship cost mod too. Look in the mods section for it very soon.

User avatar
Tanaka
Posts: 4871
Joined: Tue Apr 08, 2003 3:42 am
Location: USA

RE: Is there a way to slow production

Post by Tanaka »

ORIGINAL: gwgardner

ok, just saw this, sorry. I will post the ship cost mod too. Look in the mods section for it very soon.

Thanks!!!
Image
User avatar
Marshall Thomas
Posts: 76
Joined: Sun Nov 18, 2007 5:41 am
Contact:

RE: Is there a way to slow production

Post by Marshall Thomas »

Instead of making every ship more expensive by a fixed number (1000), would it be better to increase ship cost by a percentage (like maybe 300%)?

Sould the same increase be applied to planetary defenses, in order to balance ships vs. planets?

also: when playing with very slow technology (30% or lower), does income become too high as a result of having less things to spend it on? When I use The Epic Experience mod, does income become too high as the result of having twice the turns inbetween building and ship completions? If so, what can be done to balance income with lowered production times and research? Thanks in advance.
0360-1275-8904-8300
gwgardner
Posts: 6909
Joined: Fri Apr 07, 2006 1:23 pm

RE: Is there a way to slow production

Post by gwgardner »

Playing that mod I haven't ever had an excess of funds. I've put a mine everywhere I can, and keep taxes low for the most part.

You're probably right about multiplying cost by a fixed percentage, rather than just adding 1000 to each. That would have kept costs proportional.

User avatar
Marshall Thomas
Posts: 76
Joined: Sun Nov 18, 2007 5:41 am
Contact:

RE: Is there a way to slow production

Post by Marshall Thomas »

ORIGINAL: gwgardner

Playing that mod I haven't ever had an excess of funds. I've put a mine everywhere I can, and keep taxes low for the most part.

You're probably right about multiplying cost by a fixed percentage, rather than just adding 1000 to each. That would have kept costs proportional.

When you added 1000 to the cost of each ship, did you do so by going to each ship type in the XML? or is there an easier way?

I'm really interested in making my campaigns slower and more epic; though I don't like playing on large maps and controlling too many systems (makes each system less important and also can be tedius). But I do like playing with the maximum number of races a map will support. So my idea of epic isn't having lots of systems to manage. It's more about slowing things down and, like you, I don't like too many ships in my campaign; as with systems, too many ships makes each ship less significant.

Thanks again for creating this mod. If you add anything to it, I'd be happy to test it.
0360-1275-8904-8300
Post Reply

Return to “Armada 2526 Series”