View source for Module:Calculator/ETA
From Melvor Idle
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
local p = {}
local MEXP = require('Module:Experience')
local number = require('Module:Number')
local TimeSpan = require('Module:TimeSpan')
local function formatTime(seconds)
local timespan = TimeSpan.fromSeconds(seconds)
return timespan:toStringLong()
end
local function addTableRow(tbl, c1, c2)
tbl:tag("tr")
:tag("th"):wikitext(c1)
:tag("td"):wikitext(c2)
return tbl
end
local function calc(currentExp, targetLvl, expPerAction, actionTime)
000
1:0
Template used on this page:
Return to Module:Calculator/ETA.