• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Bugged stairs

jeffaklumpen

Member
Joined
Jan 20, 2022
Messages
76
Solutions
2
Reaction score
15
GitHub
jeffaklumpen
There's an issue with eastern and southern stairs. When I climb down or up I get stuck inside the stairs. I'm using TFS 0.4 with 8.6.

stuck.png

Here's how it looks inside Remeres Map Editor:

editor.png

And here's the code in items.xml:

Lua:
    <item id="7925" name="stone stairs">
        <attribute key="floorchange" value="east"/>
    </item>
   
    <item id="7924" name="stone stairs">
        <attribute key="floorchange" value="south"/>
    </item>
 
Solution
Try changing
XML:
    <item id="7925" name="stone stairs">
        <attribute key="floorchange" value="east"/>
    </item>
 
    <item id="7924" name="stone stairs">
        <attribute key="floorchange" value="south"/>
    </item>
to
XML:
    <item id="7925" name="stone stairs">
        <attribute key="floorchange" value="eastEx"/>
    </item>
 
    <item id="7924" name="stone stairs">
        <attribute key="floorchange" value="southEx"/>
    </item>
Dont know which distro you use but you can check your movements (data/movements/movements.xml) and check which script file is used for your ids (7925, 7924). Thats where the logic for where the player ends up should be.
 
Dont know which distro you use but you can check your movements (data/movements/movements.xml) and check which script file is used for your ids (7925, 7924). Thats where the logic for where the player ends up should be.
Hmm I can't find anything :/ There's nothing for Stair ID's that are working as well
 
Try changing
XML:
    <item id="7925" name="stone stairs">
        <attribute key="floorchange" value="east"/>
    </item>
 
    <item id="7924" name="stone stairs">
        <attribute key="floorchange" value="south"/>
    </item>
to
XML:
    <item id="7925" name="stone stairs">
        <attribute key="floorchange" value="eastEx"/>
    </item>
 
    <item id="7924" name="stone stairs">
        <attribute key="floorchange" value="southEx"/>
    </item>
 
Solution
Back
Top