• 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!

Fixed missing iteminfo holy cross

Levis

Find(Rum) = false;
Staff member
Administrator
Creative Support
Programmer
Storm Modder
While testing my new quest for the telescope I noticed the itemname for the holycross in the interface was not working. This item is in game for quite some time already so I wonder if it's just in my version or do others have this problem to?

I noticed for holycross1 haven't checked the others yet.
 
RESOURCE\INI\TEXTS\ENGLISH\ItemsDescribe.txt find:
Code:
// -- Scheffnow -- 2004-01-17 -- NoSaveModeMod -- start ---------------
itmname_holycross1   {a cupreos cross}
itmdescr_holycross1
{
A heavy cross ornated with gems and pearls.
}

itmname_holycross2   {a silvery cross}
itmdescr_holycross2
{
A silvery cross ornated with gems and pearls.
}

itmname_holycross3   {a golden cross}
itmdescr_holycross3
{
A golden cross ornated with gems and pearls.
}
// -- Scheffnow -- 2004-01-17 -- NoSaveModeMod -- end -----------------
Replace with:
Code:
// -- Scheffnow -- 2004-01-17 -- NoSaveModeMod -- start ---------------

itmname_holycross1   {a cupreos cross}
itmdescr_holycross1
{
A heavy cross ornated with gems and pearls.
}

itmname_holycross2   {a silvery cross}
itmdescr_holycross2
{
A silvery cross ornated with gems and pearls.
}

itmname_holycross3   {a golden cross}
itmdescr_holycross3
{
A golden cross ornated with gems and pearls.
}

// -- Scheffnow -- 2004-01-17 -- NoSaveModeMod -- end -----------------
Only difference is the extra white lines after the // lines.
For whatever reason, the game doesn't read any line that follows a comment. Adding a white line should solve it.
 
For whatever reason, the game doesn't read any line that follows a comment. Adding a white line should solve it.

Hmmm, I wonder how much of the rest of the code is like that? There are a LOT of comments scattered everywhere. This could have some serious consequences for AOP and COAS too. :unsure
 
It only applies to the RESOURCE\INI folder. The entire PROGRAM folder is OK for that.
 
Ah ok, well that at least narrows it down, thanks mate.
 
Probably aren't that many instances of it. You'd know because there'd be texts missing like in this case.
 
That does make more sense... sometimes I am a bit slow! :wp
 
Back
Top