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

Lua Ladder Bug tfs 0.3.4

legolas23

New Member
Joined
Jan 8, 2009
Messages
537
Reaction score
3
I have ladder bug on tfs 0.3.4. When I click on ladder it gets me one floor down(-1) instead of one floor up(+1).
Please help me
 
Last edited:
Hi, Try this out... go to
data/actions/scripts
and search teleport.lua
Change the Script with this one
PHP:
local upFloorIds = {1386, 3678, 5543, 8599}
function onUse(cid, item, fromPosition, itemEx, toPosition)
	if(isInArray(upFloorIds, item.itemid) == TRUE) then
		fromPosition.y = fromPosition.y + 1
		fromPosition.z = fromPosition.z - 1
	else
		fromPosition.z = fromPosition.z + 1
	end

	doTeleportThing(cid, fromPosition, FALSE)
	return TRUE
end
 
Back
Top