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

Solved ladder problem tfs 1.2

Scrappy Coco

Member
Joined
Dec 27, 2014
Messages
95
Reaction score
17
when I try to use a ladder down a floor .
tfs use 1.2.
for example.

use the ladder.
tr1x0b.png

The Result
t1Nsuj.png
 
Code:
local upFloorIds = {1386, 3678, 5543}
function onUse(player, item, fromPosition, target, toPosition, isHotkey)
    if isInArray(upFloorIds, item.itemid) then
        fromPosition:moveUpstairs()
    else
        fromPosition.z = fromPosition.z + 1
    end
    player:teleportTo(fromPosition, false)
    return true
end
 
in this line
Code:
local upFloorIds = {1386, 3678, 5543}
add others ids.
result:
Code:
local upFloorIds = {1386, 3678, 5543, 22845, 22846}

and change items.otb
 
Back
Top