• 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. B

    Mix Dem Showoff

    Those crystals look off, would be better without it
  2. B

    hello to all

    ok
  3. B

    Gallowgard - Discussion

    I just need to find a way to host it
  4. B

    Lua Npc questlog problem

    I think it is because you are using the same storage
  5. B

    Solved Elevator Script Help

    Maybe put onDing first and then teleport player? I think this is the problem
  6. B

    Solved Elevator Script Help

    Did you try if player:getPosition() ~= position then?
  7. B

    Solved Elevator Script Help

    You could use ipairs too... lua-users wiki: For Tutorial Try adding isOnElevator(playerPos) == true
  8. B

    Solved Elevator Script Help

    EDITED-- Didn't read it properly Maybe something like this? local function isOnElevator(playerPos) local tilePos = { [1] = Position(1232, 1043, 7), [2] = Position(1232, 1043, 6), [3] = Position(1232, 1043, 5), [4] = Position(1232, 1043, 4) } for i = 1, #tilePos do...
  9. B

    OpenTibia [RME 3.x] RME Modification 3

    ey thanks man
  10. B

    Creating NPC

    NPC's have both a xml file and a lua file. On the xml file you can change outfit, name, add trade parameters, etc... On the lua file you can add dialogue for quests and more complex things. Take a look at this real map pack: https://github.com/orts/server/tree/master/data/npc
  11. B

    Gallowgard - Discussion

    I was thinking something low like 3x but we can let people decide later. I'll upload something about the Black Knight later then (you now need to trigger it to fight it). Check AundSoul's mapping thread, the last pics are one of the possible new continents. As you can see, the mutated pumpkins...
  12. B

    Gallowgard - Discussion

    Hello everyone, I just wanted to start this discussion thread to be honest. I've been working in this project, along with @AundSoul, for the past 3 years or so. And what is it? The main idea is: a custom RPG server with a detailed, raw-built map that might look small but, it carries some...
  13. B

    Beto's Mapping Thread

    NPC's are like 90% done
  14. B

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

    I think he is following the PxG map so I doubt he'll try bigger architecture =d
  15. B

    Solved Soul points bug

    Check soulmax at the vocations xml file?
  16. B

    Solved Soul points bug

    Give premmium time
  17. B

    Bag with items quest

    Try this: That file has storages from real map, etc... function onUse(player, item, fromPosition, target, toPosition, isHotkey) local storage = item.uid if storage > 65535 then return false end if player:getStorageValue(storage) > 0 then...
  18. B

    Eterna Mapping - Leo's Thread

    Finish the map first then work on scripts?
  19. B

    If player is in certain area then give storage

    Do you want to check if player is in a certain square? local f = Pos() --top left local t = Pos() --bottom right local p = player:getPosition() if ((p.x >= f.x and p.y >= f.y and p.z == f.z) and (p.x <= t.x and p.y <= t.y and p.z == t.z)) and ... then
  20. B

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

    Just give an unique ID
Back
Top