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

    Lua math.random (1.9) almost always returns me 7, this may be a bug?

    Place this before the first math.random. math.randomseed(os.time())
  2. Dalkon

    Solved The Forgotten Server 1.0 ModalWindow

    function onModalWindow(cid, modalWindowId, buttonId, choiceId) local player = Player(cid) player:unregisterEvent(THIS_EVENT_NAME) if modalWindowId ~= MY_WINDOW_ID then return end if choiceId == 0x00 then -- ? elseif choiceId == 0x01 then -- ! if...
  3. Dalkon

    Solved The Forgotten Server 1.0 ModalWindow

    local modalWindow = ModalWindow(0xFF, "free pasta", "the pie loves crust") modalWindow:addChoice(0x00, "wat") modalWindow:addChoice(0x01, "watwat?") modalWindow:addButton(0x00, "go away chicken") modalWindow:addButton(0x01, "pigs can fly") modalWindow:setDefaultEnterButton(0x01)...
  4. Dalkon

    Generating maps?

    I could also help out with this because it seems so interesting, also I find random dungeon maps very fun to play.
  5. Dalkon

    Action ID key in Quest chest

    function onUse(cid, item, fromPosition, itemEx, toPosition) local player = Player(cid) local pItem = player:addItem(itemId, count/subtype[default = 1]) if pItem then pItem:setActionId(actionId) end end
  6. Dalkon

    Lua Item editing help

    @sn3ejk: You cannot remove/get/set non-default attributes. Edit: In 1.0 setting attack to 48 should show that, in any other version I'm not sure if its (attack - elementalAttack) or just the attack.
  7. Dalkon

    Jacolas muting me for no reason at all.

    Such a child, go home.
  8. Dalkon

    Solved addEvent issue

    function onStepIn(cid, item, position, lastPosition, fromPosition, toPosition, actor) if(isMonster(cid))then addEvent(doCreateItem, 1000, 11796, Position(695, 653, 9)) addEvent(function() local item = getTileItemById(Position(695, 653, 9), 11796)...
  9. Dalkon

    [BeniS] Scam

    Why would you expect someone to return your money 10 months after you've gotten the "product"? Edit: To say that this is a scam is pretty damn dumb, it's like going back to the store with a 10 month old bag of chips saying you want a refund.
  10. Dalkon

    [Norway] RookWar By Eldin [9.31]

    Honestly... this update wasn't neccesary. Edit: The only neccesary part would be making knights a tiny bit stronger, not nerfing everything else and adding "high-rate" server content to this low-rate server.
  11. Dalkon

    Whats you'r real name?

    Christian
  12. Dalkon

    [Sweden] Masiyah 8.6 |Masiyah.se| Anti-bot GameGuard | Free Points | PIN System | Custom Real Map |

    @Rohan: There is no way that he will change his mind about there being another "admin", don't even bother arguing.
  13. Dalkon

    Windows How can I avoid these side spaces in tibia window?

    There's something that's called an "aspect ratio".
  14. Dalkon

    OtlandCraft [Hosted by Znote]. Running latest Bukkit version.

    =( and i had just logged in.
  15. Dalkon

    Server AutoChange Map? Possible?

    or you could do some smart mapping and relocate sector by sector (32x32 tiles each time?), say if you use seasons if(season() == SEASON_WINTER)then x = x + 16000 else if(season() == SEASON_SPRING)then y = y + 16000 -- etc etc end I hope you get the point.
Back
Top