I'm trying to make the early campaign 4 turns per year, I know to edit the descr_strat to .250 on the time scale.

how would I correctly edit the campaign script?
Code:
;=================== AGEING SCRIPT ======================
declare_counter season
monitor_event PreFactionTurnStart FactionIsLocal
    inc_counter season 1
    if I_CompareCounter season == 1
        console_command season summer
    end_if;

    if I_CompareCounter season == 2
        console_command season winter
        set_counter season 0
    end_if
end_monitor

monitor_event FactionTurnEnd FactionType slave
    console_command season winter
end_monitor