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

Search results

  1. Darkhaos

    Bug reports

    I can't use pick on large crystals to get pieces of raw crystal! EDIT: There are only blue crystals, not red.
  2. Darkhaos

    ShadowCores signature

    Deleted
  3. Darkhaos

    close this

    Add me: Darkhaos (EK 187 Skills 110/106)
  4. Darkhaos

    Change Name

    What if function suggests an existing name? You should add a code to check if the name exists in database.
  5. Darkhaos

    TalkAction Command "/attr" in lua-script talkaction, you can add more functions.

    It's because the functions declared in the script doesn't exists in your server. This script is very outdated.
  6. Darkhaos

    Linux This Item doesn't disappear

    Note that the 'boughtdate' attribute is being added just for helmet. Did you tested it buying a helmet?
  7. Darkhaos

    Someone? Isn't impossible

    if said, you can search for a function to scan player items and edit it like this function scanContainer(getPlayerSlotItem(cid, CONST_SLOT_BACKPACK).uid) local item = {2358) if getItemAttribute(item, "enddate") and os.time() >= getItemAttribute(item, "enddate") then...
  8. Darkhaos

    Lua Time of an Item

    Check my reply here http://otland.net/f132/someone-isnt-impossible-181249/
  9. Darkhaos

    Someone? Isn't impossible

    You'll need an creaturescript with onThink function (if you want item disappear instantly when the time expires) or add a code to login.lua (item will disappear when player logs in). In the npc-script replace all lines like this: doPlayerAddItem(cid, ...) With this local t = 30 * 24 * 60 * 60...
  10. Darkhaos

    Action Working Demon Oak Quest

    summons = { [1] = {"demon", "grim reaper", "elder beholder", "demon skeleton"}, [2] = {"dark torturer", "banshee", "betrayed wraith", "blightwalker"}, [3] = {"bonebeast", "braindeath", "diabolic imp", "giant spider"}, [4] = {"hand of cursed fate", "lich", "undead dragon", "vampire"}, [5] =...
  11. Darkhaos

    Action Working Demon Oak Quest

    In libwaves = 11
  12. Darkhaos

    Action Working Demon Oak Quest

    I actually created one that works as rl tibia, but just for sales.
  13. Darkhaos

    TalkAction Achievements LIB/Talkaction

    Look at this post http://otland.net/f118/gesior-aac-achievements-secret-122150/ There you can add achievements into website, and if you uses my KillingInTheNameOf script, you only need to add the achievements as a reward.
  14. Darkhaos

    NPC Towncryer

    Use getGlobalStorageValue
  15. Darkhaos

    NPC Yasir (All creature products)

    Sorry for answer you so late, here's an onBuy function i created: function onBuy(cid, item, subType, amount, ignoreCap, inBackpacks) for _, it in ipairs(items) do if it.buy then shop[it.id] = {price = it.buy, name = it.name} end end if inBackpacks then if not...
  16. Darkhaos

    NPC Grizzly Adams (Killing in the name of... Quest) All tasks, more real-tibia

    Seems like you edited something worng, past it here and i'll help you
  17. Darkhaos

    Lua getThingFromPos - a joke.

    local combat = createCombatObject() function onTargetTile(cid, pos) local target = getThingFromPos({x=pos.x, y=pos.y, z=pos.z, stackpos=254}) local dur = 0.25 + ((0.25 * getPlayerStorageValue(cid, 1002)) * getCreatureStorage(target.uid, 2000)) doPlayerSendTextMessage(cid...
  18. Darkhaos

    Selling Some scripts to sell

    Nice idea, i'll add it. Also, players can active/deactive anti-hack system. (For players who constantly changes their ip)
  19. Darkhaos

    Selling Some scripts to sell

    Is Anti-Hack, not anti-bot. If someone tries to log in on your account from a different ip than you connected in the last n hours/mins, the account will blocked for z hours/mins. n and z are configurable in config.lua.
Back
Top