0.3.6We can probably guess, but please tell your TFS.. and explain the problem better?
Problem with Round. I have no idea what your talking about.. unless your talking about a loop, circle, or rounding the number up/down? idk ..![]()
local expLost = (math.floor(getPlayerExperience(cid) - getExperienceForLevel(LEVEL_MINIMUM)) / 7) * 2.5, 0
0.3.6
Of course it's possible.. Almost everything is possible.. It might take till the end of time for some things though :xIt possible fix this script?
Of course it's possible.. Almost everything is possible.. It might take till the end of time for some things though :x
function round(num, idp)
local mult = 10^(idp or 0)
return math.floor(num * mult + 0.5) / mult
end