T
Tinkz
Guest
Hello, I'm using TFS 1.2 and something odd occurred while trying out a new formula for spells/runes damage. The effect of using this formula makes my spells do no damage at all.
Where can I find the max and min values in the source? Combat.cpp?
LUA:
local min = math.max((base - variation), ((3 * maglevel + 2 * level) * (base - variation) / 100))
local max = math.max((base + variation), ((3 * maglevel + 2 * level) * (base + variation) / 100))
return min, max
end
Where can I find the max and min values in the source? Combat.cpp?