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

Fixed Maltese Knight Abbey: Can Only Loot Once

Pieter Boelen

Navigation Officer
Administrator
Storm Modder
Hearts of Oak Donator
After you loot your first dead Maltese Knight corpse, all "Fast Action" icons disappear and even the Enter menu won't activate them.
This severely limits the potential of this feature. :modding
 
PROGRAM\dialog.c in DialogCorpseExit add the lines between "PB":
Code:
  PostEvent(EVENT_DIALOG_EXIT, 1, "l", sti(char.index));
   // PB -->
   locCameraFollow(); //a simple virtual sailor
   ClearScreenShoter();//MAXIMUS: used for QuickSave
   LogsVisible(true); // KK
   CheckReloadAction(mainChr, "");
   if (CheckAttribute(mainChr, "BoxName.update")) DeleteAttribute(mainChr, "BoxName.update");
   if (CheckAttribute(mainChr, "activeItem.update")) DeleteAttribute(mainChr, "activeItem.update");
   CheckCharacterAction();
   // PB <--
   if(FightDisable == false) {LAi_LocationFightDisable(&Locations[FindLocation(mainChr.location)], false);}
Not sure which line does the trick, but it works now.
 
Back
Top