Anonymous
×
Create a new article
Write your page title here:
We currently have 497 articles on WIKI - Idle Pixel. Type your article name above or click on one of the titles below and start writing!



WIKI - Idle Pixel

Module:Util: Revision history

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.

14 April 2024

30 November 2023

  • curprev 09:1009:10, 30 November 2023Dounford talk contribs 2,108 bytes +2,108 Created page with "local p = {} function p.d(time) if not time or time == 0 or time == '' then return '' end result = '' seconds = tonumber(time) % 60 if seconds == 1 then result = '1 second' elseif seconds ~= 0 then result = seconds .. ' seconds' end time = (time - time % 60) / 60 minutes = time % 60 if result:len() and minutes ~= 0 then result = ' ' .. result end if minutes == 1 then result = '1 min..."