Results: 3Comments by: ettavolt
File: Map Pins02/02/19
Some more points for 'A Book and It...
Posted By: ettavolt
Some more points for 'A Book and Its Cover'. I haven't seen the pair at these points, but someone else may be more lucky. https://rg.ettavolt.nl/ftp/public/eso64%202019-02-02%2011-20-52-43.png https://rg.ettavolt.nl/ftp/public/eso64%202019-02-02%2011-30-57-19.png
File: Slightly Improved™ Gameplay10/20/16
Item Style tooltip shows style from...
Posted By: ettavolt
Item Style tooltip shows style from previous item hovered. That's how it can be fixed (note, that SafeAddString is always called): LibHookTooltip:RegisterPreHook("SlightlyImprovedGameplay", function(tooltip, link) local styleText = "" if savedVars.improveItemTooltip then local itemType = GetItemL...
File: ChatStamp04/18/15
24h with seconds appends 'AM'. Gam...
Posted By: ettavolt
24h with seconds appends 'AM'. Game-provided time formatter is really bad. Here is how formatting should be done reliably: if channelInfo and channelInfo.format then local time = GetSecondsSinceMidnight(); local secsDigits = time % 60; time = (time - secsDigits) / 60; local minutesDigits = time % 60; time = (tim...