Module:CurrentNOISZSLEvent

From NOISZ Wiki
Revision as of 09:10, 10 December 2025 by RiceEmpress (talk | contribs) (testing out conversion of timer modules to lua)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

This module is meant to be used with EventCycleTime as an input; that module inputs how many seconds we are into a 10-week event cycle to determine which event is currently running, as it's the same order: LUNATIC MAINFRAME -> Attitude Mint -> Blue Moon -> BLACK CAT BLASTER -> NUCLEAR DRIP. This returns a string that contains all information about the current event, in lieu of a table.


local capiunto = require 'capiunto'
local p = {}

function p.main(frame)

local args = frame:getParent().args
local eventCycleTime = args.eventCycleTime 

return eventCycleTime
end

return p