• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Need help with some bugs in Yalahar

christiandb

Member
Joined
Feb 5, 2008
Messages
2,469
Reaction score
5
Location
010
Hey,

I just got my fully tracked Yalahar but I notice some bugs and I honestly haven't got the faintest idea about how to fix them.

This are the bugs:
http://www.speedy*****malware.localhost/411184474.html

and

http://www.speedy*****malware.localhost/573920841.html

Thanks in advance,

Chris

PS: REP++ for the solution ofcourse
PS2: I'm using TFS0.3b2
 
Last edited:
Should be fixed now... (I mean the pics not the bugs)

EDIT: I heard it was a bug in the source of TFS, not sure tho...
 
Last edited:
replace the stairs with other because in other it will not be working and about the up/down it's really fucked up and i just puted in other place the ramps .
 
For the indoor stair~
PHP:
function onStepIn(cid, item, pos)
     local newPos = { x = pos.x , y = pos.y - 1 , z = pos.z - 1 }
     doTeleportThing(cid, newPos)
end
For the regular stair~
PHP:
function onStepIn(cid, item, pos)
     local newPos = { x = pos.x , y = pos.y + 1 , z = pos.z - 1 }
     doTeleportThing(cid, newPos)
end
 
Back
Top