
Originally Posted by
Aaren J
Am I to delete the entire file or just a specific part of it?
The entire "ageing script" section of the files.
This bit, to be precise:
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