These days I mostly login just to do the event so I don’t regret not getting the mint cupcake hat in case things improve and/or I ever feel like playing a lot again, so I may as well try to get the Happy-Go-Lucky title for all of my alts while I’m at it. It bothered me that there’s a limited time title available that you can only get through RNG… until now!
Technical explanation:
When the event starts, the game stores the random number it generates in the account object. There’s a client-side function that lets you retrieve this account object, so I thought doing that and printing out this value might work. Looks like it does!
if aObj.DailyTimePoint == 0 then
local rand = IMCRandom(1, 10)
local tx = TxBegin(pc)
TxSetIESProp(tx, aObj, 'DailyTimePoint', rand)
TxSetIESProp(tx, aObj, 'DailyTime_ResetTime', 0)
local ret = TxCommit(tx)
end
Just install Developer Console from addon manager and run this line of code like shown in the video.
local aobj = GetMyAccountObj(); print(aobj.DailyTimePoint);
imc please fix! Keep this value server-side only. 


