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

    Solved Wall lever with reset timer issues on 1.1

    It removes every item on the position, even the tiles. The wall is removed but without that tile you can't walk through.
  2. demon088

    Monster rates

    What?
  3. demon088

    EXP Scroll

    I used this exp booster for tfs 1.2 and it's working. But I edited it by my own. https://otland.net/threads/where-do-i-add-a-2x-exp-boost-script.239017/
  4. demon088

    EXP Scroll

    Interesting function. A shame it's not working on tfs 1.x+
  5. demon088

    EXP Scroll

    Maybe this would work for you: Add this on actions.xml. <action itemid="XXXX" event="script" value="2exp.lua"/> note: make sure you put your item id instead of "XXXX". Add this on actions/scripts. function onUse(cid, item, frompos, item2, topos) local pausa = 30*60*1000 -- (1000 = 1 segundos)...
  6. demon088

    Solved Multi element wand with attack

    I used that script from @strutZ, but I edited a few things: Action: -- Config -- Set wand how the wand deals damage DamageTypeWand = { values = false, -- If this is set to true then it will use the min and max values. If set to false the wand will use the formula -- Damage Values...
  7. demon088

    8.6 npc+backpack system

    Would you explain better what are you looking for? I didn't understand what kind of script do you need.
  8. demon088

    [MEXICO] TacoServ (low rates, nice loot!) 24/7 NO LAG! NO BOTS!

    TacoServer is now 10.77 and has been updated! Visit our website: http://taco.servegame.com/
  9. demon088

    [TFS 1.2] Change Weapon Damage 2.0

    It's working for me. But I have a doubt, how can I set an attack value to the formula. I want to use it on weapons with atk.
  10. demon088

    Solved Multi element wand with attack

    Thanks! I'm trying.
  11. demon088

    Solved Multi element wand with attack

    Hello Otland! I have this weapon actually working, but I want to make it different. Take a look on this code: -- Wand/Rod Multi-Elements. -- by leyendario. local config = { min1 = 0.5, min2 = 1, max1 = 1, max2 = 1 } local fisico = createCombatObject()...
  12. demon088

    Lua Spells explanation 0.3.1

    Here I go: local combat = createCombatObject() <--- This line is creating the Combat Object (Something that causes combat to begin) setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE) <--- The type of damage the combat object will deal setCombatParam(combat...
  13. demon088

    Lua How Make a Protection Door?

    This is truly working. I have TFS 1.2 and it's ok!
  14. demon088

    Lua Change Target Spell (TFS 1.2)

    What do you say? <instant group="support" spellid="93" name="Unchallenge" words="exeta ani" lvl="10" mana="30" prem="0" aggressive="0" cooldown="1000" groupcooldown="1000" needlearn="0" script="support/unchallenge.lua"> <vocation name="Summoner" /> <vocation name="Soul...
  15. demon088

    Lua Element % buff spell

    I have TFS 1.2. I think I could use those functions you mentioned, but I don't have the knowledge to build this script. Do you know what do I need to change in my sources to make this possible? I don't really know about editing sources. I did it but with a tutorial. xD NEWBIE! Thanks for the...
  16. demon088

    Lua Change Target Spell (TFS 1.2)

    This is my issue: Lua Script Error: [Spell Interface] data/spells/scripts/support/unchallenge.lua:onCastSpell data/spells/scripts/support/unchallenge.lua:14: attempt to index local 'target' (a number value) stack traceback: [C]: in function '__index'...
  17. demon088

    Lua Element % buff spell

    Hello OtLand! I've searched for a spell that buffs the player increasing the elemental protection of the user. Is this spell possible on lua, or could I need to compile this kind of parameters? Thanks for the help!
  18. demon088

    Lua [SOLVED] Nobody can login into my server :C

    I had it working fine, but when I tried to add a new creaturescript nobody could login, so I tried reverting the changes and now it's not working with the scripts that it was working before. EDIT (Solution): Something was registered on the server with the creaturescripts I added. So I had to...
  19. demon088

    Lua [SOLVED] Nobody can login into my server :C

    Yes it is. global.lua: dofile('data/lib/lib.lua') STORAGEVALUE_PROMOTION = 30018 ropeSpots = {384, 418, 8278, 8592, 13189, 14435, 14436, 15635, 19518} doors = { [1209] = 1211, [1210] = 1211, [1212] = 1214, [1213] = 1214, [1219] = 1220, [1221] = 1222, [1231] = 1233, [1232] = 1233, [1234]...
Back
Top