Module:AUAssembly

From EarthMC
Revision as of 18:26, 7 October 2023 by upgradewastaken (talk | contribs)
Jump to navigation Jump to search

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

local p = {} --p stands for package
local players = {"iUpgrade","Dools2"}
local text = ""

function p.table( frame )
    text = "{|"
    table.sort(players)
    for i, v in ipairs(players) do
        text = text.."\n| "..v
    end
    return text
end

return p