Page 1 of 1

[Modding Question] sector_data.xml

Posted: Tue Sep 25, 2012 9:41 am
by Whale Cancer
So, I've got player ship coding, enemy ship coding, and event coding down.

Now I'm stuck on this blasted sector_data.xml

The first sector in the game is, of course, a civilian sector. I'm trying to change its display name to "Core Worlds"; this isn't that important, of course, but if I can't change that then my other changes to the sector won't work either.

So I made an xml.append file, copied the civilian sector, and made the relevant changes.

Code: Select all

   <nameList>
      <name>Core Worlds</name>
   </nameList>


But nothing happened! Anyone know what's going on here? Thanks.

Re: [Modding Question] sector_data.xml

Posted: Tue Sep 25, 2012 10:12 am
by chronial
No, you start in the sector with the name "STANDARD_SPACE"

Re: [Modding Question] sector_data.xml

Posted: Tue Sep 25, 2012 10:44 am
by Whale Cancer
Ahhh, the name of standard space is "federation space" which is not the name of the first sector (in-game).

I guess this means the name of the first sector is hardcorded? That's not a big deal, as long as I can edit the actual sector.

Thanks.