Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

All public logs

More actions

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

Logs
  • 23:14, 25 May 2025 Gpe talk contribs created page Module:Int (Created page with "local p = {} function p.main(frame) local input = frame.args[1] or '' -- Strip wiki formatting input = mw.ustring.gsub(input, "'''''", "") -- bold+italic input = mw.ustring.gsub(input, "'''", "") -- bold input = mw.ustring.gsub(input, "''", "") -- italic -- Attempt to parse as number local num = tonumber(input) if num then return math.floor(num + 0.5) else return 0 -- default fallback end end return p")