메뉴 여닫기
개인 메뉴 토글
로그인하지 않음
만약 지금 편집한다면 당신의 IP 주소가 공개될 수 있습니다.

모듈:SortPlayer

이터널리턴 이스포츠 위키
Mongsil (토론 | 기여)님의 2024년 12월 5일 (목) 10:34 판 (새 문서: local p = {} function p.sortCategory(frame) local category = "분류:선수" local categoryPages = mw.site.categories[category] local result = {} -- 분류에서 문서 이름 가져오기 for page in categoryPages:members() do local title = page.title local prize = mw.title.new(title):getContentValue("TotalPrize") or 0 table.insert(result, {name = title, prize = tonumber(prize)}) end -- 상금 기준으로 정렬 ta...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

이 모듈에 대한 설명문서는 모듈:SortPlayer/설명문서에서 만들 수 있습니다

local p = {}

function p.sortCategory(frame)
    local category = "분류:선수"
    local categoryPages = mw.site.categories[category]
    local result = {}
    
    -- 분류에서 문서 이름 가져오기
    for page in categoryPages:members() do
        local title = page.title
        local prize = mw.title.new(title):getContentValue("TotalPrize") or 0
        table.insert(result, {name = title, prize = tonumber(prize)})
    end

    -- 상금 기준으로 정렬
    table.sort(result, function(a, b) return a.prize > b.prize end)

    -- 결과 출력
    local output = {}
    for _, player in ipairs(result) do
        table.insert(output, string.format("* [[%s]] - 총 상금: %d", player.name, player.prize))
    end

    return table.concat(output, "\n")
end

return p