Is there a 4 turns per year mod? I've been looking and cannot find one.
Is there a 4 turns per year mod? I've been looking and cannot find one.
Yes.
There is the 4 seasons mod.
Originally Posted by Marcus Aurelius
As far as i know only a few mods add the 4tpy script in M2, but the script is really easy to add yourself.
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.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
kushan
Under the patronage of Silver Guard
thanks a ton....i'll give it a shot
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.