打开主菜单

Ballance Wiki β

更改

模块:Standings

删除818字节2022年12月11日 (日) 23:59
无编辑摘要
local highest = nil
local wikitable_str = '{| class="wikitable" style="display: inline-block; vertical-align: top"\n'
if args[2]:len() == 2 then title = '关卡 ' .. args[2] else title = args[2] end wikitable_str = wikitable_str .. '|+ <h3> 关卡 ' .. args[2] title .. '</h3>\n'
wikitable_str = wikitable_str .. '! 名次 !! 分数 !! 纪录持有者 !! 视频链接\n'
while next(score_limits) do
wikitable_str = wikitable_str .. get_score_limit_str(nil, score_limits)
end
wikitable_str = wikitable_str .. '|}\n'
mw.log(wikitable_str)
return wikitable_str
end
 
function p.historical_WRs(frame)
local args = frame.args[1] and frame.args or frame:getParent().args;
local records = select_WR(get_records(), args[1], args[2])
local wikitable_str = '{| class="wikitable" style="display: inline-block; vertical-align: top"\n'
wikitable_str = wikitable_str .. '|+ <h3> 关卡 ' .. args[2] .. '</h3>\n'
wikitable_str = wikitable_str .. '! 时间 !! 纪录分数 !! 纪录持有者 !! 视频链接\n'
for key, record in ipairs(records) do
wikitable_str = wikitable_str .. '|-\n'
wikitable_str = wikitable_str .. '|' .. record[date_col]
wikitable_str = wikitable_str .. '||' .. record[score_col]
wikitable_str = wikitable_str .. '||' .. record[name_col]
wikitable_str = wikitable_str .. '||' .. record[video_col]
wikitable_str = wikitable_str .. '\n'
end
wikitable_str = wikitable_str .. '|}\n'
556
个编辑