Attachments
Last edited:
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!
Quick links for Beyond New Horizons
- Download latest version
- Wiki
- FAQ
- Report bugs here
- Bug Tracker on Github
Quick links for Maelstrom
- Download the latest version of Maelstrom
- Download the latest version of ERAS II
- Download the latest version of New Horizons on Maelstrom
Quick links for PotC: New Horizons
- Download latest version
- Wiki
- FAQ
- Report bugs here
Thanks to YOUR votes, GOG.com now sells:
- Sea Dogs
- Sea Dogs: Caribbean Tales
- Sea Dogs: City of Abandoned Ships
Vote now to add Pirates of the Caribbean to the list!
Quick links for AoP2: Gentlemen of Fortune 2
- Downloads and info
- ModDB Profile
- Forums Archive
A Pirate Podcast with Interviews
Music, Comedy and all things Pirate!
- Episode Guide - About - Subscribe -
- Twitter - Facebook - iTunes - Android -
- Youtube - Fill the Coffers -
This was a real bug and it is fixed now,yes?The companion Frigate turns to a Lateen Caravel in the ransack screen, again.
I haven't fixed any bugs these past few days, no.This was a real bug and it is fixed now,yes?
ClearCharacter erases Enc_CabinCaptain_0()
...
ClearCharacter called from FindFreeRandomOfficer
ClearCharacter erases Enc_Officer_0(Joshamee Gibbs)
ClearCharacter called from FindFreeRandomOfficer
ClearCharacter erases Enc_Officer_0()
...
ClearCharacter called from FindFreeCabinCaptain
ClearCharacter erases Enc_Officer_8(Claeyse Rijkaard)
...
LAi_boarding.c -> twin character <Enc_Officer_8> was successfully deleted
...
WARNING!!! Character id = Enc_Officer_8 hav`t ship.
XP ERROR: Character was missing rank during post init
index = 2001
id =
location = none
locator =
group =
experience = 1
perks =
freepoints = 1
skill =
freeskill = 0
quest =
officertype = civilian
officerprice = 0
rank = 1
money = 33
loyality = 10
alignment = bad
homelocation = none
group =
locator =
homestate = citizen
name =
lastname =
Global warming, matey.I berth the companion ship at Soa Jorge shipyard, then regret and relaunched it again, coming out of the
door : water all over town, my ship standing at the church door.
There is indeed code in place to erase characters at certain points during the game, to prevent them from interfering later.Looks to me like the mutineer is being deleted.
Global warming, matey.
[PROGRAM\Characters\characters.c]
bool ClearCharacter(ref character)
{
if (bAbordageStarted || LAi_Boarding_Process || LAi_IsBoardingProcess()) return false;
int index = character.index;
string id = character.id;
string entity = "";
if (CheckAttribute(character, "model.entity")) entity = character.model.entity;
DeleteClass(character);
DeleteAttribute(character, "");
character.index = index;
character.id = id;
if (entity != "") character.model.entity = entity;
character.location = "none";
character.location.locator = "";
character.location.group = "";
character.chr_ai.group = LAI_DEFAULT_GROUP;
return true;
}
Nice work! I have to ask you which file to edit, try to find it but havent yet.There could be a more direct fix, but this certainly works.