다른 명령
이 모듈에 대한 설명문서는 모듈:SortPlayer/설명문서에서 만들 수 있습니다
local p = {}
function p.sortCategory(frame)
-- DPL3 템플릿 호출
local dplResult = frame:expandTemplate{
title = "DynamicPageList3",
args = {
category = "선수", -- 분류 이름
namespace = "Main", -- 주 네임스페이스만 가져오기
addpagevariables = "true", -- 문서 변수 가져오기 활성화
includepage = "{Prize}" -- Prize 값을 포함
}
}
if not dplResult then
return "DPL3 결과를 가져오지 못했습니다."
end
-- 결과를 한 줄씩 처리
local result = {}
for line in dplResult:gmatch("[^\n]+") do
local title, content = line:match("%[%[(.-)%]%]:(.+)")
if title and content then
-- Prize 값 추출 및 계산
local totalPrize = 0
for prize in content:gmatch("{{Prize|([%d,]+)}}") do
local number = tonumber((prize:gsub(",", "")))
if number then
totalPrize = totalPrize + number
end
end
-- 결과 저장
table.insert(result, {name = title, prize = totalPrize})
end
end
-- 총상금 기준으로 정렬
table.sort(result, function(a, b) return a.prize > b.prize end)
-- 결과 출력
local output = {}
table.insert(output, "!총상금")
for _, player in ipairs(result) do
table.insert(output, string.format("| [[%s]]: ₩%s", player.name, mw.language.getContentLanguage():formatNum(player.prize)))
end
return table.concat(output, "\n")
end
return p