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

    os.time

    At my Lua Potions. The problem is with os.time which I can't set to 1s. When there is (55555, os. Time () + 0) "1s", the potion often drinks 2 pots at the same time. Someone know how fix it ? local drunk = Condition(CONDITION_DRUNK) drunk:setParameter(CONDITION_PARAM_TICKS, 60000) local...
  2. U

    Lua Mana Rune tfs 1.2 +(Spells)

    How to block exori and utani hur?
  3. U

    TFS 1.X+ problem using fluids

    używam tego skryptu, ale mam ten problem, jak mogę iść dobrze? . V V V problem, look gyazo https://gyazo.com/be56db53e7b336ed2d386191f6e3afab
  4. U

    TFS 1.X+ How do I remove the guess exhausted. And provide a new one StorageValue?

    works great. THANKS and do you know why if I set exh below 1 s, every now and then I drink 2 manasy? or speeds up drinking?
  5. U

    TFS 1.X+ How do I remove the guess exhausted. And provide a new one StorageValue?

    I did as you wrote, but now I can't use potion. Any ideas? local drunk = Condition(CONDITION_DRUNK) drunk:setParameter(CONDITION_PARAM_TICKS, 60000) local poison = Condition(CONDITION_POISON) poison:setParameter(CONDITION_PARAM_DELAYED, true) poison:setParameter(CONDITION_PARAM_MINVALUE, -50)...
  6. U

    TFS 1.X+ How do I remove the guess exhausted. And provide a new one StorageValue?

    TFS 1.2 Client 8.0 HELP! How good is it to remove this exhausted : local time_in_seconds = 1 -- in seconds local cooldown_id = 123456 and add this one? if creature:getStorageValue(555551) >= os.time() , creature:setStorageValue(555551, os.time() + 1) I need Fix this...
  7. U

    Lua Mana Rune tfs 1.2 +(Spells)

    how we can do it, maybe that's better
  8. U

    Lua Mana Rune tfs 1.2 +(Spells)

    maybe is possible to add this to script? can it work? local exhaust = Condition(CONDITION_EXHAUST) exhaust:setParameter(CONDITION_PARAM_TICKS, 1000) -- Here you can put your exhaust as you want. ( 1000 means = 1 second ) if you hold down a hotkey, you're not wasting your count of item ...
  9. U

    Lua Mana Rune tfs 1.2 +(Spells)

    <rune group="healing" spellid="225" name="Mana Rune" id="2275" allowfaruse="1" charges="1" lvl="24" maglv="4" exhaustion="0" groupcooldown="1" aggressive="0" needtarget="1" blocktype="solid" script="healing/mana.lua"/> how are you set up spells.lua? there i need have exh 0, and take exh...
  10. U

    Lua Mana Rune tfs 1.2 +(Spells)

    look gyazo : Gyazo (https://gyazo.com/1be82dd252b86293993cfd0914650feb) when i hold Hotkey, there is no exh
  11. U

    Lua Mana Rune tfs 1.2 +(Spells)

    no i change at 1, look up
  12. U

    Lua Mana Rune tfs 1.2 +(Spells)

    something went wrong. https://gyazo.com/1be82dd252b86293993cfd0914650feb i little change script local combat = Combat() combat:setParameter(COMBAT_PARAM_TARGETCASTERORTOPMOST, 1) combat:setParameter(COMBAT_PARAM_TYPE, COMBAT_MANADRAIN) combat:setParameter(COMBAT_PARAM_EFFECT...
  13. U

    Lua Mana Rune tfs 1.2 +(Spells)

    BUMP! ;)
  14. U

    Lua Mana Rune tfs 1.2 +(Spells)

    How to change this script : I wanted these manarune to be used at the same time as "utani hur" exori vis, exori. But not when runes, healing like uh. what should a well-written lua look like? local combat = Combat() if player:getStorageValue(55555) >= os.time() then...
Back
Top