All public logs

Jump to navigation Jump to search

Combined display of all available logs of RuneRealm Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 00:00, 17 October 2024 Alex talk contribs created page Module:Chart data/brimstone key drop rate (Created page with "local helper = require('Module:Chart data') local rate = {} for i = 1, 99 do local floorPart = math.pow(100 - i, 2) / 5 local floored = math.floor(floorPart) rate[i] = 1 / (100 + floored) end for i = 100, 350 do local floored = math.floor(i / 5) rate[i] = 1 / (120 - floored) end for i = 351, 500 do rate[i] = rate[350] end local withReq = {} for i = 1, 500 do withReq[i] = rate[i] / 0.8 end local data = { type = 'scatter', data = { datasets = { {...")