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 -
salut,quelqun sait comment on met des voiles noir sur son navires?Good guide
ok i m looking old post sorry.
someone have sail blackpearl please?
i search this sail.
help me please
#define FOOD_BY_CREW 25.0
#define FOOD_BY_SLAVES 20.0
#define FOOD_BY_PASSENGERS 30.0
Goods[GOOD_BALLS].Name = "Balls";
Goods[GOOD_BALLS].DamageHull = 8.0;
Goods[GOOD_BALLS].DamageRig = 0.2;
Goods[GOOD_BALLS].DamageCrew = 0.2;
Goods[GOOD_GRAPES].Name = "Grapes";
Goods[GOOD_GRAPES].DamageHull = 0.5;
Goods[GOOD_GRAPES].DamageRig = 0.2;
Goods[GOOD_GRAPES].DamageCrew = 1.0;
Goods[GOOD_KNIPPELS].Name = "Knippels";
Goods[GOOD_KNIPPELS].DamageHull = 1.0;
Goods[GOOD_KNIPPELS].DamageRig = 1.0;
Goods[GOOD_KNIPPELS].DamageCrew = 0.8;
Goods[GOOD_BOMBS].Name = "Bombs";
Goods[GOOD_BOMBS].DamageHull = 5.0;
Goods[GOOD_BOMBS].DamageRig = 0.2;
Goods[GOOD_BOMBS].DamageCrew = 0.5;
**Starting Ship**
Open the [ RPGUtilite.c ] text file located in C:\Program Files\Playlogic\Age of Pirates 2\Program\characters. From here use ctrl+f to search for the code line [ pchar.Ship.Type = GenerateShip ]. Here you will see the oirginal code line is [ pchar.Ship.Type = GenerateShip((SHIP_LUGGER + rand(2) - 1), 0); ]. Here simply replace [ LUGGER ] with the desired ship name (note that all ships are listed in the [ Ships_init.c ] text file located in C:\Program Files\Playlogic\Age of Pirates 2\Program\Ships.). But unlike in Age of Pirates 1 there is this little addon to the code [ + rand(2) - 1) ], This was added to randomly give you a ship within 3 slots of your starting ship... its stupid I know. So you can erase it so you know what ship you get everytime. When your done you code line will look like this [ pchar.Ship.Type = GenerateShip(SHIP_SHIPNAME, 0); ].