All public logs

Jump to navigation Jump to search

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

Logs
  • 09:06, 31 May 2023 Crimsongaia talk contribs created page Module:InputBadge (Created page with "local p = {} function p.drawInputBadge(frame) local wikitext = "" local numInputs = count(frame.args[1], '\\') + 1 local index = 1 for token in string.gmatch(frame.args[1], '([^\\]+)') do input = token wikitext = wikitext .. "<span class=\"input-badge\"><b\>" .. input .. "</b></span>" if index ~= numInputs then wikitext = wikitext .. " or " end index = index + 1 end return wikitext end function count(base, pattern) retu...")