I want to give Japan a line of 99 convoy transports at game start. I start the 1936 scenario, load as Japan, and lay down a line of 99 convoy transports. I exit the game, load the save game file and find:
convoy_development = {
id = { type = 4712 id = 2149 }
name = ""
progress = 0.0000
location = 0
cost = 4.0000
date = {
year = 1948
month = october
day = 6
hour = 0
}
manpower = 1.0000
total_progress = 0.0000
size = 99
done = 0
days = 4562
days_for_first = 68
gearing_bonus = 0.0000
type = transports
}
I copy this into scenarios/1936/Japan and save it. When I load the 1936 scenario I get and error message for "convoy_development" and it crashes. If I lay down a division or a ship and copy the exact statement into the nation's scenario file it works.
How do I make this work?
I just figured it out. The above statement worked in vanilla but does not work for the mod I am changing because that mod has dormant divisions at the end of the file. However, if I move the above statement ahead of the dormant division listing, it works fine. Who would have ever thunk it?
convoy_development = {
id = { type = 4712 id = 2149 }
name = ""
progress = 0.0000
location = 0
cost = 4.0000
date = {
year = 1948
month = october
day = 6
hour = 0
}
manpower = 1.0000
total_progress = 0.0000
size = 99
done = 0
days = 4562
days_for_first = 68
gearing_bonus = 0.0000
type = transports
}
I copy this into scenarios/1936/Japan and save it. When I load the 1936 scenario I get and error message for "convoy_development" and it crashes. If I lay down a division or a ship and copy the exact statement into the nation's scenario file it works.
How do I make this work?
I just figured it out. The above statement worked in vanilla but does not work for the mod I am changing because that mod has dormant divisions at the end of the file. However, if I move the above statement ahead of the dormant division listing, it works fine. Who would have ever thunk it?
Last edited: