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

    Help with exhaust! :(

    But he wants to use to diffrent things at the same time.But yes it's true,it shouldn't be lower than 100 ms.
  2. A

    Help with exhaust! :(

    Yu should establish timeBetweenActions = 0 .It should help you :)
  3. A

    Lua DoRemoveItem script

    Dude you are awesome.It works great. Thank you :D
  4. A

    Lua DoRemoveItem script

    Inside the spoiler.
  5. A

    Lua DoRemoveItem script

    Hi guys, I have a problem with my script: So, here is a thing: When I use the lever the script creates three items on one spot but when I use the lever again it removes only one item from the position. The console gives me an error but I have no freaking idea why it is so. The one item is...
  6. A

    Lua Paralyze rune

    I want paralyze to not be disspelled by x time. I made something like this: Presently right after using paralyze rune by x char, char y can instanly use haste spell to remove paralyze condition. The problem is I think that paralyze rune does not set the storage 30030 on a target. If...
  7. A

    Lua Paralyze rune

    I have just found someting like this: Spell - Paralyze Rune (just like in RL), delay added I think it can help me ;p
  8. A

    Lua Paralyze rune

    Hi guys, I wonder is it possible to make paralyze rune to last at least 500-750 ms even if anyone used haste or healing spell right after being paralyzed? I am thinking about either making something in paralyze rune script what will block removing the condition by the time or to add any delay in...
  9. A

    Lua No exhaustion -- manarune

    Yes it works, only I have no exhaustion on it.
  10. A

    Lua No exhaustion -- manarune

    I have a problem with my manarune exhaustion and actually of lack of it. Here is a script: Anyone have idea why other runes have exhaustion and only this one have not?
  11. A

    Lua Burning Heart --> Fast healing

    Finally! I solved the problem by my own :D It was a cause of my mysterious exhaustion ;p timeBetweenActions = 25 timeBetweenExActions = 100 hotkeyAimbotEnabled = true
  12. A

    Lua Burning Heart --> Fast healing

    I remake a script to make it optimally simple (the item which I am using is burning heart): function onUse(cid, item, fromPosition, itemEx, toPosition) doSendMagicEffect(getCreaturePosition(cid),13) doCreatureAddHealth(cid, math.random(450,1350)) return true end I can...
  13. A

    Lua Burning Heart --> Fast healing

    Hello Guys, I have a problem with my BH script: Generally it works, I mean when I am clicking on it with right button of the mouse it heals the character without exhaustion but when I set it on elfbot it has like 500 ms of exhaustion and I totally don't know why. My elbot script is fine...
  14. A

    Lua Problem with isInArea script.

    Yeah, it works. Thanks you both :D
  15. A

    Lua Problem with isInArea script.

    When Rahemos is inside it gives the message: "You have to kill Rahemos to enter the tomb!" , after killing him there is no message but the teleportation does not work.
  16. A

    Lua Problem with isInArea script.

    [20:4:28.175] [Error - Action Interface] [20:4:28.182] data/actions/scripts/Ancient Quest/AncientArea.lua:onUse [20:4:28.183] Description: [20:4:28.184] data/actions/scripts/Ancient Quest/AncientArea.lua:4: attempt to get length of local 'area' (a number value) [20:4:28.185] stack traceback...
  17. A

    Lua Problem with isInArea script.

    [19:40:24.422] [Error - Action Interface] [19:40:24.422] data/actions/scripts/Ancient Quest/AncientArea.lua:onUse [19:40:24.422] Description: [19:40:24.422] data/actions/scripts/Ancient Quest/AncientArea.lua:4: attempt to get length of local 'area' (a number value) [19:40:24.422] stack...
  18. A

    Lua Problem with isInArea script.

    StreamSide I think that the issue with getting monster id is done but for some reason there is still a problem with the area: And the error: [18:42:45.318] [Error - Action Interface] [18:42:45.333] data/actions/scripts/Ancient Quest/AncientArea.lua:onUse [18:42:45.333] Description...
  19. A

    Lua Problem with isInArea script.

    The same error like at my first post.When I add : isCreature(pid) and (...) then no errors but player is teleported no matter that the boss is inside again :(
  20. A

    Lua Problem with isInArea script.

    No errors but does not work. Player is teleported no matter that the boss is inside area. The same for: if isCreature(pid) and isInArea(getCreaturePosition(pid), areaPosition[1], areaPosition[2]) then They used the function onpreparedeath which is unfortunately useless for me.
Back
Top