Page 1 of 3 123 LastLast
Results 1 to 20 of 48

Thread: Field costs

  1. #1
    Amon Amarth 930's Avatar Artifex
    Join Date
    Nov 2008
    Location
    Germany, North-Rhine Westphalia
    Posts
    466

    Default Field costs

    This was a Tutorial which explain you to implement a field-cost script to your modification with a preceding Yes/No-Decision.
    Thanks to repman who give me the permission to use his script from DLV as guideline.

    In short: A field-cost-script will detach some money from the player for armies which aren´t in cities or castles of the player, which siege settlements and also for the different agents.
    Moreover in DLV exist the useful feature that you can let show you exactly how much you must pay. (One reason why i take this script as example from DLV)

    This Script was actual relative simple, most parts are only Copy+Paste.
    Now lets start with the Tutorial:
    ----------------------------------------------------------------
    What do you need:

    campaign_script.txt ---> ([...]\Medieval II Total War\mods\[...]\data\world\maps\campaign\imperial_campaign)
    historic_events.txt ---> ([...]\Medieval II Total War\mods\[...]\data\text)
    Modfolder, own Mod or Retrofit , umpacked Vanilla
    ----------------------------------------------------------------

    First, the decision-event, relative simple:

    Code:
    monitor_event PreFactionTurnStart FactionIsLocal
    historic_event field_costs true
    terminate_monitor
    end_monitor
    The Player gets here, direct in the first round, the request if he want field costs, or not.
    Thats go into the campaign_script, following into historic_events:
    Code:
    {FIELD_COSTS_BODY}\n\nText which inform the player how much he must pay for each army/army which sieged/agent.\n\n       
    {FIELD_COSTS_TITLE}Field-Costs
    Now we go on with the costs for the troops itself. This goes into the campaign_script:

    The costs if the army stands in enemy lands:

    Spoiler Alert, click show to read: 
    Code:
    monitor_event CharacterTurnEnd FactionIsLocal
        and I_EventCounter field_costs_accepted = 1
        and not EndedInSettlement
        and not IsBesieging
        and not AgentType = admiral
        and not AgentType = spy
        and not AgentType = diplomat
        and not AgentType = assassin
        and not AgentType = priest
        and not AgentType = princess
        and not AgentType = merchant    
        and InEnemyLands
        console_command add_money -500
        inc_counter field_cost 500
    end_monitor


    The costs if the army was in your own lands:

    Spoiler Alert, click show to read: 
    Code:
    monitor_event CharacterTurnEnd FactionIsLocal
        and I_EventCounter field_costs_accepted = 1
        and not EndedInSettlement
        and not AgentType = admiral
        and not AgentType = spy
        and not AgentType = diplomat
        and not AgentType = assassin
        and not AgentType = priest
        and not AgentType = princess
        and not AgentType = merchant
        and not InEnemyLands
        console_command add_money -200
        inc_counter field_cost 200    
    end_monitor


    And at last, if the army is besiege a settlement

    Spoiler Alert, click show to read: 
    Code:
    monitor_event CharacterTurnEnd FactionIsLocal
        and I_EventCounter field_costs_accepted = 1
        and not EndedInSettlement
        and IsBesieging
        and not AgentType = admiral
        and not AgentType = spy
        and not AgentType = diplomat
        and not AgentType = assassin
        and not AgentType = priest
        and not AgentType = princess
        and not AgentType = merchant    
        and InEnemyLands
        console_command add_money -2000
        inc_counter field_cost 2000    
    end_monitor


    ----------------------------------------------------------------
    The most things should be clear.
    and not AgentType = XYZ exclude the agent-types, and [not] InEnemyLands define the specific place where the army was and and [not] IsBesieging define if the army is besiege a settlement, or not.

    The costs can be adjust there:

    console_command add_money -2000
    inc_counter field_cost 2000

    --->
    The removed money from the player
    I speak about this later, has something to do with the possibility to show you the exactly costs


    ----------------------------------------------------------------
    Now lets go on with the agents. There will be only removed money if they are in enemy lands.
    Here you can also change the costs, if you want, but don´t forget to adjust the counter-points as well.

    Spoiler Alert, click show to read: 
    Code:
    ;------------------------------------------- Spy ------------------------
    monitor_event CharacterTurnEnd FactionIsLocal 
        and I_EventCounter field_costs_accepted = 1
        and AgentType = spy
        and InEnemyLands
            console_command add_money -500
        inc_counter field_cost 500        
    end_monitor
    
    ;------------------------------------------- Assassin ------------------------
    monitor_event CharacterTurnEnd FactionIsLocal 
        and I_EventCounter field_costs_accepted = 1
        and AgentType = assassin
        and InEnemyLands
            console_command add_money -500
        inc_counter field_cost 500        
    end_monitor
    
    ;------------------------------------------- Priest ------------------------
    monitor_event CharacterTurnEnd FactionIsLocal 
        and I_EventCounter field_costs_accepted = 1
        and AgentType = priest
        and InEnemyLands
            console_command add_money -100
        inc_counter field_cost 100        
    end_monitor
    
    ;------------------------------------------- Diplomat ------------------------
    monitor_event CharacterTurnEnd FactionIsLocal 
        and I_EventCounter field_costs_accepted = 1
        and AgentType = diplomat
        and InEnemyLands
            console_command add_money -100
        inc_counter field_cost 100   
     end_monitor
    
    ;------------------------------------------- Merchants ------------------------
    monitor_event CharacterTurnEnd FactionIsLocal 
        and I_EventCounter field_costs_accepted = 1
        and AgentType = merchant
        and InEnemyLands
            console_command add_money -100
        inc_counter field_cost 100        
    end_monitor


    You can remove the costs from merchants or diplomats for example, simple remove the entry from "monitor_event" until "end_monitor".
    ----------------------------------------------------------------
    Thats all with actual costs.
    But now we also want to know, how much we paid for our armies which grant us a big kingdom.
    So we implement something, that allow you to show one time during a round with a text-event your costs. You must click on the Finance-Overview for that event.

    Following entries simple copy+paste, that goes into the campaign_script:

    Spoiler Alert, click show to read: 
    Code:
    ;------------------- How much must i paid? -----------------------------------------------
    
    declare_counter finance_open
    
    monitor_event FinancesPanelOpen
    if I_CompareCounter finance_open < 1
    if I_CompareCounter field_cost <= 500
    and I_CompareCounter field_cost > 0
         historic_event field_cost_500
    end_if
    if I_CompareCounter field_cost <= 1000
    and I_CompareCounter field_cost > 500
         historic_event field_cost_1000
    end_if
    if I_CompareCounter field_cost <= 1500
    and I_CompareCounter field_cost > 1000
         historic_event field_cost_1500
    end_if
    if I_CompareCounter field_cost <= 2000
    and I_CompareCounter field_cost > 1500
         historic_event field_cost_2000
    end_if
    if I_CompareCounter field_cost <= 2500
    and I_CompareCounter field_cost > 2000
         historic_event field_cost_2500
    end_if
    if I_CompareCounter field_cost <= 3000
    and I_CompareCounter field_cost > 2500
         historic_event field_cost_3000
    end_if
    if I_CompareCounter field_cost <= 3500
    and I_CompareCounter field_cost > 3000
         historic_event field_cost_3500
    end_if
    if I_CompareCounter field_cost <= 4000
    and I_CompareCounter field_cost > 3500
         historic_event field_cost_4000
    end_if
    if I_CompareCounter field_cost <= 4500
    and I_CompareCounter field_cost > 4000
         historic_event field_cost_4500
    end_if
    if I_CompareCounter field_cost <= 5000
    and I_CompareCounter field_cost > 4500
         historic_event field_cost_5000
    end_if
    if I_CompareCounter field_cost <= 5500
    and I_CompareCounter field_cost > 5000
         historic_event field_cost_5500
    end_if
    if I_CompareCounter field_cost <= 6000
    and I_CompareCounter field_cost > 5500
         historic_event field_cost_6000
    end_if
    if I_CompareCounter field_cost <= 6500
    and I_CompareCounter field_cost > 6000
         historic_event field_cost_6500
    end_if
    if I_CompareCounter field_cost <= 7000
    and I_CompareCounter field_cost > 6500
         historic_event field_cost_7000
    end_if
    if I_CompareCounter field_cost <= 7500
    and I_CompareCounter field_cost > 7000
         historic_event field_cost_7500
    end_if
    if I_CompareCounter field_cost <= 8000
    and I_CompareCounter field_cost > 7500
         historic_event field_cost_8000
    end_if
    if I_CompareCounter field_cost <= 8500
    and I_CompareCounter field_cost > 8000
         historic_event field_cost_8500
    end_if
    if I_CompareCounter field_cost <= 9000
    and I_CompareCounter field_cost > 8500
         historic_event field_cost_9000
    end_if
    if I_CompareCounter field_cost <= 9500
    and I_CompareCounter field_cost > 9000
         historic_event field_cost_9500
    end_if
    if I_CompareCounter field_cost <= 10000
    and I_CompareCounter field_cost > 9500
         historic_event field_cost_10000
    end_if
    if I_CompareCounter field_cost <= 10500
    and I_CompareCounter field_cost > 10000
         historic_event field_cost_10500
    end_if
    if I_CompareCounter field_cost <= 11000
    and I_CompareCounter field_cost > 10500
         historic_event field_cost_11000
    end_if
    if I_CompareCounter field_cost <= 11500
    and I_CompareCounter field_cost > 11000
         historic_event field_cost_11500
    end_if
    if I_CompareCounter field_cost <= 12000
    and I_CompareCounter field_cost > 11500
         historic_event field_cost_12000
    end_if
    if I_CompareCounter field_cost <= 12500
    and I_CompareCounter field_cost > 12000
         historic_event field_cost_12500
    end_if
    if I_CompareCounter field_cost <= 13000
    and I_CompareCounter field_cost > 12500
         historic_event field_cost_13000
    end_if
    if I_CompareCounter field_cost <= 13500
    and I_CompareCounter field_cost > 13000
         historic_event field_cost_13500
    end_if
    if I_CompareCounter field_cost <= 14000
    and I_CompareCounter field_cost > 13500
         historic_event field_cost_14000
    end_if
    if I_CompareCounter field_cost <= 14500
    and I_CompareCounter field_cost > 14000
         historic_event field_cost_14500
    end_if
    if I_CompareCounter field_cost <= 15000
    and I_CompareCounter field_cost > 14500
         historic_event field_cost_15000
    end_if
    if I_CompareCounter field_cost <= 15500
    and I_CompareCounter field_cost > 15000
         historic_event field_cost_15500
    end_if
    if I_CompareCounter field_cost <= 16000
    and I_CompareCounter field_cost > 15500
         historic_event field_cost_16000
    end_if
    if I_CompareCounter field_cost <= 16500
    and I_CompareCounter field_cost > 16000
         historic_event field_cost_16500
    end_if
    if I_CompareCounter field_cost <= 17000
    and I_CompareCounter field_cost > 16500
         historic_event field_cost_17000
    end_if
    if I_CompareCounter field_cost <= 17500
    and I_CompareCounter field_cost > 17000
         historic_event field_cost_17500
    end_if
    if I_CompareCounter field_cost <= 18000
    and I_CompareCounter field_cost > 17500
         historic_event field_cost_18000
    end_if
    if I_CompareCounter field_cost <= 18500
    and I_CompareCounter field_cost > 18000
         historic_event field_cost_18500
    end_if
    if I_CompareCounter field_cost <= 19000
    and I_CompareCounter field_cost > 18500
         historic_event field_cost_19000
    end_if
    if I_CompareCounter field_cost <= 19500
    and I_CompareCounter field_cost > 19000
         historic_event field_cost_19500
    end_if
    if I_CompareCounter field_cost <= 20000
    and I_CompareCounter field_cost > 19500
         historic_event field_cost_20000
    end_if
    if I_CompareCounter field_cost <= 20500
    and I_CompareCounter field_cost > 20000
         historic_event field_cost_20500
    end_if
    if I_CompareCounter field_cost <= 21000
    and I_CompareCounter field_cost > 20500
         historic_event field_cost_21000
    end_if
    if I_CompareCounter field_cost <= 21500
    and I_CompareCounter field_cost > 21000
         historic_event field_cost_21500
    end_if
    if I_CompareCounter field_cost <= 22000
    and I_CompareCounter field_cost > 21500
         historic_event field_cost_22000
    end_if
    if I_CompareCounter field_cost <= 22500
    and I_CompareCounter field_cost > 22000
         historic_event field_cost_22500
    end_if
    if I_CompareCounter field_cost <= 23000
    and I_CompareCounter field_cost > 22500
         historic_event field_cost_23000
    end_if
    if I_CompareCounter field_cost <= 23500
    and I_CompareCounter field_cost > 23000
         historic_event field_cost_23500
    end_if
    if I_CompareCounter field_cost <= 24000
    and I_CompareCounter field_cost > 23500
         historic_event field_cost_24000
    end_if
    if I_CompareCounter field_cost <= 24500
    and I_CompareCounter field_cost > 24000
         historic_event field_cost_24500
    end_if
    if I_CompareCounter field_cost <= 25000
    and I_CompareCounter field_cost > 24500
         historic_event field_cost_25000
    end_if
    if I_CompareCounter field_cost <= 25500
    and I_CompareCounter field_cost > 25000
         historic_event field_cost_25500
    end_if
    if I_CompareCounter field_cost <= 26000
    and I_CompareCounter field_cost > 25500
         historic_event field_cost_26000
    end_if
    if I_CompareCounter field_cost <= 26500
    and I_CompareCounter field_cost > 26000
         historic_event field_cost_26500
    end_if
    if I_CompareCounter field_cost <= 27000
    and I_CompareCounter field_cost > 26500
         historic_event field_cost_27000
    end_if
    if I_CompareCounter field_cost <= 27500
    and I_CompareCounter field_cost > 27000
         historic_event field_cost_27500
    end_if
    if I_CompareCounter field_cost <= 28000
    and I_CompareCounter field_cost > 27500
         historic_event field_cost_28000
    end_if
    if I_CompareCounter field_cost <= 28500
    and I_CompareCounter field_cost > 28000
         historic_event field_cost_28500
    end_if
    if I_CompareCounter field_cost <= 29000
    and I_CompareCounter field_cost > 28500
         historic_event field_cost_29000
    end_if
    if I_CompareCounter field_cost <= 29500
    and I_CompareCounter field_cost > 29000
         historic_event field_cost_29500
    end_if
    if I_CompareCounter field_cost <= 30000
    and I_CompareCounter field_cost > 29500
         historic_event field_cost_30000
    end_if
    if I_CompareCounter field_cost <= 30500
    and I_CompareCounter field_cost > 30000
         historic_event field_cost_30500
    end_if
    if I_CompareCounter field_cost <= 31000
    and I_CompareCounter field_cost > 30500
         historic_event field_cost_31000
    end_if
    if I_CompareCounter field_cost <= 31500
    and I_CompareCounter field_cost > 31000
         historic_event field_cost_31500
    end_if
    if I_CompareCounter field_cost <= 32000
    and I_CompareCounter field_cost > 31500
         historic_event field_cost_32000
    end_if
    if I_CompareCounter field_cost <= 32500
    and I_CompareCounter field_cost > 32000
         historic_event field_cost_32500
    end_if
    if I_CompareCounter field_cost <= 33000
    and I_CompareCounter field_cost > 32500
         historic_event field_cost_33000
    end_if
    if I_CompareCounter field_cost <= 33500
    and I_CompareCounter field_cost > 33000
         historic_event field_cost_33500
    end_if
    if I_CompareCounter field_cost <= 34000
    and I_CompareCounter field_cost > 33500
         historic_event field_cost_34000
    end_if
    if I_CompareCounter field_cost <= 34500
    and I_CompareCounter field_cost > 34000
         historic_event field_cost_34500
    end_if
    if I_CompareCounter field_cost <= 35000
    and I_CompareCounter field_cost > 34500
         historic_event field_cost_35000
    end_if
    if I_CompareCounter field_cost <= 35500
    and I_CompareCounter field_cost > 35000
         historic_event field_cost_35500
    end_if
    if I_CompareCounter field_cost <= 36000
    and I_CompareCounter field_cost > 35500
         historic_event field_cost_36000
    end_if
    if I_CompareCounter field_cost <= 36500
    and I_CompareCounter field_cost > 36000
         historic_event field_cost_36500
    end_if
    if I_CompareCounter field_cost <= 37000
    and I_CompareCounter field_cost > 36500
         historic_event field_cost_37000
    end_if
    if I_CompareCounter field_cost <= 37500
    and I_CompareCounter field_cost > 37000
         historic_event field_cost_37500
    end_if
    if I_CompareCounter field_cost <= 38000
    and I_CompareCounter field_cost > 37500
         historic_event field_cost_38000
    end_if
    if I_CompareCounter field_cost <= 38500
    and I_CompareCounter field_cost > 38000
         historic_event field_cost_38500
    end_if
    if I_CompareCounter field_cost <= 39000
    and I_CompareCounter field_cost > 38500
         historic_event field_cost_39000
    end_if
    if I_CompareCounter field_cost <= 39500
    and I_CompareCounter field_cost > 39000
         historic_event field_cost_39500
    end_if
    if I_CompareCounter field_cost <= 40000
    and I_CompareCounter field_cost > 39500
         historic_event field_cost_40000
    end_if
    if I_CompareCounter field_cost <= 40500
    and I_CompareCounter field_cost > 40000
         historic_event field_cost_40500
    end_if
    if I_CompareCounter field_cost <= 41000
    and I_CompareCounter field_cost > 40500
         historic_event field_cost_41000
    end_if
    if I_CompareCounter field_cost <= 41500
    and I_CompareCounter field_cost > 41000
         historic_event field_cost_41500
    end_if
    if I_CompareCounter field_cost <= 42000
    and I_CompareCounter field_cost > 41500
         historic_event field_cost_42000
    end_if
    if I_CompareCounter field_cost <= 42500
    and I_CompareCounter field_cost > 42000
         historic_event field_cost_42500
    end_if
    if I_CompareCounter field_cost <= 43000
    and I_CompareCounter field_cost > 42500
         historic_event field_cost_43000
    end_if
    if I_CompareCounter field_cost <= 43500
    and I_CompareCounter field_cost > 43000
         historic_event field_cost_43500
    end_if
    if I_CompareCounter field_cost <= 44000
    and I_CompareCounter field_cost > 43500
         historic_event field_cost_44000
    end_if
    if I_CompareCounter field_cost <= 44500
    and I_CompareCounter field_cost > 44000
         historic_event field_cost_44500
    end_if
    if I_CompareCounter field_cost <= 45000
    and I_CompareCounter field_cost > 44500
         historic_event field_cost_45000
    end_if
    if I_CompareCounter field_cost <= 45500
    and I_CompareCounter field_cost > 45000
         historic_event field_cost_45500
    end_if
    if I_CompareCounter field_cost <= 46000
    and I_CompareCounter field_cost > 45500
         historic_event field_cost_46000
    end_if
    if I_CompareCounter field_cost <= 46500
    and I_CompareCounter field_cost > 46000
         historic_event field_cost_46500
    end_if
    if I_CompareCounter field_cost <= 47000
    and I_CompareCounter field_cost > 46500
         historic_event field_cost_47000
    end_if
    if I_CompareCounter field_cost <= 47500
    and I_CompareCounter field_cost > 47000
         historic_event field_cost_47500
    end_if
    if I_CompareCounter field_cost <= 48000
    and I_CompareCounter field_cost > 47500
         historic_event field_cost_48000
    end_if
    if I_CompareCounter field_cost <= 48500
    and I_CompareCounter field_cost > 48000
         historic_event field_cost_48500
    end_if
    if I_CompareCounter field_cost <= 49000
    and I_CompareCounter field_cost > 48500
         historic_event field_cost_49000
    end_if
    if I_CompareCounter field_cost <= 49500
    and I_CompareCounter field_cost > 49000
         historic_event field_cost_49500
    end_if
    if I_CompareCounter field_cost <= 50000
    and I_CompareCounter field_cost > 49500
         historic_event field_cost_50000
    end_if
    end_if
    set_counter finance_open 1
    end_monitor
    
    monitor_event ButtonPressed ButtonPressed end_turn
        set_counter finance_open 0
        set_counter field_cost 0
        end_monitor
    
    declare_counter field_cost


    Following into historic_events:

    Spoiler Alert, click show to read: 
    Code:
    {FIELD_COST_500_BODY}The actual Field Costs are _500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_500_TITLE} Field Costs 
    
    {FIELD_COST_1000_BODY}The actual Field Costs are _1000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_1000_TITLE} Field Costs 
    
    {FIELD_COST_1500_BODY}The actual Field Costs are _1500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_1500_TITLE} Field Costs 
    
    {FIELD_COST_2000_BODY}The actual Field Costs are _2000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_2000_TITLE} Field Costs 
    
    {FIELD_COST_2500_BODY}The actual Field Costs are _2500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_2500_TITLE} Field Costs 
    
    {FIELD_COST_3000_BODY}The actual Field Costs are _3000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_3000_TITLE} Field Costs 
    
    {FIELD_COST_3500_BODY}The actual Field Costs are _3500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_3500_TITLE} Field Costs 
    
    {FIELD_COST_4000_BODY}The actual Field Costs are _4000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_4000_TITLE} Field Costs 
    
    {FIELD_COST_4500_BODY}The actual Field Costs are _4500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_4500_TITLE} Field Costs 
    
    {FIELD_COST_5000_BODY}The actual Field Costs are _5000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_5000_TITLE} Field Costs 
    
    {FIELD_COST_5500_BODY}The actual Field Costs are _5500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_5500_TITLE} Field Costs 
    
    {FIELD_COST_6000_BODY}The actual Field Costs are _6000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_6000_TITLE} Field Costs 
    
    {FIELD_COST_6500_BODY}The actual Field Costs are _6500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_6500_TITLE} Field Costs 
    
    {FIELD_COST_7000_BODY}The actual Field Costs are _7000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_7000_TITLE} Field Costs 
    
    {FIELD_COST_7500_BODY}The actual Field Costs are _7500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_7500_TITLE} Field Costs 
    
    {FIELD_COST_8000_BODY}The actual Field Costs are _8000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_8000_TITLE} Field Costs 
    
    {FIELD_COST_8500_BODY}The actual Field Costs are _8500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_8500_TITLE} Field Costs 
    
    {FIELD_COST_9000_BODY}The actual Field Costs are _9000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_9000_TITLE} Field Costs 
    
    {FIELD_COST_9500_BODY}The actual Field Costs are _9500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_9500_TITLE} Field Costs 
    
    {FIELD_COST_10000_BODY}The actual Field Costs are _10000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_10000_TITLE} Field Costs 
    
    {FIELD_COST_10500_BODY}The actual Field Costs are _10500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_10500_TITLE} Field Costs 
    
    {FIELD_COST_11000_BODY}The actual Field Costs are _11000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_11000_TITLE} Field Costs 
    
    {FIELD_COST_11500_BODY}The actual Field Costs are _11500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_11500_TITLE} Field Costs 
    
    {FIELD_COST_12000_BODY}The actual Field Costs are _12000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_12000_TITLE} Field Costs 
    
    {FIELD_COST_12500_BODY}The actual Field Costs are _12500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_12500_TITLE} Field Costs 
    
    {FIELD_COST_13000_BODY}The actual Field Costs are _13000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_13000_TITLE} Field Costs 
    
    {FIELD_COST_13500_BODY}The actual Field Costs are _13500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_13500_TITLE} Field Costs 
    
    {FIELD_COST_14000_BODY}The actual Field Costs are _14000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_14000_TITLE} Field Costs 
    
    {FIELD_COST_14500_BODY}The actual Field Costs are _14500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_14500_TITLE} Field Costs 
    
    {FIELD_COST_15000_BODY}The actual Field Costs are _15000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_15000_TITLE} Field Costs 
    
    {FIELD_COST_15500_BODY}The actual Field Costs are _15500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_15500_TITLE} Field Costs 
    
    {FIELD_COST_16000_BODY}The actual Field Costs are _16000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_16000_TITLE} Field Costs 
    
    {FIELD_COST_16500_BODY}The actual Field Costs are _16500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_16500_TITLE} Field Costs 
    
    {FIELD_COST_17000_BODY}The actual Field Costs are _17000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_17000_TITLE} Field Costs 
    
    {FIELD_COST_17500_BODY}The actual Field Costs are _17500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_17500_TITLE} Field Costs 
    
    {FIELD_COST_18000_BODY}The actual Field Costs are _18000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_18000_TITLE} Field Costs 
    
    {FIELD_COST_18500_BODY}The actual Field Costs are _18500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_18500_TITLE} Field Costs 
    
    {FIELD_COST_19000_BODY}The actual Field Costs are _19000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_19000_TITLE} Field Costs 
    
    {FIELD_COST_19500_BODY}The actual Field Costs are _19500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_19500_TITLE} Field Costs 
    
    {FIELD_COST_20000_BODY}The actual Field Costs are _20000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_20000_TITLE} Field Costs
    {FIELD_COST_20500_BODY}The actual Field Costs are _20500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_20500_TITLE} Field Costs 
    
    {FIELD_COST_21000_BODY}The actual Field Costs are _21000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_21000_TITLE} Field Costs 
    
    {FIELD_COST_21500_BODY}The actual Field Costs are _21500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_21500_TITLE} Field Costs 
    
    {FIELD_COST_22000_BODY}The actual Field Costs are _22000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_22000_TITLE} Field Costs 
    
    {FIELD_COST_22500_BODY}The actual Field Costs are _22500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_22500_TITLE} Field Costs 
    
    {FIELD_COST_23000_BODY}The actual Field Costs are _23000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_23000_TITLE} Field Costs 
    
    {FIELD_COST_23500_BODY}The actual Field Costs are _23500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_23500_TITLE} Field Costs 
    
    {FIELD_COST_24000_BODY}The actual Field Costs are _24000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_24000_TITLE} Field Costs 
    
    {FIELD_COST_24500_BODY}The actual Field Costs are _24500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_24500_TITLE} Field Costs 
    
    {FIELD_COST_25000_BODY}The actual Field Costs are _25000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_25000_TITLE} Field Costs 
    
    {FIELD_COST_25500_BODY}The actual Field Costs are _25500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_25500_TITLE} Field Costs 
    
    {FIELD_COST_26000_BODY}The actual Field Costs are _26000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_26000_TITLE} Field Costs 
    
    {FIELD_COST_26500_BODY}The actual Field Costs are _26500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_26500_TITLE} Field Costs 
    
    {FIELD_COST_27000_BODY}The actual Field Costs are _27000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_27000_TITLE} Field Costs 
    
    {FIELD_COST_27500_BODY}The actual Field Costs are _27500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_27500_TITLE} Field Costs 
    
    {FIELD_COST_28000_BODY}The actual Field Costs are _28000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_28000_TITLE} Field Costs 
    
    {FIELD_COST_28500_BODY}The actual Field Costs are _28500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_28500_TITLE} Field Costs 
    
    {FIELD_COST_29000_BODY}The actual Field Costs are _29000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_29000_TITLE} Field Costs 
    
    {FIELD_COST_29500_BODY}The actual Field Costs are _29500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_29500_TITLE} Field Costs 
    
    {FIELD_COST_30000_BODY}The actual Field Costs are _30000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_30000_TITLE} Field Costs 
    
    {FIELD_COST_30500_BODY}The actual Field Costs are _30500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_30500_TITLE} Field Costs 
    
    {FIELD_COST_31000_BODY}The actual Field Costs are _31000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_31000_TITLE} Field Costs 
    
    {FIELD_COST_31500_BODY}The actual Field Costs are _31500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_31500_TITLE} Field Costs 
    
    {FIELD_COST_32000_BODY}The actual Field Costs are _32000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_32000_TITLE} Field Costs 
    
    {FIELD_COST_32500_BODY}The actual Field Costs are _32500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_32500_TITLE} Field Costs 
    
    {FIELD_COST_33000_BODY}The actual Field Costs are _33000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_33000_TITLE} Field Costs 
    
    {FIELD_COST_33500_BODY}The actual Field Costs are _33500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_33500_TITLE} Field Costs 
    
    {FIELD_COST_34000_BODY}The actual Field Costs are _34000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_34000_TITLE} Field Costs 
    
    {FIELD_COST_34500_BODY}The actual Field Costs are _34500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_34500_TITLE} Field Costs 
    
    {FIELD_COST_35000_BODY}The actual Field Costs are _35000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_35000_TITLE} Field Costs 
    
    {FIELD_COST_35500_BODY}The actual Field Costs are _35500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_35500_TITLE} Field Costs 
    
    {FIELD_COST_36000_BODY}The actual Field Costs are _36000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_36000_TITLE} Field Costs 
    
    {FIELD_COST_36500_BODY}The actual Field Costs are _36500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_36500_TITLE} Field Costs 
    
    {FIELD_COST_37000_BODY}The actual Field Costs are _37000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_37000_TITLE} Field Costs 
    
    {FIELD_COST_37500_BODY}The actual Field Costs are _37500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_37500_TITLE} Field Costs 
    
    {FIELD_COST_38000_BODY}The actual Field Costs are _38000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_38000_TITLE} Field Costs 
    
    {FIELD_COST_38500_BODY}The actual Field Costs are _38500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_38500_TITLE} Field Costs 
    
    {FIELD_COST_39000_BODY}The actual Field Costs are _39000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_39000_TITLE} Field Costs 
    
    {FIELD_COST_39500_BODY}The actual Field Costs are _39500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_39500_TITLE} Field Costs 
    
    {FIELD_COST_40000_BODY}The actual Field Costs are _40000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_40000_TITLE} Field Costs 
    
    {FIELD_COST_40500_BODY}The actual Field Costs are _40500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_40500_TITLE} Field Costs 
    
    {FIELD_COST_41000_BODY}The actual Field Costs are _41000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_41000_TITLE} Field Costs 
    
    {FIELD_COST_41500_BODY}The actual Field Costs are _41500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_41500_TITLE} Field Costs 
    
    {FIELD_COST_42000_BODY}The actual Field Costs are _42000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_42000_TITLE} Field Costs 
    
    {FIELD_COST_42500_BODY}The actual Field Costs are _42500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_42500_TITLE} Field Costs 
    
    {FIELD_COST_43000_BODY}The actual Field Costs are _43000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_43000_TITLE} Field Costs 
    
    {FIELD_COST_43500_BODY}The actual Field Costs are _43500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_43500_TITLE} Field Costs 
    
    {FIELD_COST_44000_BODY}The actual Field Costs are _44000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_44000_TITLE} Field Costs 
    
    {FIELD_COST_44500_BODY}The actual Field Costs are _44500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_44500_TITLE} Field Costs 
    
    {FIELD_COST_45000_BODY}The actual Field Costs are _45000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_45000_TITLE} Field Costs 
    
    {FIELD_COST_45500_BODY}The actual Field Costs are _45500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_45500_TITLE} Field Costs 
    
    {FIELD_COST_46000_BODY}The actual Field Costs are _46000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_46000_TITLE} Field Costs 
    
    {FIELD_COST_46500_BODY}The actual Field Costs are _46500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_46500_TITLE} Field Costs 
    
    {FIELD_COST_47000_BODY}The actual Field Costs are _47000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_47000_TITLE} Field Costs 
    
    {FIELD_COST_47500_BODY}The actual Field Costs are _47500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_47500_TITLE} Field Costs 
    
    {FIELD_COST_48000_BODY}The actual Field Costs are _48000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_48000_TITLE} Field Costs 
    
    {FIELD_COST_48500_BODY}The actual Field Costs are _48500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_48500_TITLE} Field Costs 
    
    {FIELD_COST_49000_BODY}The actual Field Costs are _49000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_49000_TITLE} Field Costs 
    
    {FIELD_COST_49500_BODY}The actual Field Costs are _49500
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_49500_TITLE} Field Costs 
    
    {FIELD_COST_50000_BODY}The actual Field Costs are _50000
    \n\nField Costs for Armies (200 in  Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_50000_TITLE} Field Costs


    Much text if you see, when you will change some values you have much to do.
    I advise to just copy the text into your campaign_script and historic_events.

    And thats all.

    If you have any Questions about this topic, scripts or other modding-stuff don´t fear to ask me, i always help gladly
    Last edited by Amon Amarth 930; August 10, 2010 at 02:31 AM.

    Third Age Member (Fellowship-Scripter)
    Under the Patronage of MasterBigAb

  2. #2
    konny's Avatar Artifex
    Join Date
    Jul 2007
    Location
    Germania Inferior
    Posts
    3,631

    Default Re: Field costs

    An interesting script, even though I don't see the use of it (logical wise): You have to pay money for each family member or named general outside your settlements. The size of his army doesn't matter nor do captain lead armies.

    So, you have to pay 200fl when either a family member is travelling from one of your city to another on his own (this is on top of his wages and the upkeep of his bodyguard), or when he is leading a full stack against an invader.

    You have to pay 2000fl when one of your generals is sieging a settlement, regardless if he does this with four units or with twenty. But you don't have to pay if this siege is commanded by a captain. So, in the end this script promotes the player to keep his family members at home and have his armies commanded by captains - the guy who had made the bodyguards wouldn't like it.


    A better way would be to respectivly raise the upkeep of all units (save for the BG; BG upkeep should always be 0), give all of them the free_upkeep attribute and give each settlement 20 free_upkeep slots. That would have nearly the same effect, but more reasonable: you have to pay none as long as your units are in the city, but pay a lot as soon as they are on campaign.

    Whether or not the army is commanded by a family member doesn't matter. The only thing that does matter is the size of the army and the duration of the campaign (campaigns into enemy lands usually take longer than campaigns in your provinces; with sieges being about the longest enterprise) - and you don't need a script either.

    Team member of: Das Heilige Römische Reich, Europa Barbarorum, Europa Barbarorum II, East of Rome
    Modding help by Konny: Excel Traitgenerator, Setting Heirs to your preference
    dHRR 0.8 beta released! get it here
    New: Native America! A mini-mod for Kingdoms America

  3. #3
    Amon Amarth 930's Avatar Artifex
    Join Date
    Nov 2008
    Location
    Germany, North-Rhine Westphalia
    Posts
    466

    Default Re: Field costs

    Quote Originally Posted by konny View Post
    An interesting script, even though I don't see the use of it (logical wise): You have to pay money for each family member or named general outside your settlements. The size of his army doesn't matter nor do captain lead armies.
    Not entire correct: It only doesn´t matter how big the army was, i don´t know any condition which can proof that in connection with this script.
    But captain lead armies cost equally. Look at the script-conditions again:

    Code:
        and not EndedInSettlement
        and not IsBesieging
        and not AgentType = admiral
        and not AgentType = spy
        and not AgentType = diplomat
        and not AgentType = assassin
        and not AgentType = priest
        and not AgentType = princess
        and not AgentType = merchant    
        and InEnemyLands
    I don´t say and AgentType = named character or something else, i excluded every other type than family members, generals and captains.
    So you have no gap here.

    A better way would be to respectivly raise the upkeep of all units (save for the BG; BG upkeep should always be 0), give all of them the free_upkeep attribute and give each settlement 20 free_upkeep slots. That would have nearly the same effect, but more reasonable: you have to pay none as long as your units are in the city, but pay a lot as soon as they are on campaign.
    Nice idea and way to implement the fact, that armies creates costs if they are on the march.
    But i think thats creates a big disatvantage relate to the Balancing: Remember that the player can have in every city now a fullstack and paid nothing for it!
    So i can occupy my cities with huge, gratis armies.

    That is difficult to balance, one way could be increasing the recruiting-costs, for example, so that i can´t recruit so much units, because they are to expensive.

    To my Mind its possible to use your way, but it must be well-balanced and don´t make sense for every mod. So my Way is a little bit more comfortable, especially because you can give the player the choice if he want a more challenging campaign, or not.

    Third Age Member (Fellowship-Scripter)
    Under the Patronage of MasterBigAb

  4. #4
    konny's Avatar Artifex
    Join Date
    Jul 2007
    Location
    Germania Inferior
    Posts
    3,631

    Default Re: Field costs

    Quote Originally Posted by Amon Amarth 930 View Post
    Not entire correct: It only doesn´t matter how big the army was, i don´t know any condition which can proof that in connection with this script.
    But captain lead armies cost equally. Look at the script-conditions again:
    I don´t say and AgentType = named character or something else, i excluded every other type than family members, generals and captains.
    So you have no gap here.
    Are you sure CharacterTurnEnd fires for captains? In this case I stand corrected.

    Nice idea and way to implement the fact, that armies creates costs if they are on the march.
    But i think thats creates a big disatvantage relate to the Balancing: Remember that the player can have in every city now a fullstack and paid nothing for it!
    So i can occupy my cities with huge, gratis armies.

    That is difficult to balance, one way could be increasing the recruiting-costs, for example, so that i can´t recruit so much units, because they are to expensive.
    For balancing we have the recruit pools. In dHRR we have this system, even though with some minor adjustements: The ammount of free_upkeep slots is much higher than in Vanilla, but still defined by the size of the settlement and other factors (i.e. not flat 20). And mercenary units are excluded because they demmand payment regardless if they are on campaign or not.

    Team member of: Das Heilige Römische Reich, Europa Barbarorum, Europa Barbarorum II, East of Rome
    Modding help by Konny: Excel Traitgenerator, Setting Heirs to your preference
    dHRR 0.8 beta released! get it here
    New: Native America! A mini-mod for Kingdoms America

  5. #5
    Amon Amarth 930's Avatar Artifex
    Join Date
    Nov 2008
    Location
    Germany, North-Rhine Westphalia
    Posts
    466

    Default Re: Field costs

    Are you sure CharacterTurnEnd fires for captains? In this case I stand corrected.
    Works:

    Spoiler Alert, click show to read: 


    For balancing we have the recruit pools. In dHRR we have this system, even though with some minor adjustements: The ammount of free_upkeep slots is much higher than in Vanilla, but still defined by the size of the settlement and other factors (i.e. not flat 20). And mercenary units are excluded because they demmand payment regardless if they are on campaign or not.
    For the special Balancing of dHRR (One thing why i love dHRR ) that make sense and its a useful and good way to implement that.
    But i think, its not compatible with every mod, and its more work than copy some lines into your script. You must change far more than only the script.
    So or so, i think both ways have advantages and disadvantages, and both ways are possible and useful

    Third Age Member (Fellowship-Scripter)
    Under the Patronage of MasterBigAb

  6. #6
    konny's Avatar Artifex
    Join Date
    Jul 2007
    Location
    Germania Inferior
    Posts
    3,631

    Default Re: Field costs

    Quote Originally Posted by Amon Amarth 930 View Post
    Works
    In this case I stand corrected.

    Team member of: Das Heilige Römische Reich, Europa Barbarorum, Europa Barbarorum II, East of Rome
    Modding help by Konny: Excel Traitgenerator, Setting Heirs to your preference
    dHRR 0.8 beta released! get it here
    New: Native America! A mini-mod for Kingdoms America

  7. #7

  8. #8
    /|\/|\/|\/|\/|\/|\/
    Join Date
    Jun 2005
    Posts
    10,770

    Default Re: Field costs

    You've done a good job of explaining this cool little feature of DLV, Amon Amarth 930. Well done

    Quote Originally Posted by Amon Amarth 930 View Post
    I don´t say and AgentType = named character or something else, i excluded every other type than family members, generals and captains.
    Quote Originally Posted by konny View Post
    Are you sure CharacterTurnEnd fires for captains? In this case I stand corrected.
    There is no such thing as a 'captain' in m2tw. AFAIK the word 'general' is used for non named character army commanders.

    Also, now I suspect I am being pedantic but anyway; CharacterTurnStart does not fire for characters, it fires anyway. It isn't an event triggered by anything but a stage in a turn. I think you probably already know that but I found the way you worded the question misleading.
    Last edited by Taiji; July 28, 2010 at 11:03 AM.

  9. #9
    konny's Avatar Artifex
    Join Date
    Jul 2007
    Location
    Germania Inferior
    Posts
    3,631

    Default Re: Field costs

    Quote Originally Posted by Taiji View Post
    There is no such thing as a 'captain' in m2tw. The word 'general' is used for non named character army commanders.
    I was talking about not "named characters" that cannot get any traits and appear and disappear according to your moving around armies.

    Team member of: Das Heilige Römische Reich, Europa Barbarorum, Europa Barbarorum II, East of Rome
    Modding help by Konny: Excel Traitgenerator, Setting Heirs to your preference
    dHRR 0.8 beta released! get it here
    New: Native America! A mini-mod for Kingdoms America

  10. #10
    /|\/|\/|\/|\/|\/|\/
    Join Date
    Jun 2005
    Posts
    10,770

    Default Re: Field costs

    I know, and AFAIK they are called 'generals' according to the terms used by the game. To be honest I wonder if you would have made the mistake just now if Amon Amarth 930 had not made it first.

    To explain further: Generals and named characters are all there are. For example a family member is simply a subtype of the named character type.
    Last edited by Taiji; July 28, 2010 at 11:30 AM.

  11. #11
    HbHadast's Avatar Civis
    Join Date
    Jan 2009
    Location
    Carthage
    Posts
    153

    Default Re: Field costs

    It doesn't work.

    I'm wondering what's wrong. I don't even get a pop-up message at the start of the game. Is there any order in adding those entries to the script?

    I'd be very pleased if you re-explain it step by step, I'm really interested in this script.

    Thank you in advance.


    EDIT:
    Much text if you see, when you will change some values you have much to do.
    I advise to just copy the text into your script/events-txt.
    What should I put exactly in events.txt?
    Last edited by HbHadast; August 09, 2010 at 04:06 PM.

  12. #12
    Amon Amarth 930's Avatar Artifex
    Join Date
    Nov 2008
    Location
    Germany, North-Rhine Westphalia
    Posts
    466

    Default Re: Field costs

    Please post your script or upload it please, maybe you make a mistake.
    I have copy this field-cost-script from the Gothic TW script - and there it works 100%.

    So let me look at your script and i can say exactly (hopefully) where the mistake is... its easier than explain the whole script again...
    Last edited by Amon Amarth 930; August 09, 2010 at 04:19 PM.

    Third Age Member (Fellowship-Scripter)
    Under the Patronage of MasterBigAb

  13. #13
    HbHadast's Avatar Civis
    Join Date
    Jan 2009
    Location
    Carthage
    Posts
    153

    Default Re: Field costs

    Check the PM I sent to you.

  14. #14
    Amon Amarth 930's Avatar Artifex
    Join Date
    Nov 2008
    Location
    Germany, North-Rhine Westphalia
    Posts
    466

    Default Re: Field costs

    I´ve looked at the script, unfortunately I can´t spot a mistake, your implemention of the script is correct, also I look over the script itself again, but it´s also actual correct.
    But maybe here is not the mistake: When you say the event at the first turn don´t come, are you recieve other messages and the game has read your script?
    I don´t know if you make other changes in this script, maybe you make a little mistake anywhere else and the whole script isn´t read by the game.

    Third Age Member (Fellowship-Scripter)
    Under the Patronage of MasterBigAb

  15. #15
    HbHadast's Avatar Civis
    Join Date
    Jan 2009
    Location
    Carthage
    Posts
    153

    Default

    Now I'm sure there is a problem in the script.

    Here is what I did.

    1/ I added this to campaign script:
    monitor_event PreFactionTurnStart FactionIsLocal
    historic_event field_costs true
    terminate_monitor
    end_monitor

    and this to to historic_events:
    {FIELD_COSTS_BODY}\n\nText which inform the player how much he must pay for each army/army which sieged/agent.\n\n
    {FIELD_COSTS_TITLE}Field-Costs

    2/ I started the game and I got the pop-up message.

    3/ I continued adding the rest of the script:

    to campaign script:
    Spoiler Alert, click show to read: 

    monitor_event CharacterTurnEnd FactionIsLocal
    and I_EventCounter field_costs_accepted = 1
    and not EndedInSettlement
    and not IsBesieging
    and not AgentType = admiral
    and not AgentType = spy
    and not AgentType = diplomat
    and not AgentType = assassin
    and not AgentType = priest
    and not AgentType = princess
    and not AgentType = merchant
    and InEnemyLands
    console_command add_money -500
    inc_counter field_cost 500
    end_monitor

    monitor_event CharacterTurnEnd FactionIsLocal
    and I_EventCounter field_costs_accepted = 1
    and not EndedInSettlement
    and not AgentType = admiral
    and not AgentType = spy
    and not AgentType = diplomat
    and not AgentType = assassin
    and not AgentType = priest
    and not AgentType = princess
    and not AgentType = merchant
    and not InEnemyLands
    console_command add_money -200
    inc_counter field_cost 200
    end_monitor

    monitor_event CharacterTurnEnd FactionIsLocal
    and I_EventCounter field_costs_accepted = 1
    and not EndedInSettlement
    and IsBesieging
    and not AgentType = admiral
    and not AgentType = spy
    and not AgentType = diplomat
    and not AgentType = assassin
    and not AgentType = priest
    and not AgentType = princess
    and not AgentType = merchant
    and InEnemyLands
    console_command add_money -2000
    inc_counter field_cost 2000
    end_monitor

    ;------------------------------------------- Spy ------------------------
    monitor_event CharacterTurnEnd FactionIsLocal
    and I_EventCounter field_costs_accepted = 1
    and AgentType = spy
    and InEnemyLands
    console_command add_money -500
    inc_counter field_cost 500
    end_monitor

    ;------------------------------------------- Assassin ------------------------
    monitor_event CharacterTurnEnd FactionIsLocal
    and I_EventCounter field_costs_accepted = 1
    and AgentType = assassin
    and InEnemyLands
    console_command add_money -500
    inc_counter field_cost 500
    end_monitor

    ;------------------------------------------- Priest ------------------------
    monitor_event CharacterTurnEnd FactionIsLocal
    and I_EventCounter field_costs_accepted = 1
    and AgentType = priest
    and InEnemyLands
    console_command add_money -100
    inc_counter field_cost 100
    end_monitor

    ;------------------------------------------- Diplomat ------------------------
    monitor_event CharacterTurnEnd FactionIsLocal
    and I_EventCounter field_costs_accepted = 1
    and AgentType = diplomat
    and InEnemyLands
    console_command add_money -100
    inc_counter field_cost 100

    ;------------------------------------------- Merchants ------------------------
    monitor_event CharacterTurnEnd FactionIsLocal
    and I_EventCounter field_costs_accepted = 1
    and AgentType = merchant
    and InEnemyLands
    console_command add_money -100
    inc_counter field_cost 100
    end_monitor

    ;------------------- How much must i paid? -----------------------------------------------

    declare_counter finance_open

    monitor_event FinancesPanelOpen
    if I_CompareCounter finance_open < 1
    if I_CompareCounter field_cost <= 500
    and I_CompareCounter field_cost > 0
    historic_event field_cost_500
    end_if
    if I_CompareCounter field_cost <= 1000
    and I_CompareCounter field_cost > 500
    historic_event field_cost_1000
    end_if
    if I_CompareCounter field_cost <= 1500
    and I_CompareCounter field_cost > 1000
    historic_event field_cost_1500
    end_if
    if I_CompareCounter field_cost <= 2000
    and I_CompareCounter field_cost > 1500
    historic_event field_cost_2000
    end_if
    if I_CompareCounter field_cost <= 2500
    and I_CompareCounter field_cost > 2000
    historic_event field_cost_2500
    end_if
    if I_CompareCounter field_cost <= 3000
    and I_CompareCounter field_cost > 2500
    historic_event field_cost_3000
    end_if
    if I_CompareCounter field_cost <= 3500
    and I_CompareCounter field_cost > 3000
    historic_event field_cost_3500
    end_if
    if I_CompareCounter field_cost <= 4000
    and I_CompareCounter field_cost > 3500
    historic_event field_cost_4000
    end_if
    if I_CompareCounter field_cost <= 4500
    and I_CompareCounter field_cost > 4000
    historic_event field_cost_4500
    end_if
    if I_CompareCounter field_cost <= 5000
    and I_CompareCounter field_cost > 4500
    historic_event field_cost_5000
    end_if
    if I_CompareCounter field_cost <= 5500
    and I_CompareCounter field_cost > 5000
    historic_event field_cost_5500
    end_if
    if I_CompareCounter field_cost <= 6000
    and I_CompareCounter field_cost > 5500
    historic_event field_cost_6000
    end_if
    if I_CompareCounter field_cost <= 6500
    and I_CompareCounter field_cost > 6000
    historic_event field_cost_6500
    end_if
    if I_CompareCounter field_cost <= 7000
    and I_CompareCounter field_cost > 6500
    historic_event field_cost_7000
    end_if
    if I_CompareCounter field_cost <= 7500
    and I_CompareCounter field_cost > 7000
    historic_event field_cost_7500
    end_if
    if I_CompareCounter field_cost <= 8000
    and I_CompareCounter field_cost > 7500
    historic_event field_cost_8000
    end_if
    if I_CompareCounter field_cost <= 8500
    and I_CompareCounter field_cost > 8000
    historic_event field_cost_8500
    end_if
    if I_CompareCounter field_cost <= 9000
    and I_CompareCounter field_cost > 8500
    historic_event field_cost_9000
    end_if
    if I_CompareCounter field_cost <= 9500
    and I_CompareCounter field_cost > 9000
    historic_event field_cost_9500
    end_if
    if I_CompareCounter field_cost <= 10000
    and I_CompareCounter field_cost > 9500
    historic_event field_cost_10000
    end_if
    if I_CompareCounter field_cost <= 10500
    and I_CompareCounter field_cost > 10000
    historic_event field_cost_10500
    end_if
    if I_CompareCounter field_cost <= 11000
    and I_CompareCounter field_cost > 10500
    historic_event field_cost_11000
    end_if
    if I_CompareCounter field_cost <= 11500
    and I_CompareCounter field_cost > 11000
    historic_event field_cost_11500
    end_if
    if I_CompareCounter field_cost <= 12000
    and I_CompareCounter field_cost > 11500
    historic_event field_cost_12000
    end_if
    if I_CompareCounter field_cost <= 12500
    and I_CompareCounter field_cost > 12000
    historic_event field_cost_12500
    end_if
    if I_CompareCounter field_cost <= 13000
    and I_CompareCounter field_cost > 12500
    historic_event field_cost_13000
    end_if
    if I_CompareCounter field_cost <= 13500
    and I_CompareCounter field_cost > 13000
    historic_event field_cost_13500
    end_if
    if I_CompareCounter field_cost <= 14000
    and I_CompareCounter field_cost > 13500
    historic_event field_cost_14000
    end_if
    if I_CompareCounter field_cost <= 14500
    and I_CompareCounter field_cost > 14000
    historic_event field_cost_14500
    end_if
    if I_CompareCounter field_cost <= 15000
    and I_CompareCounter field_cost > 14500
    historic_event field_cost_15000
    end_if
    if I_CompareCounter field_cost <= 15500
    and I_CompareCounter field_cost > 15000
    historic_event field_cost_15500
    end_if
    if I_CompareCounter field_cost <= 16000
    and I_CompareCounter field_cost > 15500
    historic_event field_cost_16000
    end_if
    if I_CompareCounter field_cost <= 16500
    and I_CompareCounter field_cost > 16000
    historic_event field_cost_16500
    end_if
    if I_CompareCounter field_cost <= 17000
    and I_CompareCounter field_cost > 16500
    historic_event field_cost_17000
    end_if
    if I_CompareCounter field_cost <= 17500
    and I_CompareCounter field_cost > 17000
    historic_event field_cost_17500
    end_if
    if I_CompareCounter field_cost <= 18000
    and I_CompareCounter field_cost > 17500
    historic_event field_cost_18000
    end_if
    if I_CompareCounter field_cost <= 18500
    and I_CompareCounter field_cost > 18000
    historic_event field_cost_18500
    end_if
    if I_CompareCounter field_cost <= 19000
    and I_CompareCounter field_cost > 18500
    historic_event field_cost_19000
    end_if
    if I_CompareCounter field_cost <= 19500
    and I_CompareCounter field_cost > 19000
    historic_event field_cost_19500
    end_if
    if I_CompareCounter field_cost <= 20000
    and I_CompareCounter field_cost > 19500
    historic_event field_cost_20000
    end_if
    if I_CompareCounter field_cost <= 20500
    and I_CompareCounter field_cost > 20000
    historic_event field_cost_20500
    end_if
    if I_CompareCounter field_cost <= 21000
    and I_CompareCounter field_cost > 20500
    historic_event field_cost_21000
    end_if
    if I_CompareCounter field_cost <= 21500
    and I_CompareCounter field_cost > 21000
    historic_event field_cost_21500
    end_if
    if I_CompareCounter field_cost <= 22000
    and I_CompareCounter field_cost > 21500
    historic_event field_cost_22000
    end_if
    if I_CompareCounter field_cost <= 22500
    and I_CompareCounter field_cost > 22000
    historic_event field_cost_22500
    end_if
    if I_CompareCounter field_cost <= 23000
    and I_CompareCounter field_cost > 22500
    historic_event field_cost_23000
    end_if
    if I_CompareCounter field_cost <= 23500
    and I_CompareCounter field_cost > 23000
    historic_event field_cost_23500
    end_if
    if I_CompareCounter field_cost <= 24000
    and I_CompareCounter field_cost > 23500
    historic_event field_cost_24000
    end_if
    if I_CompareCounter field_cost <= 24500
    and I_CompareCounter field_cost > 24000
    historic_event field_cost_24500
    end_if
    if I_CompareCounter field_cost <= 25000
    and I_CompareCounter field_cost > 24500
    historic_event field_cost_25000
    end_if
    if I_CompareCounter field_cost <= 25500
    and I_CompareCounter field_cost > 25000
    historic_event field_cost_25500
    end_if
    if I_CompareCounter field_cost <= 26000
    and I_CompareCounter field_cost > 25500
    historic_event field_cost_26000
    end_if
    if I_CompareCounter field_cost <= 26500
    and I_CompareCounter field_cost > 26000
    historic_event field_cost_26500
    end_if
    if I_CompareCounter field_cost <= 27000
    and I_CompareCounter field_cost > 26500
    historic_event field_cost_27000
    end_if
    if I_CompareCounter field_cost <= 27500
    and I_CompareCounter field_cost > 27000
    historic_event field_cost_27500
    end_if
    if I_CompareCounter field_cost <= 28000
    and I_CompareCounter field_cost > 27500
    historic_event field_cost_28000
    end_if
    if I_CompareCounter field_cost <= 28500
    and I_CompareCounter field_cost > 28000
    historic_event field_cost_28500
    end_if
    if I_CompareCounter field_cost <= 29000
    and I_CompareCounter field_cost > 28500
    historic_event field_cost_29000
    end_if
    if I_CompareCounter field_cost <= 29500
    and I_CompareCounter field_cost > 29000
    historic_event field_cost_29500
    end_if
    if I_CompareCounter field_cost <= 30000
    and I_CompareCounter field_cost > 29500
    historic_event field_cost_30000
    end_if
    if I_CompareCounter field_cost <= 30500
    and I_CompareCounter field_cost > 30000
    historic_event field_cost_30500
    end_if
    if I_CompareCounter field_cost <= 31000
    and I_CompareCounter field_cost > 30500
    historic_event field_cost_31000
    end_if
    if I_CompareCounter field_cost <= 31500
    and I_CompareCounter field_cost > 31000
    historic_event field_cost_31500
    end_if
    if I_CompareCounter field_cost <= 32000
    and I_CompareCounter field_cost > 31500
    historic_event field_cost_32000
    end_if
    if I_CompareCounter field_cost <= 32500
    and I_CompareCounter field_cost > 32000
    historic_event field_cost_32500
    end_if
    if I_CompareCounter field_cost <= 33000
    and I_CompareCounter field_cost > 32500
    historic_event field_cost_33000
    end_if
    if I_CompareCounter field_cost <= 33500
    and I_CompareCounter field_cost > 33000
    historic_event field_cost_33500
    end_if
    if I_CompareCounter field_cost <= 34000
    and I_CompareCounter field_cost > 33500
    historic_event field_cost_34000
    end_if
    if I_CompareCounter field_cost <= 34500
    and I_CompareCounter field_cost > 34000
    historic_event field_cost_34500
    end_if
    if I_CompareCounter field_cost <= 35000
    and I_CompareCounter field_cost > 34500
    historic_event field_cost_35000
    end_if
    if I_CompareCounter field_cost <= 35500
    and I_CompareCounter field_cost > 35000
    historic_event field_cost_35500
    end_if
    if I_CompareCounter field_cost <= 36000
    and I_CompareCounter field_cost > 35500
    historic_event field_cost_36000
    end_if
    if I_CompareCounter field_cost <= 36500
    and I_CompareCounter field_cost > 36000
    historic_event field_cost_36500
    end_if
    if I_CompareCounter field_cost <= 37000
    and I_CompareCounter field_cost > 36500
    historic_event field_cost_37000
    end_if
    if I_CompareCounter field_cost <= 37500
    and I_CompareCounter field_cost > 37000
    historic_event field_cost_37500
    end_if
    if I_CompareCounter field_cost <= 38000
    and I_CompareCounter field_cost > 37500
    historic_event field_cost_38000
    end_if
    if I_CompareCounter field_cost <= 38500
    and I_CompareCounter field_cost > 38000
    historic_event field_cost_38500
    end_if
    if I_CompareCounter field_cost <= 39000
    and I_CompareCounter field_cost > 38500
    historic_event field_cost_39000
    end_if
    if I_CompareCounter field_cost <= 39500
    and I_CompareCounter field_cost > 39000
    historic_event field_cost_39500
    end_if
    if I_CompareCounter field_cost <= 40000
    and I_CompareCounter field_cost > 39500
    historic_event field_cost_40000
    end_if
    if I_CompareCounter field_cost <= 40500
    and I_CompareCounter field_cost > 40000
    historic_event field_cost_40500
    end_if
    if I_CompareCounter field_cost <= 41000
    and I_CompareCounter field_cost > 40500
    historic_event field_cost_41000
    end_if
    if I_CompareCounter field_cost <= 41500
    and I_CompareCounter field_cost > 41000
    historic_event field_cost_41500
    end_if
    if I_CompareCounter field_cost <= 42000
    and I_CompareCounter field_cost > 41500
    historic_event field_cost_42000
    end_if
    if I_CompareCounter field_cost <= 42500
    and I_CompareCounter field_cost > 42000
    historic_event field_cost_42500
    end_if
    if I_CompareCounter field_cost <= 43000
    and I_CompareCounter field_cost > 42500
    historic_event field_cost_43000
    end_if
    if I_CompareCounter field_cost <= 43500
    and I_CompareCounter field_cost > 43000
    historic_event field_cost_43500
    end_if
    if I_CompareCounter field_cost <= 44000
    and I_CompareCounter field_cost > 43500
    historic_event field_cost_44000
    end_if
    if I_CompareCounter field_cost <= 44500
    and I_CompareCounter field_cost > 44000
    historic_event field_cost_44500
    end_if
    if I_CompareCounter field_cost <= 45000
    and I_CompareCounter field_cost > 44500
    historic_event field_cost_45000
    end_if
    if I_CompareCounter field_cost <= 45500
    and I_CompareCounter field_cost > 45000
    historic_event field_cost_45500
    end_if
    if I_CompareCounter field_cost <= 46000
    and I_CompareCounter field_cost > 45500
    historic_event field_cost_46000
    end_if
    if I_CompareCounter field_cost <= 46500
    and I_CompareCounter field_cost > 46000
    historic_event field_cost_46500
    end_if
    if I_CompareCounter field_cost <= 47000
    and I_CompareCounter field_cost > 46500
    historic_event field_cost_47000
    end_if
    if I_CompareCounter field_cost <= 47500
    and I_CompareCounter field_cost > 47000
    historic_event field_cost_47500
    end_if
    if I_CompareCounter field_cost <= 48000
    and I_CompareCounter field_cost > 47500
    historic_event field_cost_48000
    end_if
    if I_CompareCounter field_cost <= 48500
    and I_CompareCounter field_cost > 48000
    historic_event field_cost_48500
    end_if
    if I_CompareCounter field_cost <= 49000
    and I_CompareCounter field_cost > 48500
    historic_event field_cost_49000
    end_if
    if I_CompareCounter field_cost <= 49500
    and I_CompareCounter field_cost > 49000
    historic_event field_cost_49500
    end_if
    if I_CompareCounter field_cost <= 50000
    and I_CompareCounter field_cost > 49500
    historic_event field_cost_50000
    end_if
    end_if
    set_counter finance_open 1
    end_monitor

    monitor_event ButtonPressed ButtonPressed end_turn
    set_counter finance_open 0
    set_counter field_cost 0
    end_monitor

    declare_counter field_cost


    to historic_events:
    Spoiler Alert, click show to read: 

    {FIELD_COST_500_BODY}The actual Field Costs are _500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_500_TITLE} Field Costs

    {FIELD_COST_1000_BODY}The actual Field Costs are _1000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_1000_TITLE} Field Costs

    {FIELD_COST_1500_BODY}The actual Field Costs are _1500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_1500_TITLE} Field Costs

    {FIELD_COST_2000_BODY}The actual Field Costs are _2000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_2000_TITLE} Field Costs

    {FIELD_COST_2500_BODY}The actual Field Costs are _2500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_2500_TITLE} Field Costs

    {FIELD_COST_3000_BODY}The actual Field Costs are _3000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_3000_TITLE} Field Costs

    {FIELD_COST_3500_BODY}The actual Field Costs are _3500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_3500_TITLE} Field Costs

    {FIELD_COST_4000_BODY}The actual Field Costs are _4000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_4000_TITLE} Field Costs

    {FIELD_COST_4500_BODY}The actual Field Costs are _4500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_4500_TITLE} Field Costs

    {FIELD_COST_5000_BODY}The actual Field Costs are _5000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_5000_TITLE} Field Costs

    {FIELD_COST_5500_BODY}The actual Field Costs are _5500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_5500_TITLE} Field Costs

    {FIELD_COST_6000_BODY}The actual Field Costs are _6000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_6000_TITLE} Field Costs

    {FIELD_COST_6500_BODY}The actual Field Costs are _6500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_6500_TITLE} Field Costs

    {FIELD_COST_7000_BODY}The actual Field Costs are _7000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_7000_TITLE} Field Costs

    {FIELD_COST_7500_BODY}The actual Field Costs are _7500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_7500_TITLE} Field Costs

    {FIELD_COST_8000_BODY}The actual Field Costs are _8000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_8000_TITLE} Field Costs

    {FIELD_COST_8500_BODY}The actual Field Costs are _8500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_8500_TITLE} Field Costs

    {FIELD_COST_9000_BODY}The actual Field Costs are _9000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_9000_TITLE} Field Costs

    {FIELD_COST_9500_BODY}The actual Field Costs are _9500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_9500_TITLE} Field Costs

    {FIELD_COST_10000_BODY}The actual Field Costs are _10000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_10000_TITLE} Field Costs

    {FIELD_COST_10500_BODY}The actual Field Costs are _10500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_10500_TITLE} Field Costs

    {FIELD_COST_11000_BODY}The actual Field Costs are _11000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_11000_TITLE} Field Costs

    {FIELD_COST_11500_BODY}The actual Field Costs are _11500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_11500_TITLE} Field Costs

    {FIELD_COST_12000_BODY}The actual Field Costs are _12000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_12000_TITLE} Field Costs

    {FIELD_COST_12500_BODY}The actual Field Costs are _12500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_12500_TITLE} Field Costs

    {FIELD_COST_13000_BODY}The actual Field Costs are _13000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_13000_TITLE} Field Costs

    {FIELD_COST_13500_BODY}The actual Field Costs are _13500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_13500_TITLE} Field Costs

    {FIELD_COST_14000_BODY}The actual Field Costs are _14000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_14000_TITLE} Field Costs

    {FIELD_COST_14500_BODY}The actual Field Costs are _14500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_14500_TITLE} Field Costs

    {FIELD_COST_15000_BODY}The actual Field Costs are _15000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_15000_TITLE} Field Costs

    {FIELD_COST_15500_BODY}The actual Field Costs are _15500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_15500_TITLE} Field Costs

    {FIELD_COST_16000_BODY}The actual Field Costs are _16000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_16000_TITLE} Field Costs

    {FIELD_COST_16500_BODY}The actual Field Costs are _16500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_16500_TITLE} Field Costs

    {FIELD_COST_17000_BODY}The actual Field Costs are _17000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_17000_TITLE} Field Costs

    {FIELD_COST_17500_BODY}The actual Field Costs are _17500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_17500_TITLE} Field Costs

    {FIELD_COST_18000_BODY}The actual Field Costs are _18000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_18000_TITLE} Field Costs

    {FIELD_COST_18500_BODY}The actual Field Costs are _18500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_18500_TITLE} Field Costs

    {FIELD_COST_19000_BODY}The actual Field Costs are _19000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_19000_TITLE} Field Costs

    {FIELD_COST_19500_BODY}The actual Field Costs are _19500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_19500_TITLE} Field Costs

    {FIELD_COST_20000_BODY}The actual Field Costs are _20000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_20000_TITLE} Field Costs
    {FIELD_COST_20500_BODY}The actual Field Costs are _20500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_20500_TITLE} Field Costs

    {FIELD_COST_21000_BODY}The actual Field Costs are _21000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_21000_TITLE} Field Costs

    {FIELD_COST_21500_BODY}The actual Field Costs are _21500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_21500_TITLE} Field Costs

    {FIELD_COST_22000_BODY}The actual Field Costs are _22000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_22000_TITLE} Field Costs

    {FIELD_COST_22500_BODY}The actual Field Costs are _22500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_22500_TITLE} Field Costs

    {FIELD_COST_23000_BODY}The actual Field Costs are _23000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_23000_TITLE} Field Costs

    {FIELD_COST_23500_BODY}The actual Field Costs are _23500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_23500_TITLE} Field Costs

    {FIELD_COST_24000_BODY}The actual Field Costs are _24000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_24000_TITLE} Field Costs

    {FIELD_COST_24500_BODY}The actual Field Costs are _24500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_24500_TITLE} Field Costs

    {FIELD_COST_25000_BODY}The actual Field Costs are _25000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_25000_TITLE} Field Costs

    {FIELD_COST_25500_BODY}The actual Field Costs are _25500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_25500_TITLE} Field Costs

    {FIELD_COST_26000_BODY}The actual Field Costs are _26000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_26000_TITLE} Field Costs

    {FIELD_COST_26500_BODY}The actual Field Costs are _26500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_26500_TITLE} Field Costs

    {FIELD_COST_27000_BODY}The actual Field Costs are _27000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_27000_TITLE} Field Costs

    {FIELD_COST_27500_BODY}The actual Field Costs are _27500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_27500_TITLE} Field Costs

    {FIELD_COST_28000_BODY}The actual Field Costs are _28000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_28000_TITLE} Field Costs

    {FIELD_COST_28500_BODY}The actual Field Costs are _28500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_28500_TITLE} Field Costs

    {FIELD_COST_29000_BODY}The actual Field Costs are _29000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_29000_TITLE} Field Costs

    {FIELD_COST_29500_BODY}The actual Field Costs are _29500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_29500_TITLE} Field Costs

    {FIELD_COST_30000_BODY}The actual Field Costs are _30000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_30000_TITLE} Field Costs

    {FIELD_COST_30500_BODY}The actual Field Costs are _30500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_30500_TITLE} Field Costs

    {FIELD_COST_31000_BODY}The actual Field Costs are _31000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_31000_TITLE} Field Costs

    {FIELD_COST_31500_BODY}The actual Field Costs are _31500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_31500_TITLE} Field Costs

    {FIELD_COST_32000_BODY}The actual Field Costs are _32000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_32000_TITLE} Field Costs

    {FIELD_COST_32500_BODY}The actual Field Costs are _32500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_32500_TITLE} Field Costs

    {FIELD_COST_33000_BODY}The actual Field Costs are _33000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_33000_TITLE} Field Costs

    {FIELD_COST_33500_BODY}The actual Field Costs are _33500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_33500_TITLE} Field Costs

    {FIELD_COST_34000_BODY}The actual Field Costs are _34000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_34000_TITLE} Field Costs

    {FIELD_COST_34500_BODY}The actual Field Costs are _34500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_34500_TITLE} Field Costs

    {FIELD_COST_35000_BODY}The actual Field Costs are _35000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_35000_TITLE} Field Costs

    {FIELD_COST_35500_BODY}The actual Field Costs are _35500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_35500_TITLE} Field Costs

    {FIELD_COST_36000_BODY}The actual Field Costs are _36000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_36000_TITLE} Field Costs

    {FIELD_COST_36500_BODY}The actual Field Costs are _36500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_36500_TITLE} Field Costs

    {FIELD_COST_37000_BODY}The actual Field Costs are _37000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_37000_TITLE} Field Costs

    {FIELD_COST_37500_BODY}The actual Field Costs are _37500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_37500_TITLE} Field Costs

    {FIELD_COST_38000_BODY}The actual Field Costs are _38000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_38000_TITLE} Field Costs

    {FIELD_COST_38500_BODY}The actual Field Costs are _38500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_38500_TITLE} Field Costs

    {FIELD_COST_39000_BODY}The actual Field Costs are _39000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_39000_TITLE} Field Costs

    {FIELD_COST_39500_BODY}The actual Field Costs are _39500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_39500_TITLE} Field Costs

    {FIELD_COST_40000_BODY}The actual Field Costs are _40000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_40000_TITLE} Field Costs

    {FIELD_COST_40500_BODY}The actual Field Costs are _40500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_40500_TITLE} Field Costs

    {FIELD_COST_41000_BODY}The actual Field Costs are _41000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_41000_TITLE} Field Costs

    {FIELD_COST_41500_BODY}The actual Field Costs are _41500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_41500_TITLE} Field Costs

    {FIELD_COST_42000_BODY}The actual Field Costs are _42000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_42000_TITLE} Field Costs

    {FIELD_COST_42500_BODY}The actual Field Costs are _42500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_42500_TITLE} Field Costs

    {FIELD_COST_43000_BODY}The actual Field Costs are _43000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_43000_TITLE} Field Costs

    {FIELD_COST_43500_BODY}The actual Field Costs are _43500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_43500_TITLE} Field Costs

    {FIELD_COST_44000_BODY}The actual Field Costs are _44000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_44000_TITLE} Field Costs

    {FIELD_COST_44500_BODY}The actual Field Costs are _44500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_44500_TITLE} Field Costs

    {FIELD_COST_45000_BODY}The actual Field Costs are _45000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_45000_TITLE} Field Costs

    {FIELD_COST_45500_BODY}The actual Field Costs are _45500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_45500_TITLE} Field Costs

    {FIELD_COST_46000_BODY}The actual Field Costs are _46000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_46000_TITLE} Field Costs

    {FIELD_COST_46500_BODY}The actual Field Costs are _46500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_46500_TITLE} Field Costs

    {FIELD_COST_47000_BODY}The actual Field Costs are _47000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_47000_TITLE} Field Costs

    {FIELD_COST_47500_BODY}The actual Field Costs are _47500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_47500_TITLE} Field Costs

    {FIELD_COST_48000_BODY}The actual Field Costs are _48000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_48000_TITLE} Field Costs

    {FIELD_COST_48500_BODY}The actual Field Costs are _48500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_48500_TITLE} Field Costs

    {FIELD_COST_49000_BODY}The actual Field Costs are _49000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_49000_TITLE} Field Costs

    {FIELD_COST_49500_BODY}The actual Field Costs are _49500
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_49500_TITLE} Field Costs

    {FIELD_COST_50000_BODY}The actual Field Costs are _50000
    \n\nField Costs for Armies (200 in Home Land, 500 in Enemy Land, 2000 Sieging) + Field Costs of Agents (Spy 500, Assasin 500, Priest, Princess, Diplomat 300) in Enemy Territory
    {FIELD_COST_50000_TITLE} Field Costs


    4/ I restarted the game and the script didn't work (I got no pop-up message)

    Where is the mistake?
    Last edited by Squid; August 09, 2010 at 04:59 PM. Reason: dp

  16. #16
    Amon Amarth 930's Avatar Artifex
    Join Date
    Nov 2008
    Location
    Germany, North-Rhine Westphalia
    Posts
    466

    Default Re: Field costs

    I made some test-checks with a clear Retrofit-Installation.
    Really strange, but the script from the 1st Post don´t work and had a mistake which disable the script.
    I copy in my script from Gothic TW and it works, so here it is:

    Spoiler Alert, click show to read: 
    Code:
    ;------------------------------------------- Entscheidungsevent ------------------------
    monitor_event PreFactionTurnStart FactionIsLocal
    historic_event field_costs true
    terminate_monitor
    end_monitor
    
    ;------------------------------------------- Truppen ------------------------
    monitor_event CharacterTurnEnd FactionIsLocal
        and I_EventCounter field_costs_accepted = 1
        and not EndedInSettlement
        and not IsBesieging
        and not AgentType = admiral
        and not AgentType = spy
        and not AgentType = diplomat
        and not AgentType = assassin
        and not AgentType = priest
        and not AgentType = princess
        and not AgentType = merchant    
        and InEnemyLands
        console_command add_money -500
        inc_counter field_cost 500
    end_monitor
    monitor_event CharacterTurnEnd FactionIsLocal
        and I_EventCounter field_costs_accepted = 1
        and not EndedInSettlement
        and IsBesieging
        and not AgentType = admiral
        and not AgentType = spy
        and not AgentType = diplomat
        and not AgentType = assassin
        and not AgentType = priest
        and not AgentType = princess
        and not AgentType = merchant    
        and InEnemyLands
        console_command add_money -2000
        inc_counter field_cost 2000    
    end_monitor
    monitor_event CharacterTurnEnd FactionIsLocal
        and I_EventCounter field_costs_accepted = 1
        and not EndedInSettlement
        and not AgentType = admiral
        and not AgentType = spy
        and not AgentType = diplomat
        and not AgentType = assassin
        and not AgentType = priest
        and not AgentType = princess
        and not AgentType = merchant
        and not AtSea
        and not InEnemyLands
        console_command add_money -200
        inc_counter field_cost 200    
    end_monitor
    
    ;------------------------------------------- Spione ------------------------
    monitor_event CharacterTurnEnd FactionIsLocal 
        and I_EventCounter field_costs_accepted = 1
        and AgentType = spy
        and InEnemyLands
            console_command add_money -500
        inc_counter field_cost 500        
    end_monitor
    
    ;------------------------------------------- Attentäter ------------------------
    monitor_event CharacterTurnEnd FactionIsLocal 
        and I_EventCounter field_costs_accepted = 1
        and AgentType = assassin
        and InEnemyLands
            console_command add_money -500
        inc_counter field_cost 500        
    end_monitor
    
    ;------------------------------------------- Priester ------------------------
    monitor_event CharacterTurnEnd FactionIsLocal 
        and I_EventCounter field_costs_accepted = 1
        and AgentType = priest
        and InEnemyLands
            console_command add_money -100
        inc_counter field_cost 100        
    end_monitor
    
    ;------------------------------------------- Diplomat ------------------------
    monitor_event CharacterTurnEnd FactionIsLocal 
        and I_EventCounter field_costs_accepted = 1
        and AgentType = diplomat
        and InEnemyLands
            console_command add_money -100
        inc_counter field_cost 100        
    end_monitor
    
    monitor_event CharacterTurnEnd FactionIsLocal
    and I_EventCounter field_costs_accepted = 1
    and AgentType = merchant
    and InEnemyLands
    console_command add_money -100
    inc_counter field_cost 100
    end_monitor
    
    ;------------------- Ausgabenübersicht -----------------------------------------------
    
    declare_counter finance_open
    
    monitor_event FinancesPanelOpen
    if I_CompareCounter finance_open < 1
    if I_CompareCounter field_cost <= 500
    and I_CompareCounter field_cost > 0
         historic_event field_cost_500
    end_if
    if I_CompareCounter field_cost <= 1000
    and I_CompareCounter field_cost > 500
         historic_event field_cost_1000
    end_if
    if I_CompareCounter field_cost <= 1500
    and I_CompareCounter field_cost > 1000
         historic_event field_cost_1500
    end_if
    if I_CompareCounter field_cost <= 2000
    and I_CompareCounter field_cost > 1500
         historic_event field_cost_2000
    end_if
    if I_CompareCounter field_cost <= 2500
    and I_CompareCounter field_cost > 2000
         historic_event field_cost_2500
    end_if
    if I_CompareCounter field_cost <= 3000
    and I_CompareCounter field_cost > 2500
         historic_event field_cost_3000
    end_if
    if I_CompareCounter field_cost <= 3500
    and I_CompareCounter field_cost > 3000
         historic_event field_cost_3500
    end_if
    if I_CompareCounter field_cost <= 4000
    and I_CompareCounter field_cost > 3500
         historic_event field_cost_4000
    end_if
    if I_CompareCounter field_cost <= 4500
    and I_CompareCounter field_cost > 4000
         historic_event field_cost_4500
    end_if
    if I_CompareCounter field_cost <= 5000
    and I_CompareCounter field_cost > 4500
         historic_event field_cost_5000
    end_if
    if I_CompareCounter field_cost <= 5500
    and I_CompareCounter field_cost > 5000
         historic_event field_cost_5500
    end_if
    if I_CompareCounter field_cost <= 6000
    and I_CompareCounter field_cost > 5500
         historic_event field_cost_6000
    end_if
    if I_CompareCounter field_cost <= 6500
    and I_CompareCounter field_cost > 6000
         historic_event field_cost_6500
    end_if
    if I_CompareCounter field_cost <= 7000
    and I_CompareCounter field_cost > 6500
         historic_event field_cost_7000
    end_if
    if I_CompareCounter field_cost <= 7500
    and I_CompareCounter field_cost > 7000
         historic_event field_cost_7500
    end_if
    if I_CompareCounter field_cost <= 8000
    and I_CompareCounter field_cost > 7500
         historic_event field_cost_8000
    end_if
    if I_CompareCounter field_cost <= 8500
    and I_CompareCounter field_cost > 8000
         historic_event field_cost_8500
    end_if
    if I_CompareCounter field_cost <= 9000
    and I_CompareCounter field_cost > 8500
         historic_event field_cost_9000
    end_if
    if I_CompareCounter field_cost <= 9500
    and I_CompareCounter field_cost > 9000
         historic_event field_cost_9500
    end_if
    if I_CompareCounter field_cost <= 10000
    and I_CompareCounter field_cost > 9500
         historic_event field_cost_10000
    end_if
    if I_CompareCounter field_cost <= 10500
    and I_CompareCounter field_cost > 10000
         historic_event field_cost_10500
    end_if
    if I_CompareCounter field_cost <= 11000
    and I_CompareCounter field_cost > 10500
         historic_event field_cost_11000
    end_if
    if I_CompareCounter field_cost <= 11500
    and I_CompareCounter field_cost > 11000
         historic_event field_cost_11500
    end_if
    if I_CompareCounter field_cost <= 12000
    and I_CompareCounter field_cost > 11500
         historic_event field_cost_12000
    end_if
    if I_CompareCounter field_cost <= 12500
    and I_CompareCounter field_cost > 12000
         historic_event field_cost_12500
    end_if
    if I_CompareCounter field_cost <= 13000
    and I_CompareCounter field_cost > 12500
         historic_event field_cost_13000
    end_if
    if I_CompareCounter field_cost <= 13500
    and I_CompareCounter field_cost > 13000
         historic_event field_cost_13500
    end_if
    if I_CompareCounter field_cost <= 14000
    and I_CompareCounter field_cost > 13500
         historic_event field_cost_14000
    end_if
    if I_CompareCounter field_cost <= 14500
    and I_CompareCounter field_cost > 14000
         historic_event field_cost_14500
    end_if
    if I_CompareCounter field_cost <= 15000
    and I_CompareCounter field_cost > 14500
         historic_event field_cost_15000
    end_if
    if I_CompareCounter field_cost <= 15500
    and I_CompareCounter field_cost > 15000
         historic_event field_cost_15500
    end_if
    if I_CompareCounter field_cost <= 16000
    and I_CompareCounter field_cost > 15500
         historic_event field_cost_16000
    end_if
    if I_CompareCounter field_cost <= 16500
    and I_CompareCounter field_cost > 16000
         historic_event field_cost_16500
    end_if
    if I_CompareCounter field_cost <= 17000
    and I_CompareCounter field_cost > 16500
         historic_event field_cost_17000
    end_if
    if I_CompareCounter field_cost <= 17500
    and I_CompareCounter field_cost > 17000
         historic_event field_cost_17500
    end_if
    if I_CompareCounter field_cost <= 18000
    and I_CompareCounter field_cost > 17500
         historic_event field_cost_18000
    end_if
    if I_CompareCounter field_cost <= 18500
    and I_CompareCounter field_cost > 18000
         historic_event field_cost_18500
    end_if
    if I_CompareCounter field_cost <= 19000
    and I_CompareCounter field_cost > 18500
         historic_event field_cost_19000
    end_if
    if I_CompareCounter field_cost <= 19500
    and I_CompareCounter field_cost > 19000
         historic_event field_cost_19500
    end_if
    if I_CompareCounter field_cost <= 20000
    and I_CompareCounter field_cost > 19500
         historic_event field_cost_20000
    end_if
    if I_CompareCounter field_cost <= 20500
    and I_CompareCounter field_cost > 20000
         historic_event field_cost_20500
    end_if
    if I_CompareCounter field_cost <= 21000
    and I_CompareCounter field_cost > 20500
         historic_event field_cost_21000
    end_if
    if I_CompareCounter field_cost <= 21500
    and I_CompareCounter field_cost > 21000
         historic_event field_cost_21500
    end_if
    if I_CompareCounter field_cost <= 22000
    and I_CompareCounter field_cost > 21500
         historic_event field_cost_22000
    end_if
    if I_CompareCounter field_cost <= 22500
    and I_CompareCounter field_cost > 22000
         historic_event field_cost_22500
    end_if
    if I_CompareCounter field_cost <= 23000
    and I_CompareCounter field_cost > 22500
         historic_event field_cost_23000
    end_if
    if I_CompareCounter field_cost <= 23500
    and I_CompareCounter field_cost > 23000
         historic_event field_cost_23500
    end_if
    if I_CompareCounter field_cost <= 24000
    and I_CompareCounter field_cost > 23500
         historic_event field_cost_24000
    end_if
    if I_CompareCounter field_cost <= 24500
    and I_CompareCounter field_cost > 24000
         historic_event field_cost_24500
    end_if
    if I_CompareCounter field_cost <= 25000
    and I_CompareCounter field_cost > 24500
         historic_event field_cost_25000
    end_if
    if I_CompareCounter field_cost <= 25500
    and I_CompareCounter field_cost > 25000
         historic_event field_cost_25500
    end_if
    if I_CompareCounter field_cost <= 26000
    and I_CompareCounter field_cost > 25500
         historic_event field_cost_26000
    end_if
    if I_CompareCounter field_cost <= 26500
    and I_CompareCounter field_cost > 26000
         historic_event field_cost_26500
    end_if
    if I_CompareCounter field_cost <= 27000
    and I_CompareCounter field_cost > 26500
         historic_event field_cost_27000
    end_if
    if I_CompareCounter field_cost <= 27500
    and I_CompareCounter field_cost > 27000
         historic_event field_cost_27500
    end_if
    if I_CompareCounter field_cost <= 28000
    and I_CompareCounter field_cost > 27500
         historic_event field_cost_28000
    end_if
    if I_CompareCounter field_cost <= 28500
    and I_CompareCounter field_cost > 28000
         historic_event field_cost_28500
    end_if
    if I_CompareCounter field_cost <= 29000
    and I_CompareCounter field_cost > 28500
         historic_event field_cost_29000
    end_if
    if I_CompareCounter field_cost <= 29500
    and I_CompareCounter field_cost > 29000
         historic_event field_cost_29500
    end_if
    if I_CompareCounter field_cost <= 30000
    and I_CompareCounter field_cost > 29500
         historic_event field_cost_30000
    end_if
    if I_CompareCounter field_cost <= 30500
    and I_CompareCounter field_cost > 30000
         historic_event field_cost_30500
    end_if
    if I_CompareCounter field_cost <= 31000
    and I_CompareCounter field_cost > 30500
         historic_event field_cost_31000
    end_if
    if I_CompareCounter field_cost <= 31500
    and I_CompareCounter field_cost > 31000
         historic_event field_cost_31500
    end_if
    if I_CompareCounter field_cost <= 32000
    and I_CompareCounter field_cost > 31500
         historic_event field_cost_32000
    end_if
    if I_CompareCounter field_cost <= 32500
    and I_CompareCounter field_cost > 32000
         historic_event field_cost_32500
    end_if
    if I_CompareCounter field_cost <= 33000
    and I_CompareCounter field_cost > 32500
         historic_event field_cost_33000
    end_if
    if I_CompareCounter field_cost <= 33500
    and I_CompareCounter field_cost > 33000
         historic_event field_cost_33500
    end_if
    if I_CompareCounter field_cost <= 34000
    and I_CompareCounter field_cost > 33500
         historic_event field_cost_34000
    end_if
    if I_CompareCounter field_cost <= 34500
    and I_CompareCounter field_cost > 34000
         historic_event field_cost_34500
    end_if
    if I_CompareCounter field_cost <= 35000
    and I_CompareCounter field_cost > 34500
         historic_event field_cost_35000
    end_if
    if I_CompareCounter field_cost <= 35500
    and I_CompareCounter field_cost > 35000
         historic_event field_cost_35500
    end_if
    if I_CompareCounter field_cost <= 36000
    and I_CompareCounter field_cost > 35500
         historic_event field_cost_36000
    end_if
    if I_CompareCounter field_cost <= 36500
    and I_CompareCounter field_cost > 36000
         historic_event field_cost_36500
    end_if
    if I_CompareCounter field_cost <= 37000
    and I_CompareCounter field_cost > 36500
         historic_event field_cost_37000
    end_if
    if I_CompareCounter field_cost <= 37500
    and I_CompareCounter field_cost > 37000
         historic_event field_cost_37500
    end_if
    if I_CompareCounter field_cost <= 38000
    and I_CompareCounter field_cost > 37500
         historic_event field_cost_38000
    end_if
    if I_CompareCounter field_cost <= 38500
    and I_CompareCounter field_cost > 38000
         historic_event field_cost_38500
    end_if
    if I_CompareCounter field_cost <= 39000
    and I_CompareCounter field_cost > 38500
         historic_event field_cost_39000
    end_if
    if I_CompareCounter field_cost <= 39500
    and I_CompareCounter field_cost > 39000
         historic_event field_cost_39500
    end_if
    if I_CompareCounter field_cost <= 40000
    and I_CompareCounter field_cost > 39500
         historic_event field_cost_40000
    end_if
    if I_CompareCounter field_cost <= 40500
    and I_CompareCounter field_cost > 40000
         historic_event field_cost_40500
    end_if
    if I_CompareCounter field_cost <= 41000
    and I_CompareCounter field_cost > 40500
         historic_event field_cost_41000
    end_if
    if I_CompareCounter field_cost <= 41500
    and I_CompareCounter field_cost > 41000
         historic_event field_cost_41500
    end_if
    if I_CompareCounter field_cost <= 42000
    and I_CompareCounter field_cost > 41500
         historic_event field_cost_42000
    end_if
    if I_CompareCounter field_cost <= 42500
    and I_CompareCounter field_cost > 42000
         historic_event field_cost_42500
    end_if
    if I_CompareCounter field_cost <= 43000
    and I_CompareCounter field_cost > 42500
         historic_event field_cost_43000
    end_if
    if I_CompareCounter field_cost <= 43500
    and I_CompareCounter field_cost > 43000
         historic_event field_cost_43500
    end_if
    if I_CompareCounter field_cost <= 44000
    and I_CompareCounter field_cost > 43500
         historic_event field_cost_44000
    end_if
    if I_CompareCounter field_cost <= 44500
    and I_CompareCounter field_cost > 44000
         historic_event field_cost_44500
    end_if
    if I_CompareCounter field_cost <= 45000
    and I_CompareCounter field_cost > 44500
         historic_event field_cost_45000
    end_if
    if I_CompareCounter field_cost <= 45500
    and I_CompareCounter field_cost > 45000
         historic_event field_cost_45500
    end_if
    if I_CompareCounter field_cost <= 46000
    and I_CompareCounter field_cost > 45500
         historic_event field_cost_46000
    end_if
    if I_CompareCounter field_cost <= 46500
    and I_CompareCounter field_cost > 46000
         historic_event field_cost_46500
    end_if
    if I_CompareCounter field_cost <= 47000
    and I_CompareCounter field_cost > 46500
         historic_event field_cost_47000
    end_if
    if I_CompareCounter field_cost <= 47500
    and I_CompareCounter field_cost > 47000
         historic_event field_cost_47500
    end_if
    if I_CompareCounter field_cost <= 48000
    and I_CompareCounter field_cost > 47500
         historic_event field_cost_48000
    end_if
    if I_CompareCounter field_cost <= 48500
    and I_CompareCounter field_cost > 48000
         historic_event field_cost_48500
    end_if
    if I_CompareCounter field_cost <= 49000
    and I_CompareCounter field_cost > 48500
         historic_event field_cost_49000
    end_if
    if I_CompareCounter field_cost <= 49500
    and I_CompareCounter field_cost > 49000
         historic_event field_cost_49500
    end_if
    if I_CompareCounter field_cost <= 50000
    and I_CompareCounter field_cost > 49500
         historic_event field_cost_50000
    end_if
    end_if
    set_counter finance_open 1
    end_monitor
    
    monitor_event ButtonPressed ButtonPressed end_turn
        set_counter finance_open 0
        set_counter field_cost 0
        end_monitor
    
    declare_counter field_cost


    I can´t find the mistake in the script... maybe somewhere a little typing error
    Update of the first Post of course.


    Edit:
    Find the Problem!

    ;------------------------------------------- Diplomat ------------------------
    monitor_event CharacterTurnEnd FactionIsLocal
    and I_EventCounter field_costs_accepted = 1
    and AgentType = diplomat
    and InEnemyLands
    console_command add_money -100
    inc_counter field_cost 100
    Missing "end_monitor"



    Edit2:

    I tested it again and it works now, so the only mistake was the missed end_monitor. Probably happened by copy and pasting the script.
    Last edited by Amon Amarth 930; August 09, 2010 at 05:40 PM.

    Third Age Member (Fellowship-Scripter)
    Under the Patronage of MasterBigAb

  17. #17
    HbHadast's Avatar Civis
    Join Date
    Jan 2009
    Location
    Carthage
    Posts
    153

    Default Re: Field costs

    Now it works! However, there is no message that signals how much florins I am paying per turn.

    It's a minor issue as long as the main script is working without problems!

    Thank you very much. +rep!

  18. #18
    Amon Amarth 930's Avatar Artifex
    Join Date
    Nov 2008
    Location
    Germany, North-Rhine Westphalia
    Posts
    466

    Default Re: Field costs

    Quote Originally Posted by HbHadast View Post
    Now it works! However, there is no message that signals how much florins I am paying per turn.

    It's a minor issue as long as the main script is working without problems!

    Thank you very much. +rep!
    You must let pass one turn and then you can click on the financial overview. A message will come up now and tell you how much do you must pay.
    And I´m glad that i could help you

    Third Age Member (Fellowship-Scripter)
    Under the Patronage of MasterBigAb

  19. #19
    /|\/|\/|\/|\/|\/|\/
    Join Date
    Jun 2005
    Posts
    10,770

    Default Re: Field costs

    Quote Originally Posted by Amon Amarth 930 View Post


    Much text if you see, when you will change some values you have much to do.
    I advise to just copy the text into your script/events-txt.

    And thats all.
    About that bit in blue; it should say 'data\text\historic_events.txt'

    And once the text is copied into it then the historic_events.strings.bin needs deleting, so it can be rebuilt.
    Last edited by Taiji; August 09, 2010 at 07:06 PM.

  20. #20
    Amon Amarth 930's Avatar Artifex
    Join Date
    Nov 2008
    Location
    Germany, North-Rhine Westphalia
    Posts
    466

    Default Re: Field costs

    Quote Originally Posted by Taiji View Post
    About that bit in blue; it should say 'data\text\historic_events.txt'

    And once the text is copied into it then the historic_events.strings.bin needs deleting, so it can be rebuilt.
    Actual the part in blue means the written part/text/code of the campaign_script and the historic_events.
    I rework it so that it is more understandable.

    And deleting of the strings.bin: I work over 1 1/2 years with scripting now, and I had never delete the strings-bin-File and I had never any problems, so I would say it´s not necessary.

    Third Age Member (Fellowship-Scripter)
    Under the Patronage of MasterBigAb

Page 1 of 3 123 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •