模块:EquipmentInfoList:修订间差异

来自70DNF
跳转到导航 跳转到搜索
AdminAPT留言 | 贡献
无编辑摘要
AdminAPT留言 | 贡献
无编辑摘要
 
第2行: 第2行:


function p.list(frame)
function p.list(frame)
     res_table = {}
     res_table = {}
 
     table.insert(res_table, '123456' )
     table.insert(res_table, string.format('123456' ))
   
    -- table.insert(res_table, )
    -- table.insert(res_table, string.format('!style="width:1.5em;"|%s!!可兑换道具!!style="width:5.0em;"|库存!!style="width:6.0em;"|单价\n', selectall_str))
     return table.concat(res_table)
     return table.concat(res_table)
end
end


return p
return p

2025年12月22日 (一) 06:42的最新版本

此模块的文档可以在模块:EquipmentInfoList/doc创建

local p = {}

function p.list(frame)
    res_table = {}
    table.insert(res_table, '123456' )
    return table.concat(res_table)
end

return p