Category: Miscellaneous
Addon Information
Download Latest Version.
To add favorites please register for a free account. If you already have one you need to login. How do I install this? (FAQ)
MoonWitch's Portal Bug Reports Feature Requests
Author:
Version:
0.5
Date:
09-19-2008 08:25 PM
Size:
4.04 Kb
Downloads:
803
Favorites:
8
MD5:
Pictures
Click to enlarge
mStats Tooltip and performance part
Click to enlarge
mStats tooltip and reputation watcher
mStats
To escape the repwatcher, you open mStats.toc in Notepad, put ## in front of repwatcher.lua

Install:
Simply unzip into your World of Warcraft\Interface\AddOns folder.

Configure:
There is no in game configuration, all options are within the lua file. The code is well commented to allow handy editing as well.

Credits:
Lyn for LynStats, which was my main inspiration.
P3lim, for pStats, for some good coding methods. Props to you man!
  Change Log - mStats
-- 0.5
- Added a centered reputation tracker for the watched faction. On hover over a tooltip will show all factions (with amount of rep to go).

-- 0.4
- Changed the look to a top bar, with a tooltip with extra info only on the performance part. (forgot to upload this though.)

-- 0.3
- Added font and fontsize to mStats.
- Changed the config just a little.
  Comments - mStats
Post A Reply Comment Options
Old 07-21-2008, 11:43 AM  
Caellian
A Chromatic Dragonspawn
 
Caellian's Avatar
Interface Author - Click to view interfaces

Forum posts: 163
File comments: 663
Uploads: 4
I did exactly what you said, it didn't return any error but it didn't do anything either

The display was still including Blizzard, no big deal really.
__________________


Quote:
if (sizeof(workload) > sizeof(brain_capacity)) { die('System Overload'); }
Caellian is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 07-20-2008, 04:11 AM  
MoonWitch
A Cliff Giant
Interface Author - Click to view interfaces

Forum posts: 70
File comments: 130
Uploads: 8
Quote:
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)

Quote:
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?
MoonWitch is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 07-19-2008, 01:35 PM  
Caellian
A Chromatic Dragonspawn
 
Caellian's Avatar
Interface Author - Click to view interfaces

Forum posts: 163
File comments: 663
Uploads: 4
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 :/
__________________


Quote:
if (sizeof(workload) > sizeof(brain_capacity)) { die('System Overload'); }

Last edited by Caellian : 07-19-2008 at 02:17 PM.
Caellian is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 07-19-2008, 09:12 AM  
MoonWitch
A Cliff Giant
Interface Author - Click to view interfaces

Forum posts: 70
File comments: 130
Uploads: 8
Quote:
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.
MoonWitch is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 07-16-2008, 06:29 PM  
Coldfury
A Deviate Faerie Dragon
Interface Author - Click to view interfaces

Forum posts: 17
File comments: 71
Uploads: 3
very nice moon
Coldfury is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 07-16-2008, 12:40 PM  
MoonWitch
A Cliff Giant
Interface Author - Click to view interfaces

Forum posts: 70
File comments: 130
Uploads: 8
Quote:
Originally posted by Kyron
I didn't try it yet, does the xp part autodisable itself once u are at max level ?
Yep, much credit to Lyn for that :P

@ Lyn,
Thanks, means a lot to me
for spam!
MoonWitch is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 07-16-2008, 12:22 PM  
eiszeit
A Fallenroot Satyr
 
eiszeit's Avatar
Interface Author - Click to view interfaces

Forum posts: 29
File comments: 200
Uploads: 9
looks sweet
__________________
IF HOME IS WHERE THE HEART IS... WHERE DO YOU GO WHEN YOU DON'T HAVE A HEART?
ALSO KNOWN AS: LYN
eiszeit is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 07-16-2008, 12:20 PM  
Caellian
A Chromatic Dragonspawn
 
Caellian's Avatar
Interface Author - Click to view interfaces

Forum posts: 163
File comments: 663
Uploads: 4
I didn't try it yet, does the xp part autodisable itself once u are at max level ?
__________________


Quote:
if (sizeof(workload) > sizeof(brain_capacity)) { die('System Overload'); }
Caellian is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 07-16-2008, 06:59 AM  
MoonWitch
A Cliff Giant
Interface Author - Click to view interfaces

Forum posts: 70
File comments: 130
Uploads: 8
Quote:
Originally posted by nodq
Thanks for this Addon, how to scale it actually? Cant see any option for it in the lua, or am i blind? Cant read it, so tiny
It's because I use GameFontNormalSmall as inheritted font, but I'll fix that right now. I'll add a fontsize to it (and a way to choose a font as well)

Edit: Fixed, the config now allows for font changes and size changes. Just waiting for approval of the uploaded zip

Last edited by MoonWitch : 07-16-2008 at 07:09 AM.
MoonWitch is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 07-16-2008, 05:25 AM  
nodq
A Kobold Labourer
 
nodq's Avatar

Forum posts: 0
File comments: 106
Uploads: 0
Thanks for this Addon, how to scale it actually? Cant see any option for it in the lua, or am i blind? Cant read it, so tiny
nodq is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 07-15-2008, 11:15 PM  
MoonWitch
A Cliff Giant
Interface Author - Click to view interfaces

Forum posts: 70
File comments: 130
Uploads: 8
Quote:
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
Now that *is* an awesome idea!
MoonWitch is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 07-15-2008, 02:22 PM  
p3lim
A Molten Giant
 
p3lim's Avatar
Interface Author - Click to view interfaces

Forum posts: 558
File comments: 838
Uploads: 19
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
p3lim is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Post A Reply



Category Jump:




The Network:
EQInterface | EQ2Interface | LoTROInterface | MMOInterface | War.MMOUI | WoWInterface | VGInterface | Allakhazam | Thottbot | Wowhead | Zam


©2009 MMOUI / ZAM Network
vBulletin - Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.