Anyone know if this mod exists?

I'm looking for a mod that will speed up the gameplay similiar to how it can be increased in single player games. Ive searched but have not been able to find one that works with entrenchment. Please post a link if you know of one that is actually working.

1,152 views 2 replies
Reply #1 Top

In Sins there's a button you click to rename ships/planets/starbases. To the left and right of this button, are two others. The one on the Left will SLOW DOWN gameplay, the one on the Right will INCREASE the gameplay speed. I hope this helps you.

Reply #2 Top

I think he might be talking about MP? Or he wants it even faster than x8?

I don't know if there is an mod but it is quite simple to make. Just make a new mod folder(e.g.FastGPMod) only containing a "gameinfo".
The whole folder should look like this:
"C:\Users\UserName\AppData\Local\Ironclad Games\Sins of a Solar Empire\Mods-Entrenchment v1.03\FastGPMod\GameInfo\"

Then you download this file: http://www.filefront.com/14098557/Gameplay.constants and put it in the new folder.

You can open the gameplay.constants with an text editor.

In the file you will find this part(Near the end):

Code: c#
  1.     buildSpeedData-Slow
  2.         shipBuildRateGameSpeedScalar 0.0
  3.         moduleBuildRateGameSpeedScalar 0.0
  4.     buildSpeedData-Normal
  5.         shipBuildRateGameSpeedScalar 0.10
  6.         moduleBuildRateGameSpeedScalar 0.10
  7.     buildSpeedData-Fast
  8.         shipBuildRateGameSpeedScalar 0.20
  9.         moduleBuildRateGameSpeedScalar 0.20
  10.     cultureSpeedData-Slow
  11.         cultureConnectionReferenceLength 250000
  12.         allegianceShiftRateScalar 0.75
  13.     cultureSpeedData-Normal
  14.         cultureConnectionReferenceLength 500000
  15.         allegianceShiftRateScalar 1.0
  16.     cultureSpeedData-Fast
  17.         cultureConnectionReferenceLength 750000
  18.         allegianceShiftRateScalar 1.25
  19.     researchSpeedData-Slow
  20.         researchRateGameSpeedScalar -4.75
  21.     researchSpeedData-Normal
  22.         researchRateGameSpeedScalar -1.3
  23.     researchSpeedData-Fast
  24.         researchRateGameSpeedScalar -0.15
  25.     incomeSpeedData-Slow
  26.         incomeRateGameSpeedScalar 0.0
  27.     incomeSpeedData-Normal
  28.         incomeRateGameSpeedScalar 0.15
  29.     incomeSpeedData-Fast
  30.         incomeRateGameSpeedScalar 0.30
  31.     fleetSupplyData-Small
  32.         fleetSupplyScalar 0.75
  33.     fleetSupplyData-Normal
  34.         fleetSupplyScalar 1.0
  35.     fleetSupplyData-Large
  36.         fleetSupplyScalar 1.25
  37.     shipPhysicsSpeedData-Slow
  38.         shipLinearMaxSpeedGameSpeedScalar 0.0
  39.         shipLinearAccelerationGameSpeedScalar 0.0
  40.         shipLinearDecelerationGameSpeedScalar 0.0
  41.     shipPhysicsSpeedData-Normal
  42.         shipLinearMaxSpeedGameSpeedScalar 0.30
  43.         shipLinearAccelerationGameSpeedScalar 0.30
  44.         shipLinearDecelerationGameSpeedScalar 0.30
  45.     shipPhysicsSpeedData-Fast
  46.         shipLinearMaxSpeedGameSpeedScalar 0.6
  47.         shipLinearAccelerationGameSpeedScalar 0.6
  48.         shipLinearDecelerationGameSpeedScalar 0.6

This will affect the settings you can set at the beginning of a game

I think most of the values are pretty self-explaining, so just modifiy the values you want, save it and activate the mod(Named FastGPMod in this case)