tdevine Posted December 22, 2013 Share Posted December 22, 2013 (edited) Just wanted to make it so I get more male than female, and more of certain types of country soldiers. Is their a file that will make it easy. I am working with Enemy Within... thanks I want to do this so as you recruit new soldiers, these changes will take effect. EXAMPLE... 75% come as male and 25% come as female, approximately. Edited December 22, 2013 by tdevine Link to comment Share on other sites More sharing options...
Drakous79 Posted December 22, 2013 Share Posted December 22, 2013 Try XCOM ToolBoks by bokauk. There's Recruitment & Promotion tab, where you can adjust male:female gender ratio. Link to comment Share on other sites More sharing options...
SupremeShogun Posted December 24, 2013 Share Posted December 24, 2013 I am not getting latest and greatest toolboks to work in that regard. can you point me to what I need to change ? Link to comment Share on other sites More sharing options...
Drakous79 Posted December 24, 2013 Share Posted December 24, 2013 (edited) XComGame.upk, class XGCharacterGenerator, function CreateTSoldier ... Gender 1 is male, 2 is female. Enemy Within Patch 1: else { // 50% female : 50% male kSoldier.kAppearance.iGender = ((Rand(2) == 0) ? 2 : 1); } Enemy Unknown Patch 6: else { // 33% female : 67% male kSoldier.kAppearance.iGender = ((Rand(3) == 0) ? 2 : 1); }25% female : 75% male should be Rand(4). Edited December 24, 2013 by Drakous79 Link to comment Share on other sites More sharing options...
Recommended Posts