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

Anyone know to fix it? / Alguem sabe arrumar?

rukifohzin

New Member
Joined
Oct 10, 2009
Messages
8
Reaction score
0
In English

I'm having this problem in ot, but no one complained. I wanted to know what and how to fix this for not to cause bug later. I use TFS 0.3.5
__________________________________________________________________
In Portuguese / Em Português

Estou com esse problema no ot, mas ninguem reclamou. Queria saber o que e isto e como arrumar para não causar bug mas tarde. Uso TFS 0.3.5
__________________________________________________________________
87754520.png
 
This error incules some missing tiles like if u have lever that remove tile for example x = 1 y = 1 z = 1 and u used this lever while the tile is not exist , player will not get any error but it will be shown in the server console, dont worry it will not cuz bugs later , but to tell u , this wrror mean the script is not working perfect, like there missing stone on tile or something

Hopefully u got my point
 
Show me your script and I might help.

This script that you asked, for the error in the image above
help me xD

_____________________________________________
data\movements\scripts\PitsOfInferno
MagicWallEntrance
_____________________________________________

function onStepIn(cid, item, pos)
local position = {x=412, y=1414, z=9}
local position2 = {x=398, y=1380, z=9}

if (getPlayerItemCount(cid, 1970) < 1) then
doTeleportThing(cid, position)
doSendMagicEffect(position,10)
else

doTeleportThing(cid, position2)
doSendMagicEffect(position2,10)
end
end
 
Back
Top