Right, current plan:
To divide the world up into small areas of 2-6 cities, which would all need to be conquered before subjugation is avalible. Subjugation goverment types would be increaesd to around 100 turns to build, to represnet the time required to assimilate the population into the empire. This I think is a good idea because it will encourage people to use the allied type goverments at first, and only move onto subjugation once the province is safe from external threat, which is historical I belive.
Thus the script runs like this:
Code:
monitor_event FactionEndTurn FactionType romans_julii
and I_LocalFaction romans_juli
and I_CompareCounter seleukids1 = 0
and I_TurnNumber > 1
if I_settlementOwner Ivernis = romans_julii
and I_SettlementOwner Emain_Macha = romans_julii
console_command create_building Ivernis expansion
console_command create_building Emain_Macha expansion
set_counter seleukids1= 1
terminate_monitor
end_if
monitor_event FactionEndTurn FactionType romans_julii
and I_LocalFaction romans_juli
and I_CompareCounter seleukids2 = 0
and I_TurnNumber > 1
if I_settlementOwner Ynys_mon = romans_julii
and I_SettlementOwner Caern_Brigantae = romans_julii
and I_SettlementOwner Ratae = romans_julii
console_command create_building Ynys_mon expansion
console_command create_building Caern_Brigantae expansion
console_command create_building Ratae expansion
set_counter seleukids2= 1
terminate_monitor
end_if
This being the scripts for the seleukid sunjugation of Ireland and northern England respectivley. Again any thoughts are appreciated, especialy an opinion of am experinced scripter as to wether this will work or nor.
Bookmarks