This site works best with JavaScript enabled. Please enable JavaScript to get the best experience from this site.
background:
i have my xloot aligned to the left border of the screen.
when i have over 10.000 of a specific item, its impossible to read the actual amount.
(there are specific items that you can easily farm over 100k of)
you can fix it very easily:
in xloot_monitor/monitor.lua
after the bracket with:
if not opt.show_totals or not total or total <= 1 then total = ''(at line 264+) insert: elseif total > 9999 then total= math.floor(total/1000) total= tostring(total)..'k'
To post a comment, please login or register a new account.