stupac
03-21-2008, 02:29
I want to make sure I'm doing this right, if someone could quickly review it for me. I'm trying to edit the EBBS_SCRIPT to give the maks a boost in the early game (namely cause they always get defeated KH early in every one of my last campaigns) and to give the Romani a boost later in the game so they can actually become a formidable empire rather than just an Italian state, like they have been in all my other games.
I edited the Romani money script to look like this:
;After 20 years
monitor_event SettlementTurnStart FactionType seleucid
and not FactionIsLocal
and I_TurnNumber > 80
and Treasury < 200000
if I_NumberOfSettlements seleucid < 3
console_command add_money seleucid, 900
end_if
if I_NumberOfSettlements seleucid < 6
console_command add_money seleucid, 300
end_if
if I_NumberOfSettlements seleucid < 9
console_command add_money seleucid, 300
end_if
if I_NumberOfSettlements seleucid < 16
and I_CompareCounter numPlayerSettlements > 10
console_command add_money seleucid, 600
end_if
if I_NumberOfSettlements seleucid < 25
and I_CompareCounter numPlayerSettlements > 18
console_command add_money seleucid, 600
end_if
if I_NumberOfSettlements seleucid < 35
and I_CompareCounter numPlayerSettlements > 30
console_command add_money seleucid, 600
end_if
console_command add_money seleucid, 600
end_monitor
I edited the Makedonian money script to this:
;first 20 years
monitor_event SettlementTurnStart FactionType macedon
and not FactionIsLocal
and I_TurnNumber < 81
and Treasury < 150000
if I_NumberOfSettlements macedon > 24
console_command add_money macedon, 1200
end_if
if I_NumberOfSettlements macedon < 25
console_command add_money macedon, 600
end_if
if I_NumberOfSettlements macedon < 16
console_command add_money macedon, 600
end_if
I basically doubled the money in 2 of the sections. So I think that Makedonia should be then getting 1200 mnai per turn as opposed to 600 until they get over 25 settlements right? And after 20 years the Romani should at most be getting another 900 mnai. Looking at the script though, I've almost doubled their income but it doesn't sound like enough to me, mere pennies. Is this enough or should I increase it more if I want to get the effect I desire? Would it be safe to triple or quadruple the amount? Also, I'm not really familiar with this file, so I wanted to make sure I wasn't doing something completely wrong.
I edited the Romani money script to look like this:
;After 20 years
monitor_event SettlementTurnStart FactionType seleucid
and not FactionIsLocal
and I_TurnNumber > 80
and Treasury < 200000
if I_NumberOfSettlements seleucid < 3
console_command add_money seleucid, 900
end_if
if I_NumberOfSettlements seleucid < 6
console_command add_money seleucid, 300
end_if
if I_NumberOfSettlements seleucid < 9
console_command add_money seleucid, 300
end_if
if I_NumberOfSettlements seleucid < 16
and I_CompareCounter numPlayerSettlements > 10
console_command add_money seleucid, 600
end_if
if I_NumberOfSettlements seleucid < 25
and I_CompareCounter numPlayerSettlements > 18
console_command add_money seleucid, 600
end_if
if I_NumberOfSettlements seleucid < 35
and I_CompareCounter numPlayerSettlements > 30
console_command add_money seleucid, 600
end_if
console_command add_money seleucid, 600
end_monitor
I edited the Makedonian money script to this:
;first 20 years
monitor_event SettlementTurnStart FactionType macedon
and not FactionIsLocal
and I_TurnNumber < 81
and Treasury < 150000
if I_NumberOfSettlements macedon > 24
console_command add_money macedon, 1200
end_if
if I_NumberOfSettlements macedon < 25
console_command add_money macedon, 600
end_if
if I_NumberOfSettlements macedon < 16
console_command add_money macedon, 600
end_if
I basically doubled the money in 2 of the sections. So I think that Makedonia should be then getting 1200 mnai per turn as opposed to 600 until they get over 25 settlements right? And after 20 years the Romani should at most be getting another 900 mnai. Looking at the script though, I've almost doubled their income but it doesn't sound like enough to me, mere pennies. Is this enough or should I increase it more if I want to get the effect I desire? Would it be safe to triple or quadruple the amount? Also, I'm not really familiar with this file, so I wanted to make sure I wasn't doing something completely wrong.