Hello, I have search and search and search and I can't find anything I guess there is many more than I who wants to know how to balance this spells!
Exori Hur
Exori Con
Exura San
I want the spells Exori Hur/Exori Con to dmg around 150-200 on monsters right now they are dmg 50-70. And I would also like you guys to high the healing of exura san, now they heal around 500 in level 200+ i want them to heal like 800.
REP WILL BE GIVING AS ALWAYS! THANK YOU VERY MUCH !
Exori Hur - Whirlwind Throw
Exori Con - ethereal spear
Exura san - Divine Healing
Exori Hur
Exori Con
Exura San
I want the spells Exori Hur/Exori Con to dmg around 150-200 on monsters right now they are dmg 50-70. And I would also like you guys to high the healing of exura san, now they heal around 500 in level 200+ i want them to heal like 800.
REP WILL BE GIVING AS ALWAYS! THANK YOU VERY MUCH !
Exori Hur - Whirlwind Throw
Code:
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE)
setCombatParam(combat, COMBAT_PARAM_BLOCKARMOR, true)
setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_WEAPONTYPE)
setCombatParam(combat, COMBAT_PARAM_USECHARGES, true)
function onGetFormulaValues(cid, level, skill, attack, factor)
local skillTotal, levelTotal = skill + attack, level / 5
return -(skillTotal / 3 + levelTotal), -(skillTotal + levelTotal)
end
setCombatCallback(combat, CALLBACK_PARAM_SKILLVALUE, "onGetFormulaValues")
function onCastSpell(cid, var)
return doCombat(cid, combat, var)
end
Exori Con - ethereal spear
Code:
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE)
setCombatParam(combat, COMBAT_PARAM_BLOCKARMOR, true)
setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_ETHEREALSPEAR)
function onGetFormulaValues(cid, level, skill, attack, factor)
return -(((skill + 28) / 4) + (level / 5)), -((skill + 28) + (level / 6))
end
setCombatCallback(combat, CALLBACK_PARAM_SKILLVALUE, "onGetFormulaValues")
function onCastSpell(cid, var)
return doCombat(cid, combat, var)
end
Exura san - Divine Healing
Code:
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_HEALING)
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE)
setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, false)
setCombatParam(combat, COMBAT_PARAM_DISPEL, CONDITION_PARALYZE)
setHealingFormula(combat, COMBAT_FORMULA_LEVELMAGIC, 5, 5, 18.5, 25)
function onCastSpell(cid, var)
return doCombat(cid, combat, var)
end