The Altera Centauri collection has been brought up to date by Darsnan. It comprises every decent scenario he's been able to find anywhere on the web, going back over 20 years.
25 themes/skins/styles are now available to members. Check the select drop-down at the bottom-left of each page.
Call To Power 2 Cradle 3+ mod in progress: https://apolyton.net/forum/other-games/call-to-power-2/ctp2-creation/9437883-making-cradle-3-fully-compatible-with-the-apolyton-edition
Yeah I did but it doesn't look like I can do anything with it until I have access to the SDK, since on the top it says:
"Changes must be reflected in CvEnums.h"
which of course is a C++ header file
And if you look into the UnitInfos xml it looks like the only way to specify what missions are available to units is by setting hardcoded boolean flags like bSabotage or bPillage. If I made a new mission how could I specify which units can use it?
I thought it would've been something like, for each unit:
So I'm trying to add poison capabilities for spies. I've finished my coding in the SDK but I'm having trouble with CIV4MissionInfos.xml. Any time I try to add the MissionInfoType element it causes the game to crash immediately after hitting Continue when the game begins(after the map is generated and Play Game is clicked). This happens with my modified DLL and also the original 1.61 dll. Here is my add to the MissionInfoType XML file:
Everything with a star next to it allows the game to run fine. CIV4MissionInfos.xml is the only one giving me a problem. I'm obviously missing something. Possibly some python changes? I've poked around but haven't found anything that seems related. Any ideas?
It'll be crashing because you have two missions that are exatly the same... Does it perform Sabotage, or does it perform Sabotage. One of them does poison, the other doesn't, but which?
Ceeforee v0.1 - The Unofficial Civ 4 Editor -= Something no Civ Modder should ever be without =- Last Updated: 27/03/2009
"Just because I'm paranoid doesn't mean there's no conspiracy"
Fixed it. Evidently it doesn't like having new missions inserted into the middle of the xml even if it's in the same position other places. I put it at the end and it worked like a charm. Figures that it would be something stupid and easy.
Comment