Originally posted by Kyron This is only a personal request, if you don't like it just ignore it.
There are so many stats addons available but none displaying the amount of friends/guild members online. Of course there is statblock with and without s, fubar and what not but that would mean install a whole thing just for one more feature. do you think it would be possible ?
I'll see what I can do. I've tried this in the past though, and it never did seem accurate. I am working on changing this addon a lot more than I planned on to add a reputation bar, I'll see if I can slide that in too. But it will take time, since this would mean using different frames, as opposed to one (so the tooltip with extra info doesn't turn into a wall of text)
Originally posted by Kyron
Edit: what do i change to make it display the mem usage without blizzard addon instead of with, i've tried to find out but :/
Well, then you'd have to move the FormatMemory function a lot higher up in the stats.lua. (Above the onUpdate function). Then you replace the following line in onUpdate()
Code:
mem = format('%.2fMiB', gcinfo() / 1024)
with
Code:
blizzard_memory = collectgarbage("count")
mem = FormatMemory(blizzard_memory)
It's a drycode, it could be that it doesn't work. Just let me know ok?
This is only a personal request, if you don't like it just ignore it.
There are so many stats addons available but none displaying the amount of friends/guild members online. Of course there is statblock with and without s, fubar and what not but that would mean install a whole thing just for one more feature. do you think it would be possible ?
Edit: what do i change to make it display the mem usage without blizzard addon instead of with, i've tried to find out but :/
__________________
if (sizeof(workload) > sizeof(brain_capacity)) { die('System Overload'); }
Originally posted by p3lim may I suggest for the rep bar, to just have the name of the reputation tracked on the stats "bar" colored by standing (hostile = red, exalted = lt.blue) and give a more detailed information in a tooltip
Currently working on that, though I am running into some minor issues. Like needing a seperate frame to show the exact amount of rep, OR I shove it into the memory tooltip.
Originally posted by p3lim may I suggest for the rep bar, to just have the name of the reputation tracked on the stats "bar" colored by standing (hostile = red, exalted = lt.blue) and give a more detailed information in a tooltip
may I suggest for the rep bar, to just have the name of the reputation tracked on the stats "bar" colored by standing (hostile = red, exalted = lt.blue) and give a more detailed information in a tooltip