打开主菜单
首页
随机
登录
设置
关于Arcaea中文维基
免责声明
搜索
查看“Module:Songlist Retrieval”的源代码
←
Module:Songlist Retrieval
因为以下原因,您没有权限编辑本页:
您请求的操作仅限属于该用户组的用户执行:
用户
您可以查看和复制此页面的源代码。
local p = {} function p.retrieval(frame) local list=require("Module:Songlist") for i=1,250 do if list['songs'][i]==nil then break end local s=tostring(list['songs'][i]['title_localized']['en']) list['songs'][s]=list['songs'][i] end local object=frame.args.object local object2=frame.args.object2 local object3=frame.args.object3 local title=frame.args.title if list['songs'][title]==nil then return frame:expandTemplate{ title = 'error', args = { 'Nodata' } } end if object2 then if object3 then return tostring(list['songs'][title][object][tonumber(object2)][object3]) else return tostring(list['songs'][title][object][object2]) end else return tostring(list['songs'][title][object]) end end return p
本页使用的模板:
Module:Songlist Retrieval/doc
(
查看源代码
)
返回
Module:Songlist Retrieval
。