Main public logs
Appearance
Combined display of all available logs of CrabCraft Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 22:42, 20 June 2025 Max talk contribs created page Module:MCHead (Created page with "local p = {} local http = mw.http local json = mw.text.jsonDecode function p.render(frame) local username = frame.args[1] or "Steve" -- Call Mojang API local res = http.fetch("https://api.mojang.com/users/profiles/minecraft/" .. username) if not res or res.status ~= 200 then return "Username not found" end local data = json(res.body) if not data or not data.id then return "Invalid response" end local uuid = dat...")