Results 1 to 4 of 4

Thread: Changing the money script

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1

    Default Changing the money script

    How do I change the money script so that instead of giving 5000 each turn to bankrupt nations, it will give them 1000 x number of cities they own.

    And in what file do I have to change this, cause I deleted the money script a while ago and now I can't find the correct file.

  2. #2
    Socal_infidel's Avatar PDER Piper
    Join Date
    Jan 2007
    Location
    Brooklyn USA
    Posts
    2,563

    Default Re: Changing the money script

    Add this at then end of your campaign_script file for each faction

    monitor_event SettlementTurnStart FactionType england
    and not FactionIsLocal
    console_command add_money england, 1000
    end_monitor

  3. #3

    Default Re: Changing the money script

    monitor_event SettlementTurnStart FactionType england
    and not FactionIsLocal
    and Treasury < 5000
    console_command add_money england, 1000
    end_monitor


    monitor_event SettlementTurnStart FactionType france
    and not FactionIsLocal
    and Treasury < 5000
    console_command add_money france, 1000
    end_monitor


    monitor_event SettlementTurnStart FactionType hre
    and not FactionIsLocal
    and Treasury < 5000
    console_command add_money hre, 1000
    end_monitor
    Now I have something like this, for all factions. Will this work, do they get 1000 florins x number of city's owned when their treasury is below 5000?

  4. #4

    Default Re: Changing the money script

    Yep, that looks right to me!

Posting Permissions

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