• 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 Need Help GOF 1.2 Launch A Boat to Friendly Ship

hasja

Powder Monkey
Hello currently I used GOF 1.2.
There's a bug when you launch a boat to friendly ship, then the captain approach me and automatically talk to me.
But after that I cannot talk to him again. It happens everytime when I go to friendly ship.
I can only talk with the captain when he approach me.
Is there any fix?
Anyone encounter bug similiar to me?
 
I have that bug too, even if you back to your ship and return to talk with the friendly cap still unable to talk him
 
That's odd..
Because I have reinstalled 3 times and still encountered this bug.
I tried both GOF 1.2 and 2.0 still encountered this bug.
But when i tried base game (without mod) this bug didn't happen.
What's wrong with the script?
Where do I look if I want to edit this "friendly captain talk".
I want to turn off this automatically captain talk feature..
Coz I remember in base game, the captain didn't automatically talk.
 
Nevermind, I fixed this myself
So, anyone who encountered this bug and want to fix:

Go to => Program Files\Playlogic\Age of Pirates 2\Program\SEA_AI
Open => cabin.c

Find this line:
Code:
else
    {
      //JA make the captain a plain actor so they can find and talk to you
      // LAi_SetWarriorType(Chref);
      // LAi_warrior_DialogEnable(Chref, true);
      LAi_SetActorType(Chref);
      LAi_ActorDialog(Chref, pchar, "", 5.0, 0);

Change to this:
Code:
else
    {
        //JA make the captain a plain actor so they can find and talk to you
        LAi_SetWarriorType(Chref);
        LAi_warrior_DialogEnable(Chref, true);
        //LAi_SetActorType(Chref);
        //LAi_ActorDialog(Chref, pchar, "", 5.0, 0);

So the captain won't approach me anymore :)
You can change this to solved

:pirateraft
 
Back
Top