View source for Module:Combat level
Jump to navigation
Jump to search
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
-- Implements Calculator:Combat level/Template
local paramTest = require('Module:Paramtest')
local p = {}
function p.calc(frame)
local args = frame:getParent().args
local stats = { 'attack', 'strength', 'defence', 'ranged', 'magic', 'hitpoints', 'prayer' }
local lvls = {}
for i, stat in pairs(stats) do
if i == 6 then
lvls[i] = paramTest.default_to( tonumber(args[stat]), 10 )
else
lvls[i] = paramTest.default_to( tonumber(args[stat]), 1 )
end
end
return p.formatlvl( p._calc( unpack( lvls ) ) )
000
1:0
Template used on this page:
Return to Module:Combat level.