In the order Arsenal of Democracy\scenarios\1936 you find the files japan.inc, uk.inc and usa.inc. They have in common the following corrupt entries:
These entries lack proper costs. If not played by a human the costs will be set to 0 and so will be the daily progress be 0, too. It may even lead to a lack of convois because the AI thinks it already builds concoys. But it does not. In order to fix it the proper costs of 2 IC need to be added:
Code:
convoy_development =
{ id = { type = 13016 id = 1000 }
name = ""
date = { year = 1950 month = november day = 5 }
close_when_finished = yes
retooling_time = 60.0000
size = 99
type = transports
}
Code:
convoy_development =
{ id = { type = 12700 id = 1000 }
name = ""
date = { year = 1950 month = november day = 5 }
close_when_finished = yes
retooling_time = 60.0000
size = 99
type = transports
}
Code:
convoy_development =
{ id = { type = 14800 id = 1000 }
name = ""
date = { year = 1950 month = november day = 5 }
close_when_finished = yes
retooling_time = 60.0000
size = 99
type = transports
}
These entries lack proper costs. If not played by a human the costs will be set to 0 and so will be the daily progress be 0, too. It may even lead to a lack of convois because the AI thinks it already builds concoys. But it does not. In order to fix it the proper costs of 2 IC need to be added:
Code:
convoy_development =
{ cost = 2
id = { type = 13016 id = 1000 }
name = ""
date = { year = 1950 month = november day = 5 }
close_when_finished = yes
retooling_time = 60.0000
size = 99
type = transports
}
Code:
convoy_development =
{ cost = 2
id = { type = 12700 id = 1000 }
name = ""
date = { year = 1950 month = november day = 5 }
close_when_finished = yes
retooling_time = 60.0000
size = 99
type = transports
}
Code:
convoy_development =
{ cost = 2
id = { type = 14800 id = 1000 }
name = ""
date = { year = 1950 month = november day = 5 }
close_when_finished = yes
retooling_time = 60.0000
size = 99
type = transports
}
Upvote
0