All public logs

Combined display of all available logs of RuneRealm Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 00:12, 17 October 2024 Alex talk contribs created page Module:GEMW/Most expensive (Created page with "--<nowiki> local arr = require("Module:Array") local Coins = require("Module:Coins")._amount local ExchangeData = require("Module:ExchangeData") local p = {} function p.items(num) local prices = mw.loadJsonData("Module:GEPrices/data.json") local prices_a = {} for k, v in pairs(prices) do if string.sub(k, 1, 1) ~= '%' then table.insert(prices_a, {item=k, price=v or -1}) end end table.sort(prices_a, function(a, b) return a.price > b.price end) return arr.slic...")