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

Cannot Confirm Gaining no Experience when fighting Clint Eastwood or Blackbeard

Maybe it is just alright then?
As far as I can tell from your screenshots and log files, it seems OK. The proper functions are being called and you do get some XP.
Maybe you would expect more, though?

One thing you could try....
Open PROGRAM\Loc_ai\LAi_fightparams.c and find:
Code:
   //Levis, add a cap for very high oponents
   if(dmg > 200.0)
   {
     dmg = 200.0;
     if(DEBUG_EXPERIENCE>0) trace("XP LOG: Max blade xp reached between " + GetMySimpleName(attack) + " and " + GetMySimpleName(enemy));
   }
And replace it with:
Code:
  //Levis, add a cap for very high oponents
/*   if(dmg > 200.0)
   {
     dmg = 200.0;
     if(DEBUG_EXPERIENCE>0) trace("XP LOG: Max blade xp reached between " + GetMySimpleName(attack) + " and " + GetMySimpleName(enemy));
   }*/
That disables that section, so you then may start to notice getting FAR more XP in that fight.
I'd be curious what kind of effect that would have for you.
If it doesn't seem excessive, then maybe we should do that in the main mod too.
 
Not the big difference seadogs2_0049.jpg
 

Attachments

  • compile.log
    82.2 KB · Views: 81
Not the big difference
So you did get more, but not CRAZY MUCH more.
In other words: It does help, but not excessively much.

Sounds like it is safe to get rid of that for the next modpack update as well. Then we'll see what happens.

In the meantime, it seems the bug you mentioned isn't really an issue. Right....?
 
Back
Top