Results 1 to 14 of 14

Thread: Question about aging....

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    gord96's Avatar Domesticus
    Join Date
    Oct 2004
    Location
    Canada
    Posts
    2,495

    Default Question about aging....

    How does the aging work in SS 6.1. I see it is 1.5 years per turn. I assume the generals age a bit slower?

    Thanks very much!
    Love the mod so far!

  2. #2
    Caesar Clivus's Avatar SS Forum Moderator
    Join Date
    May 2007
    Location
    Australia
    Posts
    12,693

    Default Re: Question about aging....

    Nope. Rate of aging is pretty much hardcoded at 1 year per 2 turns. Generals age in SS at the same rate they did in vanilla which results in generals being alive for 200 years or so (which is one reason why so many people prefer playing at 2 turns per year timescale, to synch up aging with turns).

    There is a way of scripting the rate of aging but I believe it is quite complex and would probably slow down people's game performance.

    BftB2 UPDATED 22nd DECEMBER. Member of the Complete Byzantine Unit Roster team

  3. #3

    Default Re: Question about aging....

    Quote Originally Posted by Caesar Clivus View Post
    Nope. Rate of aging is pretty much hardcoded at 1 year per 2 turns. Generals age in SS at the same rate they did in vanilla which results in generals being alive for 200 years or so (which is one reason why so many people prefer playing at 2 turns per year timescale, to synch up aging with turns).

    There is a way of scripting the rate of aging but I believe it is quite complex and would probably slow down people's game performance.
    Yep, that's the main reason I always play 2tpy. I don't like having immortal vampire generals.
    DLV rules!

  4. #4

    Default Re: Question about aging....

    Quote Originally Posted by BamaToon View Post
    Yep, that's the main reason I always play 2tpy. I don't like having immortal vampire generals.
    I don't think immortal vampires, probably more like dwarves I think. Elves live 600 years so too long to be an elf

  5. #5

    Default Re: Question about aging....

    Quote Originally Posted by Pengo View Post
    I don't think immortal vampires, probably more like dwarves I think. Elves live 600 years so too long to be an elf
    Yeah, could be dwarves, I guess, but they're usually too tall.
    DLV rules!

  6. #6

    Default Re: Question about aging....

    Quote Originally Posted by BamaToon View Post
    Yep, that's the main reason I always play 2tpy. I don't like having immortal vampire generals.
    sorry - what's 2tpy?

  7. #7
    Navajo Joe's Avatar SS Forum Moderator
    Join Date
    May 2008
    Location
    England
    Posts
    4,182

    Default Re: Question about aging....

    Quote Originally Posted by DireStraits View Post
    sorry - what's 2tpy?
    Two Turns per year, usuable with 6.1, check out the sub mods





    'Proud to be patronised by cedric37(My Father and My Guardian)

  8. #8

    Default Re: Question about aging....

    Quote Originally Posted by Navajo Joe View Post
    Two Turns per year, usuable with 6.1, check out the sub mods
    Thank-you, went to look for it but no luck, I don't suppose you could provide a link? Would be very helpful, thank-you.

    And from my experience characters start being able to die of natural causes around age 60, so in SS thaaats.. 60-14 = 46 years of age = 92 turns. They don't definitely die at 60, but there is an increasing possibility every year after that they will die, and i've never seen a character reach 68.
    Last edited by DireStraits; April 29, 2009 at 03:00 PM.

  9. #9
    aduellist's Avatar Push the button Max!
    Join Date
    Mar 2005
    Location
    Shenandoah Valley
    Posts
    1,822

    Default Re: Question about aging....

    Quote Originally Posted by Caesar Clivus View Post
    Nope. Rate of aging is pretty much hardcoded at 1 year per 2 turns. Generals age in SS at the same rate they did in vanilla which results in generals being alive for 200 years or so (which is one reason why so many people prefer playing at 2 turns per year timescale, to synch up aging with turns).

    There is a way of scripting the rate of aging but I believe it is quite complex and would probably slow down people's game performance.
    Characters age every time a winter turn ends. Although aging 1 year per turn is doable, unfortunately there's no way to properly age at 1.5 years per turn. Odd number, that. What was CA thinking?

    All the aging script does is set the season to winter at the end of each summer turn, thus aging the characters at one year per turn. It doesn't add appreciable slowdown to the end turn times (or, at least, I didn't notice much). The biggest glitch encountered is that apparently devastation is "healed" at the end of every summer turn. So using the aging script essentially makes devastation permanent.

    2 turns per year, as CC already pointed out, is the only time scale at which aging matches the turn cycle. Again, what was CA thinking?
    Last edited by aduellist; April 28, 2009 at 11:13 AM.
    Under the patronage of TheFirstONeill
    Proud team member of
    THERA, A New Beginning


    "The trouble with fighting for human freedom is that one spends most of one's time defending scoundrels. For it is against scoundrels that oppressive laws are first aimed, and oppression must be stopped at the beginning if it is to be stopped at all." H. L. Mencken

    "Liberty is meaningless where the right to utter one’s thoughts and opinions has ceased to exist. That, of all rights, is the dread of tyrants. It is the right which they first of all strike down." Frederick Douglass

  10. #10
    gord96's Avatar Domesticus
    Join Date
    Oct 2004
    Location
    Canada
    Posts
    2,495

    Default Re: Question about aging....

    hehe. thanks guys!

  11. #11
    aduellist's Avatar Push the button Max!
    Join Date
    Mar 2005
    Location
    Shenandoah Valley
    Posts
    1,822

    Default Re: Question about aging....

    If anyone is adventurous, interested or masochistic enough, here's the code that needs to be inserted into campaign_script.txt to enable one year per turn aging (what's a few thousand lines of code among friends? ). It's set up out to 449 turns, easily extendable for any length campaign.

    Note: This is not my original work. Can't remember off the top of my head who first wrote it, but I got it out of a Mod Workshop thread a couple of years ago.

    Spoiler Alert, click show to read: 
    Code:
    	;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
    	;; MODIFIED AGING CODE
    	;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 0
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 0
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 1
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 2
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 2
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 3
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 4
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 4
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 5
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 6
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 6
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 7
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 8
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 8
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 9
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 10
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 10
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 11
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 12
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 12
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 13
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 14
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 14
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 15
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 16
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 16
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 17
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 18
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 18
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 19
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 20
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 20
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 21
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 22
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 22
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 23
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 24
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 24
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 25
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 26
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 26
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 27
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 28
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 28
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 29
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 30
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 30
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 31
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 32
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 32
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 33
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 34
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 34
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 35
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 36
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 36
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 37
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 38
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 38
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 39
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 40
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 40
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 41
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 42
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 42
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 43
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 44
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 44
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 45
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 46
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 46
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 47
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 48
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 48
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 49
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 50
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 50
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 51
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 52
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 52
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 53
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 54
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 54
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 55
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 56
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 56
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 57
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 58
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 58
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 59
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 60
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 60
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 61
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 62
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 62
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 63
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 64
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 64
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 65
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 66
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 66
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 67
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 68
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 68
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 69
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 70
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 70
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 71
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 72
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 72
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 73
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 74
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 74
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 75
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 76
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 76
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 77
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 78
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 78
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 79
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 80
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 80
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 81
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 82
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 82
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 83
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 84
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 84
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 85
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 86
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 86
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 87
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 88
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 88
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 89
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 90
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 90
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 91
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 92
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 92
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 93
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 94
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 94
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 95
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 96
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 96
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 97
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 98
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 98
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 99
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 100
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 100
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 101
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 102
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 102
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 103
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 104
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 104
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 105
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 106
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 106
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 107
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 108
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 108
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 109
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 110
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 110
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 111
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 112
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 112
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 113
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 114
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 114
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 115
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 116
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 116
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 117
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 118
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 118
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 119
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 120
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 120
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 121
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 122
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 122
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 123
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 124
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 124
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 125
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 126
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 126
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 127
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 128
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 128
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 129
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 130
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 130
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 131
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 132
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 132
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 133
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 134
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 134
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 135
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 136
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 136
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 137
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 138
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 138
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 139
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 140
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 140
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 141
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 142
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 142
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 143
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 144
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 144
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 145
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 146
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 146
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 147
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 148
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 148
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 149
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 150
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 150
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 151
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 152
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 152
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 153
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 154
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 154
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 155
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 156
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 156
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 157
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 158
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 158
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 159
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 160
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 160
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 161
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 162
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 162
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 163
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 164
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 164
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 165
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 166
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 166
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 167
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 168
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 168
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 169
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 170
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 170
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 171
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 172
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 172
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 173
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 174
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 174
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 175
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 176
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 176
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 177
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 178
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 178
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 179
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 180
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 180
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 181
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 182
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 182
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 183
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 184
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 184
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 185
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 186
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 186
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 187
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 188
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 188
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 189
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 190
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 190
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 191
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 192
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 192
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 193
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 194
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 194
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 195
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 196
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 196
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 197
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 198
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 198
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 199
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 200
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 200
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 201
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 202
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 202
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 203
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 204
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 204
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 205
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 206
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 206
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 207
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 208
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 208
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 209
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 210
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 210
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 211
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 212
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 212
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 213
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 214
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 214
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 215
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 216
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 216
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 217
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 218
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 218
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 219
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 220
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 220
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 221
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 222
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 222
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 223
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 224
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 224
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 225
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 226
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 226
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 227
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 228
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 228
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 229
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 230
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 230
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 231
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 232
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 232
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 233
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 234
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 234
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 235
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 236
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 236
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 237
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 238
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 238
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 239
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 240
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 240
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 241
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 242
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 242
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 243
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 244
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 244
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 245
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 246
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 246
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 247
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 248
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 248
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 249
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 250
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 250
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 251
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 252
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 252
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 253
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 254
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 254
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 255
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 256
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 256
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 257
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 258
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 258
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 259
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 260
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 260
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 261
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 262
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 262
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 263
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 264
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 264
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 265
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 266
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 266
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 267
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 268
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 268
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 269
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 270
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 270
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 271
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 272
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 272
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 273
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 274
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 274
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 275
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 276
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 276
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 277
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 278
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 278
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 279
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 280
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 280
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 281
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 282
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 282
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 283
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 284
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 284
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 285
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 286
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 286
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 287
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 288
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 288
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 289
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 290
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 290
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 291
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 292
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 292
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 293
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 294
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 294
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 295
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 296
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 296
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 297
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 298
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 298
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 299
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 300
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 300
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 301
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 302
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 302
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 303
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 304
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 304
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 305
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 306
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 306
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 307
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 308
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 308
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 309
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 310
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 310
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 311
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 312
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 312
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 313
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 314
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 314
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 315
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 316
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 316
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 317
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 318
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 318
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 319
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 320
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 320
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 321
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 322
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 322
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 323
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 324
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 324
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 325
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 326
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 326
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 327
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 328
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 328
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 329
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 330
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 330
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 331
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 332
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 332
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 333
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 334
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 334
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 335
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 336
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 336
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 337
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 338
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 338
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 339
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 340
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 340
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 341
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 342
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 342
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 343
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 344
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 344
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 345
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 346
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 346
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 347
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 348
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 348
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 349
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 350
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 350
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 351
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 352
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 352
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 353
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 354
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 354
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 355
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 356
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 356
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 357
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 358
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 358
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 359
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 360
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 360
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 361
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 362
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 362
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 363
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 364
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 364
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 365
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 366
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 366
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 367
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 368
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 368
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 369
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 370
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 370
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 371
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 372
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 372
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 373
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 374
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 374
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 375
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 376
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 376
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 377
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 378
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 378
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 379
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 380
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 380
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 381
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 382
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 382
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 383
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 384
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 384
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 385
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 386
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 386
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 387
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 388
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 388
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 389
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 390
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 390
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 391
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 392
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 392
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 393
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 394
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 394
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 395
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 396
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 396
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 397
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 398
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 398
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 399
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 400
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 400
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 401
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 402
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 402
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 403
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 404
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 404
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 405
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 406
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 406
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 407
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 408
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 408
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 409
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 410
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 410
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 411
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 412
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 412
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 413
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 414
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 414
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 415
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 416
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 416
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 417
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 418
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 418
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 419
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 420
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 420
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 421
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 422
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 422
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 423
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 424
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 424
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 425
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 426
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 426
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 427
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 428
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 428
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 429
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 430
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 430
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 431
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 432
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 432
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 433
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 434
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 434
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 435
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 436
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 436
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 437
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 438
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 438
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 439
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 440
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 440
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 441
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 442
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 442
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 443
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 444
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 444
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 445
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 446
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 446
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 447
    	end_while
    
    	monitor_event FactionTurnEnd FactionType slave
    		if I_TurnNumber = 448
    			console_command season winter
    		end_if
    		terminate_monitor
    	end_monitor
    
    	while I_TurnNumber = 448
    	end_while
    
    	console_command season winter
    
    	while I_TurnNumber = 449
    	end_while
    
    	;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
    	;; END MODIFIED AGING CODE
    	;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;


    If you're going to use it, I'd highly recommend turning off devastation in descr_campaign_db.xml:

    Code:
          <fort_devastation_modifier float="0"/>
          <army_devastation_modifier float="0"/>
    There's supposedly a more elegant way of doing this, but I don't remember what it is. If someone else does, please share.
    Under the patronage of TheFirstONeill
    Proud team member of
    THERA, A New Beginning


    "The trouble with fighting for human freedom is that one spends most of one's time defending scoundrels. For it is against scoundrels that oppressive laws are first aimed, and oppression must be stopped at the beginning if it is to be stopped at all." H. L. Mencken

    "Liberty is meaningless where the right to utter one’s thoughts and opinions has ceased to exist. That, of all rights, is the dread of tyrants. It is the right which they first of all strike down." Frederick Douglass

  12. #12

    Default Re: Question about aging....

    Whats the average number of turns a character is alive for? I have heard its about 60 turns.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •