Here is the summary of what you must do.
You'll need a text editor (Notepad++).
Every map has 4 files associated with it.
The map itself (.SCMAP) - the geography itself
The save (_save) - holds all the markers
The scenario (_scenario) - control information for the map
The script (_script) - special code that runs on this map
Since Hazard will not edit any map with more than 8 starts on it - you need to fool it into thinking there are only eight. You'll need to edit the scenario file.
You'll notice a line in your scenario file that looks like this;
armies = {'ARMY_1', 'ARMY_2', 'ARMY_3', 'ARMY_4', 'ARMY_5', 'ARMY_6', 'ARMY_7', 'ARMY_8', 'ARMY_9', 'ARMY_10', 'ARMY_11'},
comment this line out by putting two dashes at the front of that line.
Secondly, you'll need to add a line that looks exactly the same BUT has only the first 8 armies, like this;
armies = {'ARMY_1', 'ARMY_2', 'ARMY_3', 'ARMY_4', 'ARMY_5', 'ARMY_6', 'ARMY_7', 'ARMY_8''},
This one should NOT have the two dashes at the start of the line.
When finished, what you should have will look much like this;
--armies = {'ARMY_1', 'ARMY_2', 'ARMY_3', 'ARMY_4', 'ARMY_5', 'ARMY_6', 'ARMY_7', 'ARMY_8', 'ARMY_9', 'ARMY_10', 'ARMY_11'},
armies = {'ARMY_1', 'ARMY_2', 'ARMY_3', 'ARMY_4', 'ARMY_5', 'ARMY_6', 'ARMY_7', 'ARMY_8'},
Save these changes.
Open the Hazard marker editor - Voila ! - You may now edit the markers. You'll notice that Hazard shows the additional armies with '?' instead of the usual start position marker. They can be moved around just like the others, they just 'look different'.
When editing is finished, simply remove the two dashes from the original armies list and put them in front of the shorter armies list. Your original number of armies is re-enabled for game play.Statistics: Posted by Sprouto — 13 Apr 2017, 22:54
]]>