• 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!

Manowar in shopw or encounter

Darkz00r

Landlubber
Hello. Can someone tell me what i need to do in order to encounter the MANOWAR or buy it from shipyards ? I know something about modify ship.init…

Vanilla game, not new horizons…
 
There's a line in each ship definition in "New Horizons":
Code:
refShip.CanBuy        = true;
That allows a ship to be sold in shipyards, subject to other factors - or blocks them from being sold if it is set to false. But there do not seem to be any 'refShip.CanBuy' lines in the vanilla version of "Ships_init.c".

However, there is this, in all of the ManoWar types:
Code:
refShip.CanEncounter    = false;
All ship types have 'refShip.CanEncounter' set to true at the top of the file. So any ship which has no 'refShip.CanEncounter' line can be encountered by default.

Therefore, to make the ManoWar types able to be found at sea, either delete that line from each of them, or change it to:
Code:
refShip.CanEncounter    = true;

And then make sure you are very good at boarding!
 
Since this is the stock game, I'm pretty sure you need to Start New Game for the changes to take effect.
 
Back
Top