Results 1 to 8 of 8

Thread: 4 Turns Per Year

Hybrid View

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

    Default 4 Turns Per Year

    Is there a 4 turns per year mod? I've been looking and cannot find one.

  2. #2
    Orko's Avatar Praeses
    Join Date
    Jul 2007
    Location
    Petah Tikva, Israel
    Posts
    8,916

    Default Re: 4 Turns Per Year

    Yes.
    There is the 4 seasons mod.
    Quote Originally Posted by Marcus Aurelius
    Live a good life. If there are gods and they are just, then they will not care how devout you have been, but will welcome you based on the virtues you have lived by. If there are gods, but unjust, then you should not want to worship them. If there are no gods, then you will be gone, but will have lived a noble life that will live on in the memories of your loved ones.

  3. #3
    Kushan's Avatar Artifex
    Join Date
    Nov 2004
    Location
    WA, USA
    Posts
    715

    Default Re: 4 Turns Per Year

    As far as i know only a few mods add the 4tpy script in M2, but the script is really easy to add yourself.

    From Alpaca's Script-O-Rama

    declare_counter season_counter

    monitor_event FactionTurnStart FactionIsLocal
    inc_counter season_counter 1

    ; 0 equals winter
    if I_CompareCounter season_counter == 0
    console_command season winter
    end_if
    if I_CompareCounter season_counter > 0
    console_command season summer
    end_if
    ; Reset the counter on the autumn turn so that it'll be 0 next turn
    if I_CompareCounter season_counter == 3
    set_counter season_counter -1
    end_if
    end_monitor
    Just add it to the bottom of your campaign_script.txt file. I have included it in my mod, and it works with no problems.


    kushan
    Under the patronage of Silver Guard

  4. #4

    Default Re: 4 Turns Per Year

    thanks a ton....i'll give it a shot

  5. #5

    Default Re: 4 Turns Per Year

    do i also have to change the timescale? i changed it to .25 and i don't think the script is working right.....i probably did something wrong. i still get just summer and winter, one after another...and my chars are aging once every 2 turns. thanks.

  6. #6
    Orko's Avatar Praeses
    Join Date
    Jul 2007
    Location
    Petah Tikva, Israel
    Posts
    8,916

    Default Re: 4 Turns Per Year

    Quote Originally Posted by jbout2 View Post
    do i also have to change the timescale? i changed it to .25 and i don't think the script is working right.....i probably did something wrong. i still get just summer and winter, one after another...and my chars are aging once every 2 turns. thanks.
    Change it from just .25 to 0.25
    Quote Originally Posted by Marcus Aurelius
    Live a good life. If there are gods and they are just, then they will not care how devout you have been, but will welcome you based on the virtues you have lived by. If there are gods, but unjust, then you should not want to worship them. If there are no gods, then you will be gone, but will have lived a noble life that will live on in the memories of your loved ones.

Posting Permissions

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