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 -
// Default Sail Settings
switch(selected_sails)
{
case 1: // Weathered, no emblems
tempstring = "sail_weathered_common.tga";
break;
case 2: // Pure White, no emblems
tempstring = "sail_purewhite_common.tga";
break;
case 3: // Pure White, with emblems
tempstring = "sail_purewhite_nation" + char.nation + ".tga";
break;
// default, with emblems
tempstring = "sail_whole_white_nation" + char.nation + ".tga";
}
// Additional Sail Settings
switch(sti(char.nation))
{
case SPAIN:
switch(selected_sails)
{
case 1: // Weathered, no emblems (historically accurate!)
if(GetCurrentPeriod() <= PERIOD_THE_SPANISH_MAIN)
tempstring = "sail_purewhite_nation" + char.nation + ".tga";
break;
case 2: // Pure White, no emblems (historically accurate!)
if(GetCurrentPeriod() <= PERIOD_THE_SPANISH_MAIN)
tempstring = "sail_purewhite_nation" + char.nation + ".tga";
break;
}
break;
case PIRATE:
switch(PIRATES_BLACK_SAILS)
{
case 1: // Plain Black
tempstring = "sail_whole_black_plain.tga";
break;
case 2: // Emblemed Black
if(!CheckAttribute(char,"pirateflag")) { char.pirateflag = makeint(rand(QTY_LOGOSAILS_WHOLE_BLACK)); }
tempstring = "sail_whole_black_pirate" + sti(char.pirateflag) + ".tga";
break;
}
break;
case PORTUGAL:
switch(selected_sails)
{
case 1: // Weathered, no emblems (historically accurate!)
if(GetCurrentPeriod() <= PERIOD_THE_SPANISH_MAIN)
tempstring = "sail_purewhite_nation" + char.nation + ".tga";
break;
case 2: // Pure White, no emblems (historically accurate!)
if(GetCurrentPeriod() <= PERIOD_THE_SPANISH_MAIN)
tempstring = "sail_purewhite_nation" + char.nation + ".tga";
break;
}
break;
case AMERICA:
switch(selected_sails)
{
case 3: // Pure White, with emblems (not available!)
tempstring = "sail_purewhite_common.tga";
break;
// default, with emblems (not available!)
tempstring = "sail_whole_white_plain.tga";
}
break;
case PERSONAL_NATION:
switch(selected_sails)
{
case 3: // Pure White, with emblems (not available!)
tempstring = "sail_purewhite_common.tga";
break;
// default, with emblems
tempstring = "sail_whole_white_nation10.tga";
}
break;
}
// Default Sail Settings
switch(selected_sails)
{
case 1: // Weathered, no emblems
if(GetCurrentPeriod() <= PERIOD_THE_SPANISH_MAIN)
tempstring = "sail_weathered_plain.tga";
else
tempstring = "sail_weathered_common.tga";
break;
case 2: // Pure White, no emblems
if(GetCurrentPeriod() <= PERIOD_THE_SPANISH_MAIN)
tempstring = "sail_purewhite_plain.tga";
else
tempstring = "sail_purewhite_common.tga";
break;
case 3: // Pure White, with emblems
tempstring = "sail_purewhite_nation" + char.nation + ".tga";
break;
// default, with emblems
tempstring = "sail_whole_white_nation" + char.nation + ".tga";
}
Nope, I just caught another myself for the US emblemed sails. This is the fixed code:But I think Armada already caught the one I did make...![]()
case AMERICA:
switch(selected_sails)
{
case 1: // Weathered, no emblems
break;
case 2: // Pure White, no emblems
break;
case 3: // Pure White, with emblems (not available!)
tempstring = "sail_purewhite_common.tga";
break;
// default, with emblems (not available!)
tempstring = "sail_whole_white_plain.tga";
}
break;