• 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 Ironman with worldmap

SRACon17

Sailor Apprentice
Hey guys. i've always been playing with the ironman mode on, but lately i don't have much time to play so i'd rather do without the long hours of sailing without anything happening. i like all the features of the ironman mode but is there a way to keep the ironman mode activated and have the worldmap enabled? thanks :)
 
Do this:
1. Switch the game to Realistic Game Mode
2. Open PROGRAM\InternalSettings.h and find:
Code:
// Included in Iron Man Mode:
#define OPEN_SEA_MOD           0     // BOOL - 1=ON - Worldmap enlarged for realistic DirectSail
#define WORLDMAP_DISABLED         0     // BOOL - 1=ON - DirectSail enforced
#define SAILTO_DISABLED           0     // BOOL - 1=ON - Cannot Sail-To any ships at sea
#define ONSEA_DATA_DISABLED         0     // BOOL - 1=ON - Spyglass and compass additional information disabled, cannot move camera to non-player ships
#define REALISTIC_ABILITIES         0     // BOOL - 1=ON - Rush, Immediate Reload and Instant Boarding disabled
#define ITEM_REALISM           0     // BOOL - 1=ON - Items like rubies, diamonds and inca statuettes give no skill bonuses (books and items like compass etc. still do)
Replace with:
Code:
// Included in Iron Man Mode:
#define OPEN_SEA_MOD           1     // BOOL - 1=ON - Worldmap enlarged for realistic DirectSail
#define WORLDMAP_DISABLED         0     // BOOL - 1=ON - DirectSail enforced
#define SAILTO_DISABLED           1     // BOOL - 1=ON - Cannot Sail-To any ships at sea
#define ONSEA_DATA_DISABLED         1     // BOOL - 1=ON - Spyglass and compass additional information disabled, cannot move camera to non-player ships
#define REALISTIC_ABILITIES         1     // BOOL - 1=ON - Rush, Immediate Reload and Instant Boarding disabled
#define ITEM_REALISM           1     // BOOL - 1=ON - Items like rubies, diamonds and inca statuettes give no skill bonuses (books and items like compass etc. still do)
That should do it. :doff
 
alright, thanks :) i actually tried experimenting with that file before, but i don't seem to know what i was doing :))
 
Last edited:
Back
Top