All public logs

From The Blockheads Wiki

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

Logs
  • 12:40, 29 October 2024 FloofyPlasma talk contribs created page Module:PriceServer (Created page with "local Prices = {} local function fetchPrices() local apiUrl = "http://priceserver.theblockheads.net/get_prices.php" local response, code = mw.http.get(apiUrl) if code ~= 200 then return nil, "Error retrieving prices " .. tostring(code) end -- Parse the response local json = require('json') return json.decode(response) end function Prices.getPrice(id) local pricesData, err = fetchPrices() if err then return err end if pricesData th...")