Main public logs
More actions
Combined display of all available logs of Kenshi Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 20:33, 26 May 2025 Prd talk contribs created page Module:Price (Created page with "local p = {} local price_data = mw.loadData( 'Module:Price/data' ) function p.main( frame ) local name = frame.args[1] local grade = frame.args[2] if name == nil or grade == nil then return "Missing data" end local item = price_data[name] if item == nil then return "Missing data" end return item[grade] or "Missing data" end return p ")