Module:Experience/data

From RuneRealm Wiki

This is the current revision of this page, as edited by Alex (talk | contribs) at 00:24, 16 October 2024 (Created page with "local ret = {} local total = 0 ret[1] = 0 for i = 1, 98 do total = math.floor(total + i + 300 * math.pow(2, i / 7)) ret[i + 1] = math.floor(total/4) end return ret"). The present address (URL) is a permanent link to this version.

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Documentation for this module may be created at Module:Experience/data/doc

local ret = {}
local total = 0

ret[1] = 0
for i = 1, 98 do
    total = math.floor(total + i + 300 * math.pow(2, i / 7))
    ret[i + 1] = math.floor(total/4)
end

return ret