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

    Solved Rune exhaust

    local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_HEALING) setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE) setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, false) setCombatParam(combat, COMBAT_PARAM_TARGETCASTERORTOPMOST, true)...
  2. Powtreeman

    Solved Rune exhaust

    I made a mana rune but it has a problem. It seems to try to use twice when I use it once. And then causes it to exhaust longer than it should. I played around with rune exhaust and global cooldown but it does not change anything because it tries to use itself twice. An example is any other rune...
  3. Powtreeman

    Solved Anni quest soloing

    Fixed! @Extrodus replace that spot with this local new_player_pos = { {x = 33222, y = 31659, z = 13}, {x = 33221, y = 31659, z = 13}, {x = 33220, y = 31659, z = 13}, {x = 33219, y = 31659, z = 13} Bad coords
  4. Powtreeman

    Lua How to set up auto points

    Znote
  5. Powtreeman

    Lua How to set up auto points

    How do I set up paypal to give players points when they donate?
  6. Powtreeman

    Lua !Shop command

    Lost again
  7. Powtreeman

    Solved Anni quest soloing

    Weird? Everything i have is from the exact 1.0 pack that printer gave out and very few of the quests work fully but I have fixed some. Here's my script local Area_fromPos, Area_toPos = {x = 33219, y = 31657, z = 13}, {x = 33222, y = 31661, z = 13} local room = { -- room with demons fromX...
  8. Powtreeman

    Solved Anni quest soloing

    How do I change how many people go into anni? When 4 people stand on spots and pull the lever only the person pulling the lever goes in. There is no error so I think it is just set like this somewhere. I am using 1.0 Thanks in advance
  9. Powtreeman

    Solved Demon oak error

    This is solved thanks to another thread i found with the same problem. Its Game.getSpectators Ninja you were almost right lol You solved the other one so you still win in the end.
  10. Powtreeman

    Solved Demon oak error

    So I guess the error wasn't exactly the same
  11. Powtreeman

    Solved Demon oak error

    Where exactly do I replace this at?
  12. Powtreeman

    Lua !Shop command

    Im using Znote and uniserver
  13. Powtreeman

    Lua !Shop command

    Plus someone donated 10 dollars and got 0 points. How do I fix this?
  14. Powtreeman

    Lua !Shop command

    "Your order is ready to be delivered. Write this command in-game to get it: [!shop]. Make sure you are in depot and can carry it before executing the command!" This is what it says when I try to buy something in my shop. But I do not have the command !shop anywhere in my file. What is the...
  15. Powtreeman

    Solved Demon oak error

    anyone? this is important.
  16. Powtreeman

    admin flags

    Ok so these do change things but are not really doing what they should for 1.0 So does anyone have current 1.0 flag calculator?
  17. Powtreeman

    Solved Demon oak error

    same error now it just says getSpectators instead of get CreaturesInRange on the console Here is the function function doCreatureSayWithRadius(cid, text, type, radiusx, radiusy, position) if position == nil then position = getCreaturePosition(cid) end local spectators =...
  18. Powtreeman

    Solved Demon oak error

    any clues?
  19. Powtreeman

    Solved Demon oak error

    heres my actions lib if its even necessary function destroyItem(cid, itemEx, toPosition) if itemEx.uid <= 65535 or itemEx.actionid > 0 then return FALSE end if (itemEx.itemid >= 1724 and itemEx.itemid <= 1741) or (itemEx.itemid >= 2581 and itemEx.itemid <= 2588) or itemEx.itemid...
  20. Powtreeman

    Solved Unknown immunity

    Solved it! The errors were doubling because I was removing the Percent part from firePercent etc. The original errors were coming from the few creatures who were MISSING that part and just said fire. As for the elements you were spot on. Thanks!
Back
Top