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

closed trapdoor

Na Amigo

The crazy girl
Joined
Jun 5, 2017
Messages
254
Solutions
3
Reaction score
18
Location
Egypt
i've do this script but it's not working i want the player if he step at the movement id in the Circle didn't down
here is my script
and here
Code:
 <movevent event="StepIn" actionid="32465" script="trap.lua" />
here is trap.lua
Lua:
function onStepIn(cid, item, pos)
    if item.itemid == 461 then
        doTransformItem(item.uid, 462)
    end
end
function onStepOut(cid, item, pos)
    if item.itemid == 462 then
        doTransformItem(item.uid, 461)
  return true
    end
end
 
here some photo to explain
JCl2zJ.png
 
Back
Top