rf900
Warlord
- Joined
- Jan 31, 2006
- Messages
- 194
Just a merely information post as I know lot of people asked for this. I have been waiting for this option to be able to recreate a mod I did for Civ4, named Capitals&Outposts, that required forcing the player to raze cities.
With the released SDK I think we can now achieve this. Haven't tried yet but found this code that will probably allow it:
In file: CvPlayer.cpp
Under CanRaze function
With the released SDK I think we can now achieve this. Haven't tried yet but found this code that will probably allow it:
In file: CvPlayer.cpp
Under CanRaze function
Code:
if(!bIgnoreCapitals && pCity->IsEverCapital() && bOriginalCapital)
{
return false;
}