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

Recent content by Grey Roger

  1. Grey Roger

    Need Help Updating the Russian Translation

    This is odd. Locator "goto2" is facing away so I tried putting the captain onto another starting locator which faces towards you, and he still does the same. He behaves properly if I put him on a locator right in front of the door. In the end I created a new locator to put him a little...
  2. Grey Roger

    Need Help Updating the Russian Translation

    There's nothing in either of those to explain the captain's odd behaviour. "system.log" has nothing about that part of the story at all, and "compile.log" shows the quest cases running without any apparent problems - I thought perhaps there might be something about the captain being unable to...
  3. Grey Roger

    Need Help Updating the Russian Translation

    Do that again - enter the cabin, talk, fight. Then upload "compile.log". Something odd is going on because he's supposed to attack you.
  4. Grey Roger

    Need Help Updating the Russian Translation

    He ought to talk to you as soon as you enter after you've changed it to 'LAi_ActorDialogNow'! Change the 2.0 to 0.2. If that doesn't make him talk right away, upload "compile.log".
  5. Grey Roger

    Need Help Updating the Russian Translation

    In "quests_reaction.c", case "cabin_duel", find this line:LAi_ActorDialog(characterFromID("Spanish_Captain3"), PChar, "cabin_duel2", 5.0, 5.0);See what happens if you change it to:LAi_ActorDialogNow(characterFromID("Spanish_Captain3"), PChar, "cabin_duel2", 2.0);
  6. Grey Roger

    Need Help Updating the Russian Translation

    1: In "quests_reaction.c", add this:Locations[FindLocation("Slave_mine")].locators_radius.goto.goto1 = 5.5;{/code]... into case "left_Havana". You'll need to start again, or at least load a save from before you left town after escaping from prison. Or you can walk forward to the camp...
  7. Grey Roger

    Tales of a Sea Hawk - Cartagena Port missing - cannot enter town

    There is no map of Cartagena. When you exit worldmap, you are placed some distance from the port, regardless of how close you are to the coast on the worldmap. If it's foggy, you could try returning to worldmap, wait a moment, then exit again and hope for better visibility.
  8. Grey Roger

    Gambling Den / Casino?

    If you mean the gambling house in Cartagena, that is indeed what happens. The player uses the same dialog file as the characters in taverns who sometimes offer to drink and sometimes offer to gamble. The code in that file checks if you're in the gambling house and if so, always goes to gamble...
  9. Grey Roger

    Need Help Updating the Russian Translation

    Line 618 is where various components are put together, but the problem is earlier. For example, line 562:b = " " + XI_ConvertString("a") + " " + TranslateString("",tempitem.name);In Russian "common.ini", "a" is translated as "". Those double spaces are where English has "a" and Russian has ""...
  10. Grey Roger

    Need Help Updating the Russian Translation

    1: Move this line:int tmpLangFileID = LanguageOpenFile("interface_strings.txt");... to above this:if(makeint(Pchar.reputation) >= 80)Move this line:LanguageCloseFile(tmpLangFileID);... to directly above this:AddDialogExitQuest("LandEnc_Char1_Leaves");That should put both of them outside the...
  11. Grey Roger

    Sword of Triton speed burst

    Put this into your "PROGRAM" folder. In any game, press F12 to activate it. That should produce an on-screen message "Executed Console". If not, upload "error.log". If the message does appear, upload "compile.log". Also check your inventory. This "console.c" should give you a Sword of...
  12. Grey Roger

    B14v22 troubles

    There is a file "fixes.txt" attached to the first post of this thread, which is also where you find the links to the installer, contents archive and update file for Build 14: Mod Release - Build 14 Gamma Version [Last update: 12th January 2024] That "fixes.txt" lists all the changes in the update.
  13. Grey Roger

    Need Help Updating the Russian Translation

    In "PROGRAM\globals.c", below line 189, add:#define ILANG_PTBR 7There are other changes needed in other files because this is part of the code to introduce a Portuguese translation. Adding that definition won't be enough for Portuguese; the next update will include all the files plus what I...
  14. Grey Roger

    Need Help Updating the Russian Translation

    Got it - thanks! Also: Found it! And you can take the 'TranslateString' lines out of case "Captured_and_sentence2". The problem is in "PROGRAM\MAXIMUS_Functions.c", function 'RestoreCharacter'. It translates the character's "old.name", "old.lastname", and a couple of other "old" names if...
  15. Grey Roger

    Need Help Updating the Russian Translation

    The crewmember is supposed to be watching Turner to make sure he doesn't escape. But if you want Turner to look a little more active without wandering around, try removing these:LAi_SetActorType(CharacterFromID("Will Turner")); LAi_ActorTurnToCharacter(CharacterFromID("Will Turner")...
Back
Top