Module:Accreditation: Difference between revisions

From MassiveCraft Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 15: Line 15:
for i in string.gmatch(writers, "%S+") do
for i in string.gmatch(writers, "%S+") do
  w[x] = i
  return(i)
  x=x+1;
  return(w[x] .. "Test")
end
end

Revision as of 18:45, 26 August 2015

Documentation for this module may be created at Module:Accreditation/doc

local p = {}

writers = ""
artists = ""
processors = ""

function p.info(frame)
	
	writers=frame.args.Writers
	artists=frame.args.Artists
	processors=frame.args.Processors
	
	local w = {}
	local x = 0;
	
		for i in string.gmatch(writers, "%S+") do
		  return(i)
		end
		
end

return p