Simple Question: how do I remove the starting explorer? I want at planetfall to start with only a soldier, but I can't find the entry for this in the code.
It is controlled by HandicapInfos. You can use the following SQL I wrote for one of my own mods to make everyone start with a Soldier instead of a Explorer.
Code:
-- Start with Marines instead of Explorers
UPDATE HandicapInfos SET StartingExploreUnits = 0, StartingDefenseUnits = 1, AIStartingExploreUnits = 0;
-- AI always starts with at least one Marine
UPDATE HandicapInfos SET AIStartingDefenseUnits = 1 WHERE AIStartingDefenseUnits = 0;
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.