Revision history of "Module:Inventory"

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • curprev 22:52, 15 February 2022Soulgazer talk contribs 2,394 bytes +2,394 Created page with "-- <pre> local p = {} local hasc = require('Module:Paramtest').has_content function formatAmount(_x) local x = tonumber(_x) or 1 if x < 100000 then return x, 'qty-1' elseif x < 10000000 then return tostring(math.floor(x/1000))..'K', 'qty-100k' else return tostring(math.floor(x/1000000))..'M', 'qty-10m' end end function p.main(frame) local bgType = frame.args.bgType if bgType == nil then bgType = "inventory"..."