Это скрипт денежной помощи ИИ фракциям, в зависимости от сложности игры (Medieval 2: Total War)

Это скрипт денежной помощи ИИ фракциям, в зависимости от сложности игры (Medieval 2: Total War).


;------------------- AI KINGS PURSE BONUS -------------------;
;money granted to AI as they do not carry out missions

monitor_event FactionTurnStart I_TurnNumber >= 0
and CampaignDifficulty = very_hard

if I_IsFactionAIControlled england
increment_kings_purse england 5000
end_if

if I_IsFactionAIControlled france
increment_kings_purse france 5000
end_if

if I_IsFactionAIControlled hre
increment_kings_purse hre 5000
end_if

if I_IsFactionAIControlled scotland
increment_kings_purse scotland 5000
end_if

if I_IsFactionAIControlled spain
increment_kings_purse spain 5000
end_if

if I_IsFactionAIControlled venice
increment_kings_purse venice 5000
end_if

if I_IsFactionAIControlled sicily
increment_kings_purse sicily 5000
end_if

if I_IsFactionAIControlled milan
increment_kings_purse milan 5000
end_if

if I_IsFactionAIControlled byzantium
increment_kings_purse byzantium 5000
end_if

if I_IsFactionAIControlled russia
increment_kings_purse russia 5000
end_if

if I_IsFactionAIControlled moors
increment_kings_purse moors 5000
end_if

if I_IsFactionAIControlled turks
increment_kings_purse turks 5000
end_if

if I_IsFactionAIControlled egypt
increment_kings_purse egypt 5000
end_if

if I_IsFactionAIControlled denmark
increment_kings_purse denmark 5000
end_if

if I_IsFactionAIControlled portugal
increment_kings_purse portugal 5000
end_if

if I_IsFactionAIControlled poland
increment_kings_purse poland 5000
end_if

if I_IsFactionAIControlled hungary
increment_kings_purse hungary 5000
end_if

if I_IsFactionAIControlled papal_states
increment_kings_purse papal_states 5000
end_if

if I_IsFactionAIControlled slave
increment_kings_purse slave 5000
end_if

if I_IsFactionAIControlled aztecs
increment_kings_purse aztecs 5000
end_if

if I_IsFactionAIControlled mongols
increment_kings_purse mongols 5000
end_if

if I_IsFactionAIControlled timurids
increment_kings_purse timurids 5000
end_if

terminate_monitor
end_monitor

monitor_event FactionTurnStart I_TurnNumber >= 0
and CampaignDifficulty = hard

if I_IsFactionAIControlled england
increment_kings_purse england 3500
end_if

if I_IsFactionAIControlled france
increment_kings_purse france 3500
end_if

if I_IsFactionAIControlled hre
increment_kings_purse hre 3500
end_if

if I_IsFactionAIControlled scotland
increment_kings_purse scotland 3500
end_if

if I_IsFactionAIControlled spain
increment_kings_purse spain 3500
end_if

if I_IsFactionAIControlled venice
increment_kings_purse venice 3500
end_if

if I_IsFactionAIControlled sicily
increment_kings_purse sicily 3500
end_if

if I_IsFactionAIControlled milan
increment_kings_purse milan 3500
end_if

if I_IsFactionAIControlled byzantium
increment_kings_purse byzantium 3500
end_if

if I_IsFactionAIControlled russia
increment_kings_purse russia 3500
end_if

if I_IsFactionAIControlled moors
increment_kings_purse moors 3500
end_if

if I_IsFactionAIControlled turks
increment_kings_purse turks 3500
end_if

if I_IsFactionAIControlled egypt
increment_kings_purse egypt 3500
end_if

if I_IsFactionAIControlled denmark
increment_kings_purse denmark 3500
end_if

if I_IsFactionAIControlled portugal
increment_kings_purse portugal 3500
end_if

if I_IsFactionAIControlled poland
increment_kings_purse poland 3500
end_if

if I_IsFactionAIControlled hungary
increment_kings_purse hungary 3500
end_if

if I_IsFactionAIControlled papal_states
increment_kings_purse papal_states 3500
end_if

if I_IsFactionAIControlled slave
increment_kings_purse slave 3500
end_if

if I_IsFactionAIControlled aztecs
increment_kings_purse aztecs 3500
end_if

if I_IsFactionAIControlled mongols
increment_kings_purse mongols 3500
end_if

if I_IsFactionAIControlled timurids
increment_kings_purse timurids 3500
end_if

terminate_monitor
end_monitor

monitor_event FactionTurnStart I_TurnNumber >= 0
and CampaignDifficulty = medium

if I_IsFactionAIControlled england
increment_kings_purse england 2000
end_if

if I_IsFactionAIControlled france
increment_kings_purse france 2000
end_if

if I_IsFactionAIControlled hre
increment_kings_purse hre 2000
end_if

if I_IsFactionAIControlled scotland
increment_kings_purse scotland 2000
end_if

if I_IsFactionAIControlled spain
increment_kings_purse spain 2000
end_if

if I_IsFactionAIControlled venice
increment_kings_purse venice 2000
end_if

if I_IsFactionAIControlled sicily
increment_kings_purse sicily 2000
end_if

if I_IsFactionAIControlled milan
increment_kings_purse milan 2000
end_if

if I_IsFactionAIControlled byzantium
increment_kings_purse byzantium 2000
end_if

if I_IsFactionAIControlled russia
increment_kings_purse russia 2000
end_if

if I_IsFactionAIControlled moors
increment_kings_purse moors 2000
end_if

if I_IsFactionAIControlled turks
increment_kings_purse turks 2000
end_if

if I_IsFactionAIControlled egypt
increment_kings_purse egypt 2000
end_if

if I_IsFactionAIControlled denmark
increment_kings_purse denmark 2000
end_if

if I_IsFactionAIControlled portugal
increment_kings_purse portugal 2000
end_if

if I_IsFactionAIControlled poland
increment_kings_purse poland 2000
end_if

if I_IsFactionAIControlled hungary
increment_kings_purse hungary 2000
end_if

if I_IsFactionAIControlled papal_states
increment_kings_purse papal_states 2000
end_if

if I_IsFactionAIControlled slave
increment_kings_purse slave 2000
end_if

if I_IsFactionAIControlled aztecs
increment_kings_purse aztecs 2000
end_if

if I_IsFactionAIControlled mongols
increment_kings_purse mongols 2000
end_if

if I_IsFactionAIControlled timurids
increment_kings_purse timurids 2000
end_if

terminate_monitor
end_monitor

monitor_event FactionTurnStart I_TurnNumber >= 0
and CampaignDifficulty = easy

if I_IsFactionAIControlled england
increment_kings_purse england 1000
end_if

if I_IsFactionAIControlled france
increment_kings_purse france 1000
end_if

if I_IsFactionAIControlled hre
increment_kings_purse hre 1000
end_if

if I_IsFactionAIControlled scotland
increment_kings_purse scotland 1000
end_if

if I_IsFactionAIControlled spain
increment_kings_purse spain 1000
end_if

if I_IsFactionAIControlled venice
increment_kings_purse venice 1000
end_if

if I_IsFactionAIControlled sicily
increment_kings_purse sicily 1000
end_if

if I_IsFactionAIControlled milan
increment_kings_purse milan 1000
end_if

if I_IsFactionAIControlled byzantium
increment_kings_purse byzantium 1000
end_if

if I_IsFactionAIControlled russia
increment_kings_purse russia 1000
end_if

if I_IsFactionAIControlled moors
increment_kings_purse moors 1000
end_if

if I_IsFactionAIControlled turks
increment_kings_purse turks 1000
end_if

if I_IsFactionAIControlled egypt
increment_kings_purse egypt 1000
end_if

if I_IsFactionAIControlled denmark
increment_kings_purse denmark 1000
end_if

if I_IsFactionAIControlled portugal
increment_kings_purse portugal 1000
end_if

if I_IsFactionAIControlled poland
increment_kings_purse poland 1000
end_if

if I_IsFactionAIControlled hungary
increment_kings_purse hungary 1000
end_if

if I_IsFactionAIControlled papal_states
increment_kings_purse papal_states 1000
end_if

if I_IsFactionAIControlled slave
increment_kings_purse slave 1000
end_if

if I_IsFactionAIControlled aztecs
increment_kings_purse aztecs 1000
end_if

if I_IsFactionAIControlled mongols
increment_kings_purse mongols 1000
end_if

if I_IsFactionAIControlled timurids
increment_kings_purse timurids 1000
end_if

terminate_monitor
end_monitor

Добавить комментарий

Ссылки в комментариях не работают. Надоела капча - зарегистрируйся.

Защитный код
Обновить