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

Search results

  1. Moj mistrz

    Players can go through players when they stand at depotbox

    Try this if you are using glowing switches(those orange tiles): <item fromid="11062" toid="11063" article="a" name="glowing switch"> <attribute key="walkStack" value="0" /> </item> or just add in items.xml to a tile u want: <attribute key="walkStack" value="0" /> Dunno if it works on...
  2. Moj mistrz

    [Archived] "[Quick Showoff] Post your latest maps"

    Ghastly place. For a gif 'click me' (warning, it's a large file).
  3. Moj mistrz

    Searching for a custom low-rate RPG server

    Yeah, probably it will be Therran, but it's not open atm.
  4. Moj mistrz

    [Archived] "[Quick Showoff] Post your latest maps"

    Crashed pirate ship. Which one's better? Old. New.
  5. Moj mistrz

    Solved [TFS 1.2] Imitate spell

    local combat = Combat() function onTargetCreature(creature, target) local player = Player(creature) if not player then return false end local outfit = target:getOutfit() player:setOutfit(outfit) end return true end...
  6. Moj mistrz

    Inaccessible Islands

    Yeah, I bet it's Vengoth nowadays. :D Those empty islands will be probably used in some updates, or newer used at all:P.
  7. Moj mistrz

    Game.createMonster doesnt work on fields?

    Game.createMonster(monsterName, position[, extended = false[, force = false]]) Description: Creates a monster. Parameters: monsterName - Name of the monster to be created position - Where do we place it? extended - Extend the range? (optional, default: false)...
  8. Moj mistrz

    Solved Count monsters from Game.getSpectators

    If it's TFS 1.2 then: local specs = Game.getSpectators(Position(creature:getPosition()), false, false, 20, 20, 20, 20) local count = 0 for i = 1, #specs do local spectator = specs[i] if spectator:isMonster() then count = count + 1 end end...
  9. Moj mistrz

    The Legendary Door - Level 999 Gate of Expertise -

    X-Ray maybe works?
  10. Moj mistrz

    The Legendary Door - Level 999 Gate of Expertise -

    The reward is imo boots of renewal, new unobtainable item which arrived in latest update. Looks like a soft boots/of waterwalking.
  11. Moj mistrz

    The Legendary Door - Level 999 Gate of Expertise -

    He will arrive there drinking mojitos with some hot bikini girls on da beach: http://tibia.wikia.com/wiki/Mapper?coords=128.52-126.177-7-2-1-1 P.S I bet that area can be already tracked on Global Tibia by entering Spirit Grounds area(it's just few floors below it).
  12. Moj mistrz

    Solved Teleport all players and monsters from room

    function teleportback() local pposback = Position(33324, 33224, 8) local centerRoomPos = ? local specs, spec = Game.getSpectators(centerRoomPos, false, false, 15, 15, 15, 15) if #specs ~= nil then for i = 1, #specs do spec = specs[i]...
  13. Moj mistrz

    [Canada] AuraOT 10.95 [Custom Server] - No P2W | Mid Stages | Brazillian Community

    How come you've got all the custom bosses I've made for @Chechlowski for his server like 6-12 months ago(forgot when it was lol)?
  14. Moj mistrz

    [XML 8.1] Lever teleport

    function onUse(cid, item, frompos, item2, topos) if item.uid == 1964 then local kasaPos = {x=1035, y=1004, z=7, stackpos=3} local getKasa = getThingfromPos(kasaPos) local teleportTo = {x=1088, y=943, z=9} if getKasa.itemid == 2322 then...
  15. Moj mistrz

    [XML 8.1] Lever teleport

    Try with different stackpos, ex. 0, 1, 2 or 255.
  16. Moj mistrz

    [XML 8.1] Lever teleport

    Try this, no idea if it will work, because it wasn't tested. function onUse(cid, item, frompos, item2, topos) if item.uid == 1964 then local kasaPos = {x=1035, y=1004, z=7, stackpos=3} local getKasa = getThingfromPos(kasaPos) local teleportTo = {x=1088, y=943, z=9}...
  17. Moj mistrz

    [7.7] RealOTS 7.7 Cipsoft files (virgin)

    Back in time there wasn't any interval at all, but Cipsoft have changed it in 7.5~ to 2s, don't remember exactly, it was so long ago :P. And yes, it's always 2s.
  18. Moj mistrz

    [7.7] RealOTS 7.7 Cipsoft files (virgin)

    I was wrong about area/shot effect it isn't +1, but -1. lol sorry :D
  19. Moj mistrz

    [7.7] RealOTS 7.7 Cipsoft files (virgin)

    Actually this is how it works - "Actor (13) -> Healing (120, 30) : 7" - Actor(13) = spell effect, but 13+1 = real effect from tfs, 120 isn't max and 30 isn't min, but - 120 + 30 = 150 max, 120 - 30 = 90 min., the chance is calculated like this - monster has 100% / 7 ~= 14% chances to cast this...
Back
Top