Extrodus
|| Blazera.net ||
Hey there, was hoping someone could help me out with a small problem I'm having.
Exori gran con hits fine with every other paladin item, but when I use Elethriel's Elemental Bow it hits way less and is causing problems.
Spell .lua
Hopefully someone could help me out, thanks!
Exori gran con hits fine with every other paladin item, but when I use Elethriel's Elemental Bow it hits way less and is causing problems.
Spell .lua
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)
return -(((skill + 25) / 3) * 2 + (level / 5)) * 2, -((skill + 25) + (level / 5 * 2)) * 2, 0
end
setCombatCallback(combat, CALLBACK_PARAM_SKILLVALUE, "onGetFormulaValues")
function onCastSpell(cid, var)
return doCombat(cid, combat, var)
end
Hopefully someone could help me out, thanks!