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

Module:Counter: Revision history

From Teriock

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

31 March 2025

  • curprev 22:5422:54, 31 March 2025Gpe talk contribs 334 bytes +334 Created page with "local p = {} -- Table to hold multiple counters if needed local counters = {} function p.increment(frame) local name = frame.args[1] or "default" counters[name] = (counters[name] or 0) + 1 return counters[name] end function p.reset(frame) local name = frame.args[1] or "default" counters[name] = 0 end return p"