League of Legends Wiki
Registrieren
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 1: Zeile 1:
 
local p = {}
 
local p = {}
  +
 
function p.main(frame)
 
function p.main(frame)
 
local gProEinheit,gItem = {},{}
 
local gProEinheit,gItem = {},{}
Zeile 16: Zeile 17:
 
 
 
return gesamt
 
return gesamt
end
 
 
function table.val_to_str ( v )
 
if "string" == type( v ) then
 
v = string.gsub( v, "\n", "\\n" )
 
if string.match( string.gsub(v,"[^'\"]",""), '^"+$' ) then
 
return "'" .. v .. "'"
 
end
 
return '"' .. string.gsub(v,'"', '\\"' ) .. '"'
 
else
 
return "table" == type( v ) and table.tostring( v ) or
 
tostring( v )
 
end
 
end
 
 
function table.key_to_str ( k )
 
if "string" == type( k ) and string.match( k, "^[_%a][_%a%d]*$" ) then
 
return k
 
else
 
return "[" .. table.val_to_str( k ) .. "]"
 
end
 
end
 
 
function table.tostring( tbl )
 
local result, done = {}, {}
 
for k, v in ipairs( tbl ) do
 
table.insert( result, table.val_to_str( v ) )
 
done[ k ] = true
 
end
 
for k, v in pairs( tbl ) do
 
if not done[ k ] then
 
table.insert( result,
 
table.key_to_str( k ) .. "=" .. table.val_to_str( v ) )
 
end
 
end
 
return "{" .. table.concat( result, "," ) .. "}"
 
 
end
 
end
   

Version vom 3. Januar 2020, 12:47 Uhr

Die Dokumentation für dieses Modul kann unter Modul:Goldwert/Doku erstellt werden

local p = {}

function p.main(frame)
    local gProEinheit,gItem = {},{}
    for value in string.gmatch(frame.args[1], "([^;]+)") do
        table.insert(gProEinheit, value)
    end
    for value in string.gmatch(frame.args[2], "([^;]+)") do
        table.insert(gItem, value)
    end
    
    local gesamt = 0
    
    for i=1,#gItem - 1 do
        gesamt = gesamt + tonumber(gProEinheit[i]) * tonumber(gItem[i])
    end
    
    return gesamt
end

return p