T
Tibia Demon
Guest
on formulas like this
i should define this?
or only like this and it work with out define and it get the value?
and here i need define this?
or only like this and it know the value without define?
LUA:
function onGetFormulaValues(player, skill, attack, factor)
LUA:
local distanceSkill = player:getEffectiveSkillLevel(SKILL_DISTANCE)
LUA:
(skill * attack * 0.05)
Code:
function onGetFormulaValues(player, level, magicLevel)
LUA:
local level = player:getLevel()
local magicLevel = player:getMagicLevel()
LUA:
(level / 5) + (magicLevel * 7.3)