Module:Role Advancement Table: Difference between revisions

From Drifter's Wiki TEST
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 2: Line 2:


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

Revision as of 13:31, 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 = "temp text"
	count = tonumber(frame.args['count'])
	start = tonumber(frame.args['start'])
	
	return buffer
end

return p