Módulo:TradesBuy
De Bloodstone Portal
local p = {}
function p.add(frame)
local args = frame.args local output = ""
for i = 1, #args, 3 do
if args[i] and args[i+1] and args[i+2] then
output = output .. "|-\n| " .. args[i] .. " || " .. args[i+1] .. " || " .. args[i+2] .. "\n"
end
end
return output
end
return p
