This is the segment from the outputs fli dealing with road construction. I want to set to so that the AI sets aside 5% of PW for road construction. How would I do that?
// pick roads or no roads
output inst_road_coef[0.0, 100.0] = 0.0
tri zero_roads(inst_road_coef, 0.0, 0.001)
tri no_roads(inst_road_coef, 0.05, 0.001) // WW from .01
tri yes_roads(inst_road_coef, 1.0, 0.001)
I think most of the stuff I want to tinker with is in the outputs fli, so if you could pick a section, and give a detailed explanation of what each term and number means, I think I could make some more improvements to the game.
[This message has been edited by WesW (edited October 13, 1999).]
// pick roads or no roads
output inst_road_coef[0.0, 100.0] = 0.0
tri zero_roads(inst_road_coef, 0.0, 0.001)
tri no_roads(inst_road_coef, 0.05, 0.001) // WW from .01
tri yes_roads(inst_road_coef, 1.0, 0.001)
I think most of the stuff I want to tinker with is in the outputs fli, so if you could pick a section, and give a detailed explanation of what each term and number means, I think I could make some more improvements to the game.
[This message has been edited by WesW (edited October 13, 1999).]
Comment