Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:Sandbox/Soreness

From Growtopia Wiki
Revision as of 11:26, 27 April 2022 by Sorenesss (talk | contribs)

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

local p = {}

function table.clone(org)
  return {table.unpack(org)}
end

function p.ListRaritys()
	local s = {}
	for i=363, 364, 1
	do
		local copy = {}
		copy = table.clone("[".."[Category:Rarity "..i.."]]") 
		if not copy == nil then
			table.insert(s,"'''Rarity "..i..":'''<br>")
			--
			while not next(copy) == nil
			do
				table.insert(s, next(copy))
			end
			--
		end
	end
	return table.concat(s);
end

return p