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

    Action [TFS 1.X] Cursed Chests

    Oh! It was at the bottom, totally missed it there! Well done! Learned a few things with that script. Thanks for your contribution, really appreciate it.
  2. Aeronx

    Action [TFS 1.X] Cursed Chests

    I have not tested it yet, but its missing this function: isBadTile(tile)
  3. Aeronx

    TFS 1.X+ Skulled monsters

    test skull = "SKULL BLACK" at the same line as name
  4. Aeronx

    Corpse that teleports you down one floor

    Man... It takes literally 30 sec to test that on your server. Im 100% sure it took more to write the post here.
  5. Aeronx

    Corpse that teleports you down one floor

    is not easier to test it, instead of asking here? open items.xml paste <attribute key="floorchange" value="down" /> save items.xml /reload items ingame
  6. Aeronx

    Corpse that teleports you down one floor

    function onStepIn(creature, item, position, fromPosition) local player = creature:getPlayer() if not player then return true end local pos = player:getPosition() player:teleportTo(Position(pos.x,pos.y,pos.z - 1)) local pos = player:getPosition()...
  7. Aeronx

    Corpse that teleports you down one floor

    Do a movement event. function onStepIn(creature, item, position, fromPosition) local player = creature:getPlayer() if not player then return true end player:teleportTo(Position(XXX,YYY,ZZZ)) local pos = player:getPosition()...
  8. Aeronx

    Learn spell with storage

    I missread the storagepart, i though you were doing max(1,66655) not max(1,storagevalue)
  9. Aeronx

    Learn spell with storage

    I may be wrong, but so far, this will break your client most of the times, unless you have 66655 effects on your source. Also, unless you use the :forgetSpell("") the spell will remain on their spellbook, the only thing is that it wont be usable.
  10. Aeronx

    TFS 1.3 How do i solve (a nill value)?

    You either ripped this from someone else project, or you are missing files. Anyhow.. storage.AdventurersGuild.Stone.. just searchs for a table. storage = {AdventurersGuild = {stone = ???, xxx = ???}} So you either create a table or set manually a storage value.
  11. Aeronx

    Graphic Designer Searching someone to improve THIS Logo professional

    pm me on discord, ill do it pretty fast. aeronx#9978
  12. Aeronx

    Action [TFS 1.1] Item's upgrading by jewels

    If it works on 1.1 works on 1.2 and 1.3 im 99% sure it will work without any change, if there's any change will be super dumb.
  13. Aeronx

    Lua doTargetCombatHealth(...) bug

    tested creature, creature:getId() and creature.uid, none works.
  14. Aeronx

    Lua doTargetCombatHealth(...) bug

    That means its COMBAT_PARAM_AGGRESSIVE its false by default, or am i mistaken? Just by adding COMBAT_PARAM_AGGRESSIVE, true, should fix the problem. But it didnt hehe Correct me if im mistaken. Thank you guys for your time!
  15. Aeronx

    Lua doTargetCombatHealth(...) bug

    Did you read the final "NOTE"? xD
  16. Aeronx

    Lua doTargetCombatHealth(...) bug

    Hello otlanders! I've been doing so much testing with doTargetCombatHealth(), and I dont know if its a bug, intended, and if there's a work around for it. So far, this is the basic mass healing spell. function onTargetCreature(creature, target) local player = creature:getPlayer() local...
  17. Aeronx

    [TFS 1.2] Exhaustion onEquip

    yeah, my bad 100% right.
  18. Aeronx

    [TFS 1.2] Exhaustion onEquip

    creatre a moveevent onEquip script add this code function onEquip(player, item, slot) local cd = EXHAUSTTIME --in seconds local storage = YOURSTORAGE player:addStorageValue(storage, os.time() + cd) if player:getStorageValue(storage) <= os.time() then return true else...
  19. Aeronx

    Lua Function [TFS 1.3] Item abilities via Lua

    Hello! Thanks for checking and doing some fixing! After revising the code, it may have something to do with TFS 1.2. I've revised everything, and tested many times, but still is not working, so its probably my TFS 1.2. Anyway, thank you for your time and dedication, really appreciate it.
  20. Aeronx

    Lua Function [TFS 1.3] Item abilities via Lua

    After some more testing. Absorbtion doesnt work after this code is implemented. Tested the server after implementing the and all absorbtions works fine. After implementing this code, absorbtions are not working at all, even if they are added directly on items.xml Hope it helps to fix the issue.
Back
Top