Code:
;----------------- CASH FOR AI ----------------;
monitor_event FactionTurnStart not FactionIsLocal
and FactionType england
and LosingMoney
and Treasury < 0
add_money england 2000
end_monitor
monitor_event FactionTurnStart not FactionIsLocal
and FactionType france
and LosingMoney
and Treasury < 0
add_money france 2000
end_monitor
monitor_event FactionTurnStart not FactionIsLocal
and FactionType hre
and LosingMoney
and Treasury < 0
add_money hre 2000
end_monitor
monitor_event FactionTurnStart not FactionIsLocal
and FactionType spain
and LosingMoney
and Treasury < 0
add_money spain 2000
end_monitor
monitor_event FactionTurnStart not FactionIsLocal
and FactionType venice
and LosingMoney
and Treasury < 0
add_money venice 2000
end_monitor
monitor_event FactionTurnStart not FactionIsLocal
and FactionType sicily
and LosingMoney
and Treasury < 0
add_money sicily 2000
end_monitor
monitor_event FactionTurnStart not FactionIsLocal
and FactionType milan
and LosingMoney
and Treasury < 0
add_money milan 2000
end_monitor
monitor_event FactionTurnStart not FactionIsLocal
and FactionType scotland
and LosingMoney
and Treasury < 0
add_money scotland 2000
end_monitor
monitor_event FactionTurnStart not FactionIsLocal
and FactionType byzantium
and LosingMoney
and Treasury < 0
add_money byzantium 2000
end_monitor
monitor_event FactionTurnStart not FactionIsLocal
and FactionType russia
and LosingMoney
and Treasury < 0
add_money russia 2000
end_monitor
monitor_event FactionTurnStart not FactionIsLocal
and FactionType moors
and LosingMoney
and Treasury < 0
add_money moors 2000
end_monitor
monitor_event FactionTurnStart not FactionIsLocal
and FactionType turks
and LosingMoney
and Treasury < 0
add_money turks 2000
end_monitor
monitor_event FactionTurnStart not FactionIsLocal
and FactionType egypt
and LosingMoney
and Treasury < 0
add_money egypt 2000
end_monitor
monitor_event FactionTurnStart not FactionIsLocal
and FactionType denmark
and LosingMoney
and Treasury < 0
add_money denmark 2000
end_monitor
monitor_event FactionTurnStart not FactionIsLocal
and FactionType portugal
and LosingMoney
and Treasury < 0
add_money portugal 2000
end_monitor
monitor_event FactionTurnStart not FactionIsLocal
and FactionType portugal
and LosingMoney
and Treasury < 0
add_money portugal 2000
end_monitor
monitor_event FactionTurnStart not FactionIsLocal
and FactionType poland
and LosingMoney
and Treasury < 0
add_money poland 2000
end_monitor
monitor_event FactionTurnStart not FactionIsLocal
and FactionType hungary
and LosingMoney
and Treasury < 0
add_money hungary 2000
end_monitor
monitor_event FactionTurnStart not FactionIsLocal
and FactionType papal_states
and LosingMoney
and Treasury < 0
add_money papal_states 2000
end_monitor
monitor_event FactionTurnStart not FactionIsLocal
and FactionType aztecs
and LosingMoney
and Treasury < 0
add_money aztecs 2000
end_monitor
monitor_event FactionTurnStart not FactionIsLocal
and FactionType mongols
and LosingMoney
and Treasury < 0
add_money mongols 2000
end_monitor
monitor_event FactionTurnStart not FactionIsLocal
and FactionType timurids
and LosingMoney
and Treasury < 0
add_money timurids 2000
end_monitor
(this is a part of the full thing)
That's what i put in but it still doesn't work. Any ideas?