• 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!

Lua Spells setCombatFormula question

Here is a large explanation that might be usefull
http://otland.net/f16/spells-damage-159751/index2.html#post1537893

But you can also do it like this
Lua:
function onGetFormulaValues(cid, level, maglevel)
min = -(maglevel*7) -level/5 -40
max = -(maglevel*8) -level/5 -50

return min, max
end

setCombatCallback(combat, CALLBACK_PARAM_LEVELMAGICVALUE, "onGetFormulaValues")
Which is probable much more easy to understand.
 
Back
Top