Fleets Num Divisions := X
Defines the rules for amount of fleets to change through the game.
Example:
Code:
Fleets Div 1 Max Amount of Ships := 20
Fleets Div 1 Max Amount of Planets := 0
Fleets Div 1 Num Fleets := 2
Starting item. If total amount of ships in empire <= 20 then AI will form 2 fleets per empire. If amount of ships > 20 then go to Fleets Div 2 item.
Code:
Fleets Div 2 Max Amount of Ships := 60
Fleets Div 2 Max Amount of Planets := 0
Fleets Div 2 Num Fleets := 3
So, if 20<amount of ship<=60 AI will form 3 fleets per empire. Etc.
Last item usually looks like this:
Code:
Fleets Div X Max Amount of Ships := 100000
Fleets Div X Max Amount of Planets := 0
Fleets Div X Num Fleets := 10
Maximum amount of fleets for your AI will be 10, because total amount of ships will be always below 100000.
You can make make fleet amount dependant of total number of planets in your empire with
Fleets Div N Max Amount of Planets := xyz, but then you can't refer to amount of ships item (must use Fleets Div X Max Amount of Ships := 0)
Quote:
Fleets Percentage of Ships For Fleets - 100%, to take advantage of fleet training.
Fleets Dont Use For Num Turns - 0, so that the AI puts ships into fleets right away.
|
AI doesn't care about training.
Oh, and colonizers have nothing to do with fleets, they don't join them.