So far I've modded in several factions both major and minor with only a few issues, typically me misspelling or forgetting to put something. However, I can't find the issue with my most recent two mods, the Confederacy of Independent Systems and the l'Cie Sanctum. Every time I try to use them as the player race or and AI race the game shuts down as the map tries to load. The problem seems to be the home system, because if I copy either race in the ingame editor and change the home system they work fine. But when I compare the StarDefs, PlanetDefs, and StarSystemDefs to my other mods and the originals btu I cant find the issue.
Here the Confederany:
StarDefs
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<StarList
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="../Schema/StarDefs.xsd">
<!--Fixted Sytem Stars-->
<Star>
<InternalName>MusafarStar</InternalName>
<DisplayName>Mustafar</DisplayName>
<ObjectType>Star</ObjectType>
<Type>YellowStar</Type>
<ArtDefine>SunArt</ArtDefine>
<SFXDefine>STAR_AMBIENT</SFXDefine>
</Star>
</StarList>
PlanetDefs
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<PlanetList
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="../Schema/PlanetDefs.xsd">
<Planet>
<InternalName>PlanetGeonosis</InternalName>
<DisplayName>GeonosisName</DisplayName>
<PlanetType>Habitable</PlanetType>
<PlanetClass>15</PlanetClass>
<ArtDefine>DrengiArt</ArtDefine>
</Planet>
</PlanetList>
StarSystemDefs
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<StarSystemList
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="../Schema/StarSystemDefs.xsd">
<!-- Created with the Gal Civ 3 Editor -->
<!-- StarSystemDefs.xml -->
<!-- System Group -->
<StarSystemGroup>
<InternalName>DroidStart</InternalName>
<StarSystem>
<InternalName>MustafarSystem</InternalName>
<DisplayName>MustafarSystem_Name</DisplayName>
<Description>MustafarSystem_Dec</Description>
<OrbitLane>
<LaneType>Star</LaneType>
<Body>
<BodyType>UnaryStar</BodyType>
<BodyDef>MustafarStar</BodyDef>
</Body>
</OrbitLane>
<OrbitLane>
<LaneType>NoRandom</LaneType>
</OrbitLane>
<OrbitLane>
<LaneType>HabitableZone</LaneType>
<Body>
<BodyType>Planet</BodyType>
<BodyDef>PlanetGeonosis</BodyDef>
<IsHomeworld>true</IsHomeworld>
<Position>5</Position>
</Body>
</OrbitLane>
<OrbitLane>
<LaneType>NoRandom</LaneType>
</OrbitLane>
</StarSystem>
</StarSystemGroup>
</StarSystemList>