Page 1 of 1

boats.cfg Z levels

Posted: Wed Nov 07, 2007 11:50 am
by elenaran
I don't know whether to post this in Bugs or Suggestions, but I've noticed that it is impossible to set the hatch, tillerman and plank items in boats.cfg to anything but the default 0Z.

You can see here where I try to set them to +9Z:

Code: Select all

Boat
{
    ObjType 0x404C
    TillerMan                   0x3e4e 1 9 +9
    PortGangplankExtended       0x3ed5 -2 -1 +9
    PortGangplankRetracted      0x3eb1 -2 -1 +9
    StarboardGangplankExtended  0x3ed4 2 -1 +9
    StarboardGangplankRetracted 0x3eb2 2 -1 +9
    Hold                        0x3eae 0 -9 +9
}

But it doesn't work - it still just sets it at 0Z.

I think this would be a pretty easy fix.

Posted: Wed Nov 07, 2007 1:03 pm
by Pierce
There is no need to fix something :)
You simply have false informations on using the boats.cfg file.

It normally looks something like that:

Code: Select all

Boat
{
    ObjType 0x4000	
    Hold 0x3eae 0 -4
    TillerMan 0x3e4e 1 4
    PortGangplankRetracted 0x3eb1 -2 0
    PortGangplankExtended 0x3ed5 -2 0
    StarboardGangplankRetracted 0x3eb2 2 0
    StarboardGangplankExtended 0x3ed4 2 0
}
These are relative positions to the boat center.

Posted: Wed Nov 07, 2007 2:47 pm
by elenaran
Yes, if you leave out the Z like the default it will just be at 0Z. I don't want it to be at 0Z. I want it to be higher up.

Posted: Fri Nov 09, 2007 3:48 pm
by Pierce
The boat.cfg has no z offset. I was trying to say that by posting the example. So it's not a bug :) You can't simply enhance a z offset if the server doesn't read that one :D

Posted: Fri Nov 09, 2007 11:01 pm
by elenaran
Should I move it to Feature Suggestions then?