00 05/11/2013 18:34
Impostando il timescale nel descr_strat a 0.0835 si ottengono 12 turni per anno.
Purtroppo i personaggi continuano ad invecchiare comunque di 1 anno ogni 2 turni (come se un turno corrispondesse a 6 mesi anzichè 1).

uno script però trasforma anche ogni singolo turno in uno specifico mese e quindi regola anche le stagioni. Il PROBLEMA di questo script è che funziona unicamente per il single player, mentre invece non funziona sulle hotseat!
Lo script è questo

declare_counter month
set_counter month 1 ;Set to January

monitor_event FactionTurnStart FactionIsLocal ; set the season for each month
if I_CompareCounter month == 1 ;January
console_command season winter
end_if

if I_CompareCounter month == 2 ;February
console_command season winter
end_if

if I_CompareCounter month == 3 ;March
console_command season summer
end_if

if I_CompareCounter month == 4 ;April
console_command season summer
end_if

if I_CompareCounter month == 5 ;May
console_command season summer
end_if

if I_CompareCounter month == 6 ;June
console_command season summer
end_if

if I_CompareCounter month == 7 ;July
console_command season summer
end_if

if I_CompareCounter month == 8 ;August
console_command season summer
end_if

if I_CompareCounter month == 9 ;September
console_command season summer
end_if

if I_CompareCounter month == 10 ;October
console_command season winter
end_if

if I_CompareCounter month == 11 ;November
console_command season winter
end_if

if I_CompareCounter month == 12 ;December
console_command season winter
end_if

inc_counter month 1 ;advance the month
if I_CompareCounter month == 13 ;start a new year
set_counter month 1
end_if
end_monitor

monitor_event FactionTurnEnd FactionType slave
and I_CompareCounter month < 12
console_command season summer
end_monitor

wait_monitors

end_script

Premetto che lo script io non l'ho mai usato, l'avevo letto sul forum mtwitalia
Il loro silenzio è un'eloquente affermazione
(Marco Tullio Cicerone)

Domandare non costa che un istante di imbarazzo, non domandare è essere imbarazzati per tutta la vita
proverbio Giapponese