• 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 Disabling Storms

Actually, I already have it disabled at the world map by changing something... but I didn’t realise the cheat was there. The problem is when I go to sea and it seems to be too often that I’m hitting storms and it’s very annoying when I’m trying to configure stuff that I can’t even see!

So does the chance of rain increase the chance of storms?
 
Right, that’s probably what I was overlooking. I guess I’ll just set all these to zero then. :cheeky
Code:
   switch(month)
   {
     case 1:  rainrisk = 30; break;
     case 2:  rainrisk = 30; break;
     case 3:  rainrisk = 30; break;
     case 4:  rainrisk = 30; break;
     case 5:  rainrisk = 40; break; // beginning of the wet season
     case 6:  rainrisk = 60; break;
     case 7:  rainrisk = 70; break;
     case 8:  rainrisk = 90; break;
     case 9:  rainrisk =100; break; // twister maximal risk
     case 10: rainrisk =100; break; // twister maximal risk
     case 11: rainrisk = 80; break;
     case 12: rainrisk = 30; break; // dry season
   }
 
Back
Top