Page 1 of 1
Changing fleet.
Posted: Thu Jun 30, 2016 3:32 pm
by Zobody
So I have been working on a mod, and I have been wanting to replace the rebel fleet ships with auto-ships. Just how exactly do I do that?
Re: Changing fleet.
Posted: Fri Jul 01, 2016 10:28 am
by gentasaurus
By rebel fleet ships, do you just mean changing all the enemy ships or changing the background fleet art?
Re: Changing fleet.
Posted: Fri Jul 01, 2016 10:44 am
by Zobody
I mean I want to change the actual enemy ships of rebels into my own custom ships. But only in the fleet. Though I might end up replacing all of rebel ships into custom ones.
Re: Changing fleet.
Posted: Fri Jul 01, 2016 12:55 pm
by gentasaurus
Ah, ok, I can help you with that. It's very easy.
If you check the game's autoBlueprints.xml file, you will see these lists:
Code: Select all
<!---------------------- SHIP LISTS --------------------->
<blueprintList name="SHPS_REBEL_AND_AUTO">
<name>AUTO_BASIC</name>
<name>AUTO_ASSAULT</name>
<name>REBEL_FAT</name>
<name>REBEL_SKINNY</name>
</blueprintList>
<blueprintList name="SHIPS_REBEL">
<name>REBEL_FAT</name>
<name>REBEL_SKINNY</name>
</blueprintList>
<blueprintList name="SHIPS_REBEL_ELITE">
<name>REBEL_SKINNY_ELITE</name>
</blueprintList>
These lists are called upon to spawn Rebel ships in the game's events. All you have to do is copy them over to YOUR autoBlueprints.xml.append file and then replace the ship names with your ship names.
DON'T CHANGE THE LIST NAMES. They need to stay the same, just replace the list items.
Keep in mind that this could make your mod incompatible with other mods, but seeing as it's an overhaul-type mod, that might not concern you.
If by "fleet" you mean the harder ships that show up if the rebels catch up to you, I believe that you only need the SHIPS_REBEL_ELITE list. You can obviously also add more ships to it depending on how many custom ships you have.
Let me know if that works.
Re: Changing fleet.
Posted: Fri Jul 01, 2016 3:02 pm
by Zobody
sigh
I am dumb for not noticing those lists. I was searching for such list all over .xml files, but somehow missed it while looking in autoBlueprints.xml. Thanks!
Re: Changing fleet.
Posted: Fri Jul 01, 2016 3:34 pm
by gentasaurus
No problem, glad your issue is resolved!
