The search keyword must be a single word (no spaces).

Function PercentToInt

Line
1239
Location
blizzard.j
Constant?
no
Type
function
Arguments
real percentage, integer max
Returns
integer
1239
function PercentToInt takes real percentage, integer max returns integer
1240
    local real realpercent = percentage * I2R(max) * 0.01
1241
    local integer result = MathRound(realpercent)
1242
1243
    if (result < 0) then
1244
        set result = 0
1245
    elseif (result > max) then
1246
        set result = max
1247
    endif
1248
1249
    return result
1250
endfunction