Module:Role Advancement Table

From Drifter's Wiki TEST
Revision as of 11:38, 29 October 2022 by Archer (talk | contribs) (Archer moved page Module:Role Advancement Rows to Module:Role Advancement Table without leaving a redirect: More accurate name)
Jump to navigation Jump to search

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

local p = {} -- p stands for package

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

return p