Module:CurrentNOISZSLEvent
From NOISZ Wiki
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