• New Horizons on Maelstrom
    Maelstrom New Horizons


    Visit our website www.piratehorizons.com to quickly find download links for the newest versions of our New Horizons mods Beyond New Horizons and Maelstrom New Horizons!

Cursed/Ghost Ships stats

Hello, these ships look totally amazing. however i find the stats to be overkill.
is there a patch that makes their stats not so insane?. or instructions on how to edit their stats?
i would personally make the hull and speeds at 2x of their non cursed versions at most.
i just would like to play as them but not have them be game breaking, because they are amazing looking!
 
Ahoy there @Lunar-Starbreaker,
That should be easy enough. Open PROGRAM\Ships\ships_init.c with Notepad, edit the stats of the relevant ships and save the file.
Then you can apply the new stats in your savegame by press F11.

If you already have the ships in your fleet, you can then use this code through console to update your own fleet too:
Code:
        for (i = 0; i < COMPANION_MAX; i++) {
                limit = GetCompanionIndex(PChar, i);
                if (limit < 0) continue;
                ch = GetCharacter(limit);
                GiveShip2Character(ch,ch.ship.type,ch.ship.name,-1,ch.ship.stats.nation,true,true);
            }
See here point #4 for how to do that:
Tutorial - Modding Tips & Tricks
 
Back
Top