Well that didn't work - Ist rate ship of the line can only carry 3450 cwt empty - less than I had before - so stuck again.
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 -
case "fetch_quest_expired":
if (pchar.quest.fetch_quest_progress != "failed")
{
if(pchar.quest.fetch_quest_progress != "get")
{
pchar.quest.fetch_quest_progress = "expired";
SetGoodTradeType(GetTownFromID(pchar.quest.fetch_quest_town), sti(pchar.quest.fetch_quest.goodint) , TRADE_TYPE_NORMAL);
pchar.quest.fetch_quest_town = ""; // PB: Allow other Fetch Quests to be generated now // <----------- ADD THIS LINE ---------
}
}
break;
if (GetDifficulty()>2){ mult = 2;}
else{ mult = 1;}
[...]
min = (sti(pchar.rank)/3)*100*mult;
am = GetCharacterFreeSpace(PChar, GoodID);
Which "2" should I replace? Should it becomePROGRAM\QUEST\quests_common.c:Same file:Change that "2" to "1" and see if that helps for the cargo space.Code:if (GetDifficulty()>2){ mult = 2;} else{ mult = 1;} [...] min = (sti(pchar.rank)/3)*100*mult; am = GetCharacterFreeSpace(PChar, GoodID);
If not, also increase that "3" to a higher number. See if you can get it to the point where it is willing to work.
if (GetDifficulty()>2){ mult = 1;}
I've never had a problem with gunpowder. Mind you, I don't do trading.Just a note on game balancing - I think the gunpowder takes up too much space in your hold for the amount you need for the various ship types.
You are correct on all accounts. You can indeed do away with it altogether,Which "2" should I replace? Should it becomeIf so, that's making mult = 1 regardless of condition, so if I understand the code correctly, you could lose the condition entirely, replacing that line and the one below it with an unconditional "mult=1;"Code:if (GetDifficulty()>2){ mult = 1;}