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

Secrets of Tibia

Sizaro

Advanced OT User
Joined
Aug 20, 2007
Messages
5,151
Solutions
5
Reaction score
210
Location
Sweden
GitHub
coldensjo
Do you know any secrets that is not revealed on the wikia?

Desert Dungeon eastern side, close to the house with fire devils a hidden switch behind the rubble of rocks.
CvVZy7p.png


Desert Dungeon western side, close to the spike sword quest with a ton of fire devils. A lever.
Ext509c.png


Desert Dungeon western side, bottom part a Banshee with a lever and a teleporter.
Gc4AhBN.png
 
Last edited:
This has been known for years, you can even open the coffin room in the dungeon by standing on switch tile in the library.
 
#1 Lever at 32698,32120,9 opens up a bridge at 32688,32084,9
#2 Lever at 32602,32094,11 removes bars at 32568,32078,12 spike sword quest but not the magic walls...
#3 Lever at 32617,32102,12 does nothing and teleport leads nowhere...
Post automatically merged:

This has been known for years, you can even open the coffin room in the dungeon by standing on switch tile in the library.
Switch tile on 32632,32091,10 removes wall at 32692,32102,10
:D
 
Last edited:
do you know what this lever does
she stays in demona labyrinth {x = 32488, y = 31628, z = 13}
Screenshot_1.png
 
As a matter of fact I do know exactly what that lever does! :Dsizara_dx_wJkeBfbBvN.gif

Here is the code if you want it, not beutiful but it works :)
Lua:
function onUse(player, item, fromPosition, target, toPosition)
    if item:getId() == 1945 then
        item:remove()
        Game.createItem(1491, 1, {x = 32486, y = 31626, z = 13})
        Game.createItem(1491, 1, {x = 32487, y = 31626, z = 13})
        Game.createItem(1491, 1, {x = 32488, y = 31626, z = 13})

        Game.createItem(1491, 1, {x = 32486, y = 31627, z = 13})
        Game.createItem(1491, 1, {x = 32487, y = 31627, z = 13})
        
        Game.createItem(1491, 1, {x = 32486, y = 31628, z = 13})
        Game.createItem(1491, 1, {x = 32487, y = 31628, z = 13})
        
        Game.createItem(1491, 1, {x = 32486, y = 31629, z = 13})
        Game.createItem(1491, 1, {x = 32487, y = 31629, z = 13})
        Game.createItem(1491, 1, {x = 32488, y = 31629, z = 13})

        Game.createItem(1491, 1, {x = 32486, y = 31630, z = 13})
        Game.createItem(1491, 1, {x = 32487, y = 31630, z = 13})
        Game.createItem(1491, 1, {x = 32488, y = 31630, z = 13})
        Game.sendMagicEffect({x = 32488, y = 31628, z = 13}, 3)
    end
    return true
end
 
Back
Top