• New Horizons on Maelstrom
    Maelstrom New Horizons


    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!

B11 question

BenvZijl

Landlubber
great mod, but i want to change my stating ship, but every time i do this the normal way(the way when i got a clean install) i get a black screen when the game loads and thats it.(nothing happens further)


i changed this line inCharacters_init.c
ch.Ship.Type = START_SHIP(); // PS

to
ch.Ship.Type = SHIP_BLACK_PEARL(); // PS


anyone know what i do wrong?
and could you guys give me the correct line if i did something wrong

thnx

Ben van Zijl
 
<!--QuoteBegin-BenvZijl+--><div class='quotetop'>QUOTE(BenvZijl)</div><div class='quotemain'><!--QuoteEBegin-->great mod, but i want to change my stating ship, but every time i do this the normal way(the way when i got a clean install) i get a black screen when the game loads and thats it.(nothing happens further)


i changed this line inCharacters_init.c
ch.Ship.Type = START_SHIP(); // PS

to
ch.Ship.Type = SHIP_BLACK_PEARL(); // PS


anyone know what i do wrong?
and could you guys give me the correct line if i did something wrong

thnx

Ben van Zijl<!--QuoteEnd--></div><!--QuoteEEnd-->

If you're using build 11, you use BuildSettings.h to change your starting ship, not Characters_init.c. Go into BuildSettings.h (in the PROGRAM folder), and look for these lines:


//MAINCH START PARAMS
#define START_RANK 1
#define START_MONEY 1000
<b>string START_SHIP() {return "Lugger1_" + ENGLAND; } //omit the nation and the _ if ship has no nation
//check ships_init.c for all ships' IDs.</b>


The <b>bold</b> text is what we're focusing on. If you want the Black Pearl, replace it with this instead:


<b>string START_SHIP() {return "BlackPearl"; }</b>


That should do the trick, but I'm still pretty much a novice at this too, so someone else might come along and say I've got it all wrong. If they do, believe them. <img src="http://www.piratesahoy.com/forum/style_emoticons/<#EMO_DIR#>/pirate2.gif" style="vertical-align:middle" emoid=":p:" border="0" alt="pirate2.gif" />
 
thanks laddie

i'm new into POTC modding but you can expect some new things from me as soon as i know how to make new ship models etc
 
<img src="http://www.piratesahoy.com/forum/style_emoticons/<#EMO_DIR#>/hi.gif" style="vertical-align:middle" emoid=":gday" border="0" alt="hi.gif" /> <b>BenvZijl, </b>and welcome aboard! Pull up a keg, have a seat, and have a couple on us! <img src="http://www.piratesahoy.com/forum/style_emoticons/<#EMO_DIR#>/par-ty.gif" style="vertical-align:middle" emoid=":cheers" border="0" alt="par-ty.gif" />

<img src="http://www.piratesahoy.com/forum/style_emoticons/<#EMO_DIR#>/keith.gif" style="vertical-align:middle" emoid=":keith" border="0" alt="keith.gif" /> We're glad you found your way into these fair waters, and hope you visit often! <img src="http://www.piratesahoy.com/forum/style_emoticons/<#EMO_DIR#>/me.gif" style="vertical-align:middle" emoid=":onya" border="0" alt="me.gif" />


<!--QuoteBegin-BenvZijl+--><div class='quotetop'>QUOTE(BenvZijl)</div><div class='quotemain'><!--QuoteEBegin-->i'm new into POTC modding but you can expect some new things from me as soon as i know how to make new ship models etc<!--QuoteEnd--></div><!--QuoteEEnd-->Wonderful!!! We always have room for ANY new friends, and if you want to mod there are a lot of fine pirates here who will help you along, so you should have a lot of fun with us. <img src="http://www.piratesahoy.com/forum/style_emoticons/<#EMO_DIR#>/yes.gif" style="vertical-align:middle" emoid=":yes" border="0" alt="yes.gif" />

Here is a good place to start, look at the PotC Modding WIKI:

<a href="http://forum.piratesahoy.net/ftopic1561.php" target="_blank">http://forum.piratesahoy.net/ftopic1561.php</a> Tutorials are here, and a bunch of other info...

<a href="http://forum.piratesahoy.net/ftopic53.php" target="_blank">http://forum.piratesahoy.net/ftopic53.php</a> This is a "toolbox" list...

And remember, if you have any questions, just ask! <img src="http://www.piratesahoy.com/forum/style_emoticons/<#EMO_DIR#>/icon_mrgreen1.gif" style="vertical-align:middle" emoid=":cheeky" border="0" alt="icon_mrgreen1.gif" />

Again, welcome aboard! <img src="http://www.piratesahoy.com/forum/style_emoticons/<#EMO_DIR#>/hi.gif" style="vertical-align:middle" emoid=":gday" border="0" alt="hi.gif" />
 
Back
Top