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

Stair Bugs 5% Of paypal/doapay

freak15

Professional Hoster
Joined
Dec 31, 2008
Messages
356
Reaction score
2
Location
Sweden
Hello Guys i have work on a server a while its
theforgottenserver 0.3.4 crying demson with real tibia map
Blazarn - Latest News
Thats my website u can check if u help me with the bug on stairs u will get 5% of my doapay or paypal money on 1 month.
So here coems the problem..
When I Logg Ingame All Works version 8.42
i go down to rats/rotworms in town i try go upp on the ladder i get 1 level down instead ? wierd if u know whats cousing this Please tell me and if u worried to get scammed with the money we can insert ur paypal account to the website so the money comes to urs account.

Solve This Please.
 
Last edited:
Well first of all, find out the ID of the ladder in question, then go to actions.xml and look for the ID, then open the file which is associated with the ID (ladder.lua or whatever) and check the code to see why it does what it does.
 
Is this the id of the stair ? 428
<item id="428" article="a" name="ladder">
<attribute key="floorchange" value="down"/>
</item>



When i serch in actions.xml its no succh id 428
 
I don't know since I'm not you, I don't know which ladder is broken and which is not.

Look at the item ingame, and if you have admin privileges then it will say the ID of that item.
 
Now i anderstand.... check this ;)
local upFloorIds = {1386, 3678, 5543}
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
 
You didnt update your server correctly. The solution of this problem is simple. Replace the yourserver/data/lib folder to newest version(version of the tfs you are using).
 
Back
Top