 |
|  |
 |
|
techumseh
|
 |
of the frozen North.
Apr 1999 time: 22:31
|
|
Will the the Colonists, Undead and Ancients start only on their own world?
My best advice is to have the maps a bit smaller, say in the range of 100X160 or even 60X100, and allow for limited growth on the other maps, but constrain it through the use of unhospitable terrain, including impassable. Even at 60X100, the total land area of the 4 maps is 240X400, as compared to the 122X268 single map of MGE Bitterfrost.
As I'm sure you already know, the maps must all have the same dimensions. It's best to plan ahead regarding the intermap transfer points (teleporters). It's possible to have sea to sea transfer points as well as land to land, but not sea to land.
Once you've finalized the 4 maps, insert this after the @TERRAIN3 field and before the @GOVERNMENTS field:
@SECONDARY_MAPS
6, 0,0, 0,0, 0,0,0,0, 0,0,0, 0,0,0, 0,0,0,
6, 0,0, 0,0, 0,0,0,0, 0,0,0, 0,0,0, 0,0,0,
6, 0,0, 0,0, 0,0,0,0, 0,0,0, 0,0,0, 0,0,0,
This tells the program to ask you for the extra maps when you start an Original game. It's preferable to begin using the Original game, because otherwise the scenario will always be either a Fantasy or a Sci-fi game, and they both have built-in quirks that can be maddening. At least with the original game, everything is still pretty much the same as FW/MGE - until you change it!
One more tip. Put copies of the terrain files for each of the maps in your Bitterfrost scenario folder, before you start, otherwise you won't be able to see the extra worlds. It once took me half an hour of hair-pulling frustration to figure out this simple error.
Last edited by techumseh on 27-10-2003 at 07:38
|
|
|  |
 |
|
Catfish
|
|
Wollongong, Australia
Aug 2000 time: 14:31
|
|
quote: Originally posted by techumseh
…constrain it through the use of unhospitable terrain, including impassable. |
Yes. You could even give units the impassable terrain override, with the exception of settlers (domain 1 units always ignore the impassable flag – very annoying). This was something I was considering for a real-world scenario I was working on which uses a 31 000+ tile gigamap. I wanted to restrict the AI from using strategically unimportant areas of the map.
quote: Originally posted by techumseh
This tells the program to ask you for the extra maps when you start an Original game. It's preferable to begin using the Original game, because otherwise the scenario will always be either a Fantasy or a Sci-fi game, and they both have built-in quirks that can be maddening. At least with the original game, everything is still pretty much the same as FW/MGE - until you change it!
One more tip. Put copies of the terrain files for each of the maps in your Bitterfrost scenario folder, before you start, otherwise you won't be able to see the extra worlds. It once took me half an hour of hair-pulling frustration to figure out this simple error. |
Tell me about it. I was working on a Gothic horror style (vampires, ghosts, werewolves, gypsies, etc) scenario a few years ago which had 2 maps. The first map was your standard earthly affair, while the other was a land of eternal darkness from which the vampire lords based their power. I think I did something stupid like start the scenario as a modified Extended game and then dump the contents in my scenario directory. Sometimes I could toggle between the 2 maps in the Minimap and sometimes not (some of those built-in quirks I guess). 
Anyway, I've been fiddling around with 24-bit Bitterfrost terrains for the 15-bit ToT game. Man, I forgot what a pain in the arse it was to create decent tileable terrains. I was also reminded of Civ2's ugly dithering effect between different terrain types.
I've posted a few samples below in png format (I hope it's not too large for some people). The screenshot is from a conversion of the MGE 2nd beta version, so it uses the older map - I don't want to reveal the final MGE map.
The dithering in Civ2 caused me to make some modifications to the terrains I was working on. I changed the cobble base for walls to grassed ramparts - the contrast with the other lighter terrains I was using looked pretty ordinary. I experimented with different dithering patterns and dithering base terrains. Eventually went for a conservative amount of dithering. Need to avoid really dark terrains that contrast strongly with light ones.
- I've done coniferous forests for Terrain2.bmp, but I'm not happy with them (see bottom-left corner, below), so I'll have another crack.
- also touched up the Zartan cities a bit (see below).
- tried one of the Dark Omen People.bmp sets for the humans (see below), as well as added the 24-bit undead set (with the glowing eyes).
BTW, you have 2 instances of the Wild Durn resource in the rules.txt file. One appears very ursine and the other looks like timber. You've also got 2 grassland references in the @Terrain list where it should be hearthland - only visible in the Civilopedia.
Comments Curt? Use, modify, ignore – do what you like. Do you want me to upload some bmps?
Attachment: bittertest.png
This has been downloaded 258 time(s).
|
|
|  |
 |
|  |
 |
|
techumseh
|
 |
of the frozen North.
Apr 1999 time: 22:31
|
|
Curt, before you launch the initial game which will become the scenario, you may wish to develop your Rules text in advance for 2 areas: the @MAP_TRANSPORT_RELATIONSHIPS and the @CIVILIZE/@LEADERS fields. This will save you having to do everything by means of a temporary events file.
Which units can move to or exist on which maps, and which civs can research or trade which techs cannot be changed after the game is first launched, except by events. Just changing the rules text on an existing game won't affect these 2 things.
This isn't as onerous as it sounds, and I normally do it all using a temporary events file, just 'cause I'm not usually well enough organized to plan it all out in advance. If you are, then it's probably easier to do most of it before starting the game. You just substitute your scenario's rules text for that of the original game, launch the game, save it, and transfer your save game and rules text to the scenario folder.
If you want to use the temporary events technique, have a look at Darth Veda's tip on the Cradle of Civilization site. Here is an example fixing the intermap abilities of an Ancient Warrior unit:
@IF
SCENARIOLOADED
@THEN
JustOnce
Transport
Unit=Ancient Warrior
State=On
mode=Use
Type=2
@ENDIF
This would allow this type of unit to use the 3rd transporter slot in the @MAP_TRANSPORT_RELATIONSHIPS field. This would contain 2 numbers representing the 2 maps the transporter connects.
The same technique can be used to give units the ability to move on their own between specific maps and for various settler/engineer units to build particular types of transporters.
Similarly, you can use this event to set which civs can use a specific tech or group of techs:
@IF
ScenarioLoaded
@THEN
EnableTechnology
Whom=Ancients
technology=03
value=2
@ENDIF
In this case, the Ancients would be unable to research or own tech 03 (Ast) because the value is 2. 1 means the civ can't research it but can get it by trading, and a value of 0 means there are no restrictions.
Using a temp events file is easy. Just load the scenario with it as your Events file and save. Load the save game and save as the scenario. The settings are now imbedded and you can now use your regular Events file when you start the scenario.
In this and all other mysteries of Test of Time, the Cradle of Civilization has the best information. http://coc.apolyton.net/guides/index.shtml It is our bible, and William Keenan is our prophet! His detailed work has revealed the secrets of ToT and made it, if not simple, at least clear.
|
|
|  |
 |
|
Catfish
|
|
Wollongong, Australia
Aug 2000 time: 14:31
|
|
quote: Originally posted by curtsibling
I didn't know you were working away on this. |
When you asked me about graphics in the other thread, I said I’d make you some 24-bit terrains. So I have.
Here (Edit: Deleted) are the bmp files. The zip contains cities.bmp, people.bmp, terrain1.bmp and terrain2.bmp. Note that these are works-in-progress, but you may be able to make use of some of it.
- I don’t much care for my coniferous forests in terrain2.bmp, so I might later try and fix them up.
- IMHO those darkened Nemo WWII ruins look unsightly, so I’ve replaced them with placeholders (Favoured Flight’s rubble).
Let me know when you’ve got this stuff, Curt, so I can delete the file.
BTW, your frosty Amazon in the title page looks even dodgier than the one that sparked that ridiculous bikini/sasquatch/sheep discussion in the Speculative Graphics thread. 
Last edited by Catfish on 29-10-2003 at 05:55
|
|
|  |
All times are GMT. The time now is 05:31. Apolyton Time is 00:31. |
top of page
|
| archivepost |
|
Forum Rules:
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
|
HTML code is ON
vB code is ON
Smilies are ON
[IMG] code is ON
|
|
|
|
|
|