J.Dre
Unity Games
There's gotta be someone who will need this, right? 
These are the levers that are in Farmine. They take you back and forth, if standing on the tile - just like Tibia.
data/actions/scripts/script.lua
Need a tracked real map? Check out mine!
These are the levers that are in Farmine. They take you back and forth, if standing on the tile - just like Tibia.
data/actions/scripts/script.lua
LUA:
local t = {
[5501] = {{x=32991, y=31539, z=1}, {x=32991, y=31539, z=4}, effect = true},
[5502] = {{x=32991, y=31539, z=4}, {x=32991, y=31539, z=1}, effect = true},
[5503] = {{x=32993, y=31547, z=4}, {x=33061, y=31527, z=10}, effect = false},
[5504] = {{x=33061, y=31527, z=10}, {x=32993, y=31547, z=4}, effect = false},
[5505] = {{x=33055, y=31527, z=10}, {x=33055, y=31527, z=10}, effect = false}
}
function onUse(cid, item, fromPosition, itemEx, toPosition)
local k = t[item.actionid]
local thing = getTopCreature(k[1]).uid
if(k and item.itemid == 1945) then
if(isPlayer(thing)) then
doTeleportThing(thing, k[2], false)
if(k.effect) then
doSendMagicEffect(k[2], CONST_ME_TELEPORT)
end
end
end
return doTransformItem(item.uid, item.itemid == 1945 and 1946 or 1945)
end