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 -
Is there a way to improve relations with pirates without becoming a pirate? I am currently a high ranking British and Dutch officer with letter of Marque from the Dutch. Pirates are the only people I have poor relations with (because they are pirates and everyone hates them) so there is no way for me to get the Corsair refit. I used to be able to have work done by their shipyard and trade with the shop earlier in the game (when I delivered Shildards letter) but now they say they won't trade with someone of my reputation (currently Hero). Any help would be nice as I have an Aurora frigate with every upgrade with a turn rating is 92 (!?) and speed rating of 16. I am trying to figure out which upgrade gives it such high turning as I want to make either my HMS Surprise (Advanced Frigate, given to me by the British upon promotion) or the Mefisto (Heavy Frigate) my new flagship as they are much tougher ships, yet I really like the agility of the Aurora. I'm still trying to figure a lot of this game out since the mod just totally makes it a new game. I played the original back on the Xbox and it just doesn't compare. Thanks for any help in advanced and good luck on Hearts of Oak, I've dabbled in Unity and hope to get my skill to where I can really assist on the project. Cheers!No worries; at least we got that cleared up then.
I'm using Build 14 Beta 3.3 from back in January, I didn't realize there had been an updated release, will updating to 3.4 or 3.5 WIP affect my current save? I generally try to stay away from WIPs and Beta builds (Nvidia beta drivers have screwed me over enough) Which would you recommend updating to?Is there a way to improve relations with pirates without becoming a pirate? I am currently a high ranking British and Dutch officer with letter of Marque from the Dutch. Pirates are the only people I have poor relations with (because they are pirates and everyone hates them) so there is no way for me to get the Corsair refit. I used to be able to have work done by their shipyard and trade with the shop earlier in the game (when I delivered Shildards letter) but now they say they won't trade with someone of my reputation (currently Hero). Any help would be nice as I have an Aurora frigate with every upgrade with a turn rating is 92 (!?) and speed rating of 16. I am trying to figure out which upgrade gives it such high turning as I want to make either my HMS Surprise (Advanced Frigate, given to me by the British upon promotion) or the Mefisto (Heavy Frigate) my new flagship as they are much tougher ships, yet I really like the agility of the Aurora. I'm still trying to figure a lot of this game out since the mod just totally makes it a new game. I played the original back on the Xbox and it just doesn't compare. Thanks for any help in advanced and good luck on Hearts of Oak, I've dabbled in Unity and hope to get my skill to where I can really assist on the project. Cheers!
if(mNation == PIRATE)
if(mNation == PIRATE)
{
// Pirates don't do business with the navy
if(!CheckAttribute(char, "professionalnavy"))
{
// If you aren't hostile with the pirates, they'll always accept you
if(rel > REL_WAR) return true;
// If you have no loyalties to any one nation, they'll accept you too
if(!HaveAnyLetterOfMarque()) return true;
}
}
else
{
// If you are Hostile with their nation, but you are a Hero
if(rel <= REL_WAR && rep >= TRADEREP_ALL ) return true;
// If their nation is less than Hostile to you and you are Matey or better
if(rel > REL_WAR && rep >= TRADEREP_WAR ) return true;
// If their nation is better than Wary and you are Neutral or better
if(rel >= REL_AFTERATTACK && rep >= TRADEREP_NEUTRAL ) return true;
// If their nation is better than Neutral, you are Swindler or better and can intimidate them
if(rel >= REL_AMNESTY && rep >= TRADEREP_STRENGTH && strengthcomp) return true;
// You have a Letter of Marque with the nation and have been promoted at least once
if(GetRank(GetMainCharacter(), mNation) > 0 ) return true;
}
The code doesn't care about spaces or tabs so even if it looks weird, it should work.Got it working! Thanks! I had to enter in manually since copy+paste got the formatting wrong.
You already have Beta 3.4 .I'll see about upgrading to 3.4, not sure I am ready to start a new game yet so maybe once 3.5 is fully "released" I update to that and start a new game.
You can also decide to join Hearts of Oak and learn along the way.Thanks for the quick and helpful responses, glad to see the love for something still creates awesome communities like this and I really can't wait to improve my skills so I can help out with Hearts of Oak.
I thought I was running 3.3, at least that is what it said on the main menu of the game. But in regard to the code, I could only get it to work when I typed it in to match how it looked in your post, with just copying and replacing the existing code in that section it wouldn't work. Regardless I got it working which is the important part. Anyway, will definitely move up to 3.5 once I am king of the Caribbean . Hmm, Ill take to see about "learning along the way". I've worked very limited in Unity and tried making something for my Senior project. Needless to say just learning the interface and workflow of Unity was hard enough as there don't seem to be many tutorials (at least that I could find) on using Unity itself. Similarly I can't for the life of me make anything in Photoshop yet someone who knows how to use it can do pretty cool stuff in no time at all. So once I get some personal things tied up I'll see about joining the New Horizons development. After my generals I'm getting a BS in Computer Science with a minor in some graphical area I haven't decided yet. So I'd love to apply my skills and help out!The code doesn't care about spaces or tabs so even if it looks weird, it should work.
You already have Beta 3.4 .
You should definitely get Beta 3.5 when you are at a point where you're thinking of starting a new game.
More testing and more feedback would be much appreciated.
You can also decide to join Hearts of Oak and learn along the way.
We all started somewhere and when I first started playing around with the PotC code, I didn't know much of anything yet either.
Any and all help would be quite welcome!
Its from January 2015I thought I was running 3.3, at least that is what it said on the main menu of the game. But in regard to the code, I could only get it to work when I typed it in to match how it looked in your post, with just copying and replacing the existing code in that section it wouldn't work. Regardless I got it working which is the important part. Anyway, will definitely move up to 3.5 once I am king of the Caribbean . Hmm, Ill take to see about "learning along the way". I've worked very limited in Unity and tried making something for my Senior project. Needless to say just learning the interface and workflow of Unity was hard enough as there don't seem to be many tutorials (at least that I could find) on using Unity itself. Similarly I can't for the life of me make anything in Photoshop yet someone who knows how to use it can do pretty cool stuff in no time at all. So once I get some personal things tied up I'll see about joining the New Horizons development. After my generals I'm getting a BS in Computer Science with a minor in some graphical area I haven't decided yet. So I'd love to apply my skills and help out!
EDIT: Yup just checked I was running 3.3. Copied the game directory just to be safe and 3.4 install just finished. Cheers!
EDIT 2: Hmm, just finished installing 3.4 but it still says 3.3 in the game. Is it mislabeled?
Ah, okay thanks, just a typo then?That is 3.4.