I use a short Python script to change recruit times. Here it is:
Code:
import re
from decimal import *
regex = re.compile('\.[0-9]{1,6}')
the_index = 0
getcontext().prec=10
new_edb = open("export_descr_buildings2.txt", 'w')
for line in open("export_descr_buildings.txt"):
m = regex.search( line )
if m is not None:
match = m.group(0)
new_replacement_rate = str(float(match)*1.5)
new_replacement_rate = "{0}".format(Decimal(new_replacement_rate))
new_line = line.replace(match, new_replacement_rate[1:])
new_edb.write( new_line )
else:
new_edb.write(line)
It essentially replaces the current replacement rate with one that is 1.5 times faster. E.g., .025 becomes .05. To make it 1 for everyone, change new_replacement_rate to 1.0 in the format function call.
DISCLAIMER: I do not regularly use Windows, so I'm unsure about running Python programs on Windows machines. If you're unable I could run your file. It wouldn't take but a few milliseconds to run ;-)