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

    Spell Tree of Life

    can u made it for tfs 1.2+? I use this spell, no error in console but tree don't add heal.. why?
  2. zxzxzx

    make it do damage.

    bump
  3. zxzxzx

    make it do damage.

    You saying I need to use this (onTargetTile0 - onTargetTile2) in that script? local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE) setCombatParam(combat, COMBAT_PARAM_EFFECT, 6) local area = createCombatArea({ {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}...
  4. zxzxzx

    make it do damage.

    damn.. a lot of work.. I realy want to make spell like this can u help me? spell must used this damage formula function onGetFormulaValues(cid, level, maglevel) min = -((level / 5) + (maglevel * 5.5) + 25) max = -((level / 5) + (maglevel * 11) + 50) return min, max end Hi Again...
  5. zxzxzx

    make it do damage.

    This not working, still can't see the distance shoot effect.. local combat2 = createCombatObject() combat:setParameter(combat2, COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE) combat:setParameter(combat2, COMBAT_PARAM_EFFECT, CONST_ME_HITAREA) combat:setParameter(combat2, COMBAT_PARAM_DISTANCEEFFECT...
  6. zxzxzx

    make it do damage.

    thanks now working! but I wan't to add distance shoot effect and added setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_ETHEREALSPEAR) and it's looks like local combat = createCombatObject() combat:setParameter(COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE) setCombatParam(combat...
  7. zxzxzx

    make it do damage.

    good! now working but my console show this: argument #3 is unsafe, "in function add event' function onCastSpell(cid, var) addEvent(doCombat, 500, cid, combat2, var) addEvent(doCombat, 1000, cid, combat3, var) addEvent(doCombat, 1500, cid, combat4, var) return doCombat(cid...
  8. zxzxzx

    make it do damage.

    Okay now do damage but only for the first, (one of 4 attacks)
  9. zxzxzx

    make it do damage.

    Hello! my spell don't do any damage, don't know why, no errors: local combat1 = createCombatObject() setCombatParam(combat1, COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE) setCombatParam(combat1, COMBAT_PARAM_EFFECT, 6) local combat2 = createCombatObject() setCombatParam(combat2, COMBAT_PARAM_TYPE...
  10. zxzxzx

    Rekonstrukcja spella ;s

    refresh
  11. zxzxzx

    Help me with some spell :)!

    bump
  12. zxzxzx

    Rekonstrukcja spella ;s

    wygląda dobrze lecz nie zadaje obrażeń, konsola : lua script error (spell interface) (unknown scriptfile) attemp t to call a nil value
  13. zxzxzx

    Rekonstrukcja spella ;s

    bum p
  14. zxzxzx

    Help me with some spell :)!

    Friend xD I think we don't understand each other, maybee because my English is to bad :c I only wan't to make this spell lool like in the video with this dmg calculation: min = -((level / 5) + (maglevel * 5.5) + 25) max = -((level / 5) + (maglevel * 11) + 50), thats all.. but I...
  15. zxzxzx

    Rekonstrukcja spella ;s

    Witam! czy byłby ktoś w stanie zrekonstruować tego spella? w zasadzie to już prawie go odtworzyłem lecz mam problem z effektem dystansowym, nie potrafię go dodać tak by działał razem z setCombatParam(combat[i], COMBAT_PARAM_EFFECT, 6) czy ktoś obeznany w czarach jest w stanie pomóc? spell...
  16. zxzxzx

    Help me with some spell :)!

    Good! now working but u changed little bit my script, u clean local combat4 = createCombatObject() setCombatParam(combat4, COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE) setCombatParam(combat4, COMBAT_PARAM_EFFECT, 6) setCombatFormula(combat4, COMBAT_FORMULA_LEVELMAGIC, -0, -0, -0, -0) and u added...
  17. zxzxzx

    Spell Exori Super Gran, Druid Fury, Sorcerer Fury, Divine Condition, Custom Spells

    sorry for refreshment but can someone change bugged setCombatFormula(bigFlames, COMBAT_FORMULA_LEVELMAGIC, -5.766, -50, -6.241, -100) to function onGetFormulaValues(cid, level, maglevel) min = (level / 5) + (maglevel * 1.8) + 11 max = (level / 5) + (maglevel * 3) + 19 return min...
  18. zxzxzx

    Help me with some spell :)!

    well... there's error in line 47 ')' expected to close '(' at line 47 near 'time' - I try to add '(' there but the error is still showing..
  19. zxzxzx

    Help me with some spell :)!

    not working, there's no damage
Back
Top