Module:Role Advancement Table: Difference between revisions

From Drifter's Wiki TEST
Jump to navigation Jump to search
mNo edit summary
Tag: Manual revert
mNo edit summary
Line 1: Line 1:
local p = {}
local p = {}


function rows(frame)
function p.rows(frame)
local count, start, buffer
local count, start, buffer
count = tonumber(frame.args['count'])
count = tonumber(frame.args['count'])

Revision as of 13:29, 24 October 2022

Documentation for this module may be created at Module:Role Advancement Table/doc

local p = {}

function p.rows(frame)
	local count, start, buffer
	count = tonumber(frame.args['count'])
	start = tonumber(frame.args['start'])
	
	return buffer
end

return p