All public logs

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

Logs
  • 20:31, 22 February 2024 Tacotuttle talk contribs created page Module:Arguments (Tacotuttle) (Created page with "-- Copyright (c) 2022-2023 Hypixel, Inc. local getArgs = require("Module:Arguments").getArgs local p = {} local rowIds = {"A", "B", "C", "D", "E", "F", "G", "H"} function humanize(str) str = str:gsub("_", " ") local words = mw.text.split(str, " ") for i,v in pairs(words) do words[i] = v:sub(1,1):upper() .. v:sub(2) end return table.concat(words, " ") end function decodeColor(str) str = str:gsub("%&a", "green") str = str:gsub("%&b",...")