Module:AUAssembly: Difference between revisions

From EarthMC
Jump to navigation Jump to search
No edit summary
mNo edit summary
 
(7 intermediate revisions by the same user not shown)
Line 4: Line 4:


function p.table( frame )
function p.table( frame )
     text = "{|"
     text = "{| class='wikitable' style='text-align:left;'\n|+ List of MPs in the AU Assembly\n| colspan='12' style='text-align:center' |[[File:AU Assembly.png|540px]]\n|-"
     table.sort(players)
     table.sort(players)
     for i, v in ipairs(players) do
     for i, v in ipairs(players) do
         text = text.."\n| "..v
         text = text.."\n|[[File:"..v..".png|20px]] [[Aurora:"..v.."|"..v.."]]"
     end
     end
    text = text.."\n|}"
     return text
     return text
end
end


return p
return p

Latest revision as of 20:04, 7 October 2023

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

Script error: Lua error: Internal error: The interpreter exited with status 126.

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

function p.table( frame )
    text = "{| class='wikitable' style='text-align:left;'\n|+ List of MPs in the AU Assembly\n| colspan='12' style='text-align:center' |[[File:AU Assembly.png|540px]]\n|-"
    table.sort(players)
    for i, v in ipairs(players) do
        text = text.."\n|[[File:"..v..".png|20px]] [[Aurora:"..v.."|"..v.."]]"
    end
    text = text.."\n|}"
    return text
end

return p