2023-10-18 05:28
#0
In EC, there's an old post here that illustrates how to get the artifact splash notification when you get a drop (like the event drops).
If you modify textparsing.lua TextParsing.CenterScreenText() as below, you'll also get a logged message about what your luck was at the time of the drop (enable timestamps in the EC log if you want to have the time logged too).
In case you need to provide that info in reply to broadsword inquiries, etc 🙂
if ( textID == 1152340 ) then -- a reward item has been placed in your backpack. (catches feudal drops).
CenterScreenText.SendCenterScreenTexture("artifact")
Debug.PrintToChat(L"Luck at time of artifact drop: ".. towstring(WindowData.PlayerStatus["Luck"]))
return
end