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

    Solved Action not working

    It is actually working this way, thank you !
  2. N

    Solved Action not working

    I found this script here on OtLand and modified it a little, but it's not completely working... local config = { oldpos = { {x=1034,y=1032,z=5}, {x=1034,y=1034,z=5} }, newpos = { {x=1037,y=1040,z=5}, {x=1045,y=1040,z=5} }, level = 8, }...
  3. N

    Lua 7.6 PvP Arena

    Well the pvp zone thingy is working, but the player who dies in that zone is being teleported to the temple. I'd like to teleport the player next to the arena, hows that possible?
  4. N

    Solved Utura Gran like spell

    Yes, it is still the same server and after adding == TRUE and changed true to TRUE it is working as intended. Thank you again.
  5. N

    Solved Utura Gran like spell

    I'm currently using this Utura Gran like spell. Basically a spell that heals over time. healRegen = {} local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE) setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, false) local condition =...
  6. N

    Lua 7.6 PvP Arena

    I am already using the PVP Zone tool, but what does that actually do?
  7. N

    Lua 7.6 PvP Arena

    I got this script for a pvp arena local arena = { frompos = {x=1037, y=1037, z=5}, topos = {x=1045, y=1043, z=5}, exit = {x=1041, y=1033, z=5} } function onPrepareDeath(cid, lastHitKiller, mostDamageKiller) if isPlayer(cid) == TRUE then if isInArea(getPlayerPosition(cid)...
  8. N

    Solved Item useable every 3 days

    well, I couldnt really find a newer 7.6 server somehow
  9. N

    Solved Item useable every 3 days

    I just did that and its working as intended... are you a magician?! :D
  10. N

    Solved Item useable every 3 days

    Well either is it giving the exp all the time or its not working all the time and telling me 01:50 You have to wait 0 second before you can use another stone of wisdom. Over over again... this happens removing the == out of exhaustion.check(cid, cfg.storage) == true
  11. N

    Solved Item useable every 3 days

    i still not working as supposed :/ idk what im doing wrong anymore
  12. N

    Solved Item useable every 3 days

    I added it, still nothing happens, although I still receive the experience (bottom of the script) It has to do with if (exhaustion.check(cid, cfg.storage) == true) then I believe after removing the == signs 01:36 259153 01:36 You have to wait 71 hours, 59 minutes and 13 seconds before...
  13. N

    Solved Item useable every 3 days

    Nothing actually
  14. N

    Solved Item useable every 3 days

    The way the script is right now, it is just executing the bottom part every time used
  15. N

    Solved Item useable every 3 days

    Where should I add inside the script print(time)
  16. N

    Solved Item useable every 3 days

    I also just posted the script, can you check it? Please
  17. N

    Solved Item useable every 3 days

    Script looks like this btw: Whats wrong? function onUse(cid, item, fromPosition, itemEx, toPosition) cfg = { valid_time = 3 * 24 * 60 * 60, storage = 18025, min = 8, experience = getPlayerLevel(cid) * 5000 } if (exhaustion.check(cid, cfg.storage)...
  18. N

    Solved Item useable every 3 days

    00:28 You have to wait 71 hours, 30 minutes and 13 seconds before you can use another stone of wisdom. its working fine :p EDIT: I just change the storage and this happens 00:30 You have to wait 0 second before you can use another stone of wisdom. 00:30 You have to wait 0 second before you...
  19. N

    Solved Item useable every 3 days

    Ok thank you man, you were a great help :)
  20. N

    Solved Item useable every 3 days

    I dont really know which 0.3 Version this is, but it might be old. I just added == true and its perfectly working now How can I make exhaustion.get(cid, config.storage) tell me the hours?
Back
Top