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

Solved Mutiny on all my ships, non stop. What am I doing wrong?

$1,000,000 is the limit. Yeah I know, you can spend that much just filling up your holds.

I don't think it would affect morale, but I would get nervous about an officer getting his silly self killed while carrying that loot.
 
Captain's Leadership skill and Iron Will ability also influence morale. :yes

Money is checked only on the player and the two chests. Can't check everything.
But if you really are intent on hiding it, just toggle that InternalSettings.h value and be done with it altogether.

$1,000,000 is the limit. Yeah I know, you can spend that much just filling up your holds.
In addition to the estimated monthly salary. Otherwise it really would be evil.
 
Yup! Just toggle the INTERNALSETTINGS.H.

or

How can the minimum stock hold be changed before morale starts getting weird?
 
How can the minimum stock hold be changed before morale starts getting weird?
It is in PROGRAM\WorldMap\DailyCrewUpdate.c:
Code:
      // PB: Include ship's chests -->
       ref loc = &locations[FindLocation("Tutorial_Deck")];
       int money = sti(pchar.money);
       if(CheckAttribute(loc, "weaponslocker.money"))   money = money + sti(loc.weaponslocker.money);
       if(CheckAttribute(loc, "box1.money"))       money = money + sti(loc.box1.money);
       money = money - ( 1000000 + GetEstimatedOfficerPay() + GetEstimatedCrewPay() );
       // PB: Include ship's chests <--
But what's the point in increasing that value when all you want to do is disabling it altogether?
 
Back
Top