; ; Campaign script ; Written by GrnEyedDvl ; ; Table of Contents ; 1. 6 turns per year, characters age in 1st Period ; ; ; ; ; ; ; script ;show the whole map restrict_strat_radar false ; 1. 12 Turns per year. declare_counter period set_counter period 1 ;set to Jan -Feb monitor_event FactionTurnStart FactionIsLocal ; set the season for each period if I_CompareCounter period == 1 ;Jan, Feb console_command season winter end_if if I_CompareCounter period == 2 ;March April console_command season summer end_if if I_CompareCounter period == 3 ;May June console_command season summer end_if if I_CompareCounter period == 4 ;July Aug console_command season summer end_if if I_CompareCounter period == 5 ;Sept Oct console_command season summer end_if if I_CompareCounter period == 6 ;Nov Dec console_command season winter end_if inc_counter period 1 ;advance the period if I_CompareCounter period == 7 ;start a new year set_counter period 1 end_if end_monitor monitor_event FactionTurnEnd FactionType slave and I_CompareCounter period > 1 console_command season summer end_monitor wait_monitors end_script