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

    Lua [TFS 1.3] Free Scripting Service 📝

    replace that: local maxMana = creature:getMaxMana() / 100 target:addMana(math.random(maxMana * 10, maxMana * 15)) for this: local minMana = (level / 5) + (magicLevel * 3.2) + 20 local maxMana = (level / 5) + (magicLevel * 5.4) + 40 target:addMana(math.random(minMana, maxMana))
  2. D

    Lua Damage type buffs (onuse) bug in spells

    Thank you friend.
  3. D

    Lua Damage type buffs (onuse) bug in spells

    Hello, I added this code (Damage type buffs (onuse) by Xikini) on my server and it works normally when it is a weapon with elemental damage, but when using a spell, like the exori flam, for example, I get the return of the following error: Lua Script Error: [Scripts Interface]...
  4. D

    Lua [TFS 1.3] Free Scripting Service 📝

    Congratulations, very good and simple. How would it look if when there was a failure, you went back one level?
  5. D

    OTClient OTCLient v8; Screen; Extended

    Hello person! I would like to know if there is any way to expand the screen using OTClient v8 and TFS 1.3 (OTServbr-Global) (Protocol 12). I followed the following tutorial: [Tutorial] Adding more tiles to game window - Updated 7/6/2018...
Back
Top