krowtrobot
Jul 20, 2007, 07:47 AM
I'm trying to design a scenario right now, but didn't know where I should look to change the start date and the time frame for each turn. So let's say I wanted a game to start in 1000 AD, and each turn to be a month, and there to be 200 turns, what do I need to motify to do this?
Thanks in advance!
strategyonly
Jul 20, 2007, 12:54 PM
I'm trying to design a scenario right now, but didn't know where I should look to change the start date and the time frame for each turn. So let's say I wanted a game to start in 1000 AD, and each turn to be a month, and there to be 200 turns, what do I need to motify to do this?
Thanks in advance!
Try this with the map you want by going into the map with notepad:
BeginGame
Era=ERA_ANCIENT
Speed=GAMESPEED_NORMAL
Calendar=CALENDAR_MONTHS
ForceControl=FORCECONTROL_SPEED
ForceControl=FORCECONTROL_VICTORIES
ForceControl=FORCECONTROL_MAX_TURNS
Victory=VICTORY_CONQUEST
GameTurn=0
MaxTurns=200
MaxCityElimination=0
TargetScore=0
StartYear=1000
Description=
ModPath=
EndGame
You can also change anything else here also.
Shiggs713
Jul 22, 2007, 07:44 PM
what are all the possible calendars that come with civ? Like is there CALENDAR_WEEKS or CALENDAR_DAYS ?
strategyonly
Jul 23, 2007, 12:52 AM
what are all the possible calendars that come with civ? Like is there CALENDAR_WEEKS or CALENDAR_DAYS ?
This is what i found ok.
<CalendarInfos>
<CalendarInfo>
<Type>CALENDAR_DEFAULT</Type>
<Description>TXT_KEY_CALENDAR_DEFAULT</Description>
</CalendarInfo>
<CalendarInfo>
<Type>CALENDAR_BI_YEARLY</Type>
<Description>TXT_KEY_CALENDAR_BI_YEARLY</Description>
</CalendarInfo>
<CalendarInfo>
<Type>CALENDAR_YEARS</Type>
<Description>TXT_KEY_CALENDAR_YEARS</Description>
</CalendarInfo>
<CalendarInfo>
<Type>CALENDAR_TURNS</Type>
<Description>TXT_KEY_CALENDAR_TURNS</Description>
</CalendarInfo>
<CalendarInfo>
<Type>CALENDAR_SEASONS</Type>
<Description>TXT_KEY_CALENDAR_SEASONS</Description>
</CalendarInfo>
<CalendarInfo>
<Type>CALENDAR_MONTHS</Type>
<Description>TXT_KEY_CALENDAR_MONTHS</Description>
</CalendarInfo>
<CalendarInfo>
<Type>CALENDAR_WEEKS</Type>
<Description>TXT_KEY_CALENDAR_WEEKS</Description>
</CalendarInfo>
</CalendarInfos>;)