Category: Data Mods
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)
ObbleYeah's Portal Bug Reports Feature Requests
Author:
Version:
1.6.3
Date:
02-08-2009 08:14 AM
Size:
2.23 Kb
Downloads:
21,930
Favorites:
138
MD5:
Pictures
Click to enlarge
LynStats   Popular! (More than 5000 hits)
theoretically it works with 3.1 (and following patches)


EDITORIAL STUFF
--

BEWARE: LynStats has an easy Lua configuration, just look in the core.lua and edit it to your needs.

it was once an old version of cml, then a revised version with some additions, but it still need the ace libs. now, i did a rewrite (with the help of my longtime favourite addon evl_clock) without these ace libs.

what it does is to show some information in a small text line. visible in this small text line is:

- clock
- xp needed till level up
- xp% completed for level
- rested xp%

it also adds a tooltip which shows you a list of used addons incl. memory usage (you can define how many addons are shown in .lua config) and also fps and latency.


Please send me a PM if you use it in an UI which you want to publish. Also if you modify (like adding bag information) it as your needs and using it, you still are not allowed to rename it (like i.e. ololstatswhatever).

GETTING BACK THE OLD LOOK
--

for the old look (fps, latency, etc in one line) you just have to delete the --[[ and --]] inside the .lua file and put the variables inside the text string.

Code:
-- the magic!
text:SetText(ep..ticktack)
to, if you want fps latency AND mail back

Code:
-- the magic!
text:SetText(fps..lag..mail..ep..ticktack)
  Change Log - LynStats
1.6.3
- changed the look totally.

1.6.2
- added frame name again. accidentally deleted it.

1.6.1
- some small changes in code, nothing special
- wotlk beta rdy

1.5.1
- added old memory display (default state: false)
- frame has now a name

1.5
- behind the xp display there's now a "R" for rested
- changed config a little
- other stuff i don't know atm

1.4.1
- frame width

1.4
- outline
- bumped toc

1.3
- changed 70 to MAX_PLAYER_LEVEL
- you can choose between own or class color, just change comment
- usage increase of lynstats changed
- you can choose time format (12 [w/o pm/am] or 24), just set true/false

1.2.2
- changed formating for total usage

1.2.1
- fixed bug

1.2
- addon tooltip

1.1
- latency, mb usage, fps, xp left, mail indicator and time
  Optional Files - LynStats
File Name
Version
Size
Author
Date
Type
1.3
3kB
08-14-2008 01:24 PM
Addon
r5
2kB
06-27-2008 03:46 PM
Addon
  Comments - LynStats
Post A Reply Comment Options
Old 11-27-2008, 08:17 AM  
duhwhat
An Aku'mai Servant

Forum posts: 35
File comments: 150
Uploads: 0
Quote:
Originally posted by duhwhat
got weird behavior of the mail icon when comparing two characters. with one, the new mail icon disappears very reliably after checking my mail, with the other one, the new mail icon stays for sometimes up to 30 minutes after checking mail. i always empty and delete items in my mail box. any ideas? i didn't find any trace of lynstats in the WTF folder for either char.
any idea what i could try to troubleshoot this?
duhwhat is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 11-20-2008, 10:45 AM  
eiszeit
A Fallenroot Satyr
 
eiszeit's Avatar
Interface Author - Click to view interfaces

Forum posts: 29
File comments: 200
Uploads: 9
Quote:
Originally posted by Alkar
Ever get around to doin a durabillity addon to lynstats? would really love to see this
tekability > *
__________________
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 11-19-2008, 04:22 PM  
Alkar
A Chromatic Dragonspawn
 
Alkar's Avatar
Interface Author - Click to view interfaces

Forum posts: 194
File comments: 143
Uploads: 4
Ever get around to doin a durabillity addon to lynstats? would really love to see this
Alkar is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 11-06-2008, 11:41 AM  
eiszeit
A Fallenroot Satyr
 
eiszeit's Avatar
Interface Author - Click to view interfaces

Forum posts: 29
File comments: 200
Uploads: 9
Quote:
Originally posted by comstuff234
How do I move it around. It is stuck half way in the fubar panel at the top.

I have tried all the alt, ctrl, shift clicks. Any tips
read the information on the addon page. second last line.
__________________
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 11-06-2008, 11:12 AM  
comstuff234
A Defias Bandit

Forum posts: 2
File comments: 12
Uploads: 0
How do I move it around. It is stuck half way in the fubar panel at the top.

I have tried all the alt, ctrl, shift clicks. Any tips
comstuff234 is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 11-02-2008, 12:51 PM  
lihaug
A Defias Bandit

Forum posts: 3
File comments: 8
Uploads: 0
/facepalm

When it's 5am in the morning I should just stop trying.
lihaug is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 11-02-2008, 11:37 AM  
eiszeit
A Fallenroot Satyr
 
eiszeit's Avatar
Interface Author - Click to view interfaces

Forum posts: 29
File comments: 200
Uploads: 9
Quote:
Originally posted by lihaug
Hey. I implemented binds garbage collect code into lynstats. Since I have no clue about programming whatsoever I'm struggling with changing the code to only trigger garbage collection on right click.

This was my try :>
Code:
self:SetScript("OnClick", function(self, button)
		if (button == "RightButton") then
			CleanMem() 
		end
	end
)
LynStats already have on click garbage cleaning. And good luck for right click.
__________________
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 11-02-2008, 12:40 AM  
lihaug
A Defias Bandit

Forum posts: 3
File comments: 8
Uploads: 0
Hey. I implemented binds garbage collect code into lynstats. Since I have no clue about programming whatsoever I'm struggling with changing the code to only trigger garbage collection on right click.

This was my try :>
Code:
self:SetScript("OnClick", function(self, button)
		if (button == "RightButton") then
			CleanMem() 
		end
	end
)
lihaug is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 10-26-2008, 09:56 AM  
duhwhat
An Aku'mai Servant

Forum posts: 35
File comments: 150
Uploads: 0
got weird behavior of the mail icon when comparing two characters. with one, the new mail icon disappears very reliably after checking my mail, with the other one, the new mail icon stays for sometimes up to 30 minutes after checking mail. i always empty and delete items in my mail box. any ideas? i didn't find any trace of lynstats in the WTF folder for either char.
duhwhat is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 10-19-2008, 10:12 PM  
Joanna
A Defias Bandit

Forum posts: 2
File comments: 5
Uploads: 0
Many thanks. That will teach me to read more thoroughly in future!

Back with a new query...

Code:
 hour, minute = GetGameTime()
(hour and minute are both correctly added to the list of locals)
The problem is that between 1 and 9 minutes past the hour (five after three for example) I get odd displays -> 15.5 in that example. Is there any way to reattach the leading 0? Sorry to keep bugging you.

Many thanks.

EDIT - Sorry for the spam. Fixed it myself and posting here in case anyone else ever wants to do the same thing...

after adding a new variable 'minutestring' to the list of defined locals:
Code:
		if show_time == true then
			hour, minute = GetGameTime()
			if minute < 10 then
			   minutestring = "0"..minute
			else minutestring = minute
			end
			if time24 == true then
				ticktack = date("%H.%M")
			else
				ticktack = date("%I.%M")
			end
			ticktack = "|c00ffffff"..ticktack.."  ".."|r"..hour.."."..minutestring
		else
			ticktack = ""
		end
does exactly what I want. Thanks again for such a super lightweight addon!

Last edited by Joanna : 10-21-2008 at 09:38 AM.
Joanna is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 10-19-2008, 02:24 PM  
eiszeit
A Fallenroot Satyr
 
eiszeit's Avatar
Interface Author - Click to view interfaces

Forum posts: 29
File comments: 200
Uploads: 9
Quote:
Originally posted by Joanna
Hey Lyn, thankyou for this and LynLocation!

I tried (and failed) to add a Server Time display to the text string from LynStats since unless I have both displayed somewhere I end up getting completely confused between local/server time. I don't suppose there's a quick way to do it?

Thanks for the addon again, and feel free to rage at me if this is an idiotic or inappriopriate question <3
somewhere in the comments the code for this is already posted. you just have to search it
__________________
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 10-19-2008, 12:15 PM  
Joanna
A Defias Bandit

Forum posts: 2
File comments: 5
Uploads: 0
Hey Lyn, thankyou for this and LynLocation!

I tried (and failed) to add a Server Time display to the text string from LynStats since unless I have both displayed somewhere I end up getting completely confused between local/server time. I don't suppose there's a quick way to do it?

Thanks for the addon again, and feel free to rage at me if this is an idiotic or inappriopriate question <3
Joanna is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 10-15-2008, 09:01 PM  
blackpandemic
A Flamescale Wyrmkin
 
blackpandemic's Avatar

Forum posts: 123
File comments: 118
Uploads: 2
Re: Re: lynsettings

Quote:
Originally posted by eiszeit
lynsettings: no
lynui: maybe, currently, no.
This makes me a sad panda. Love your UI! <3
__________________
"It is forbidden to kill; therefore all murderers are punished unless they kill in large numbers and to the sound of trumpets." -Voltaire
blackpandemic is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 10-15-2008, 04:40 PM  
eiszeit
A Fallenroot Satyr
 
eiszeit's Avatar
Interface Author - Click to view interfaces

Forum posts: 29
File comments: 200
Uploads: 9
Re: Re: Re: lynsettings

Quote:
Originally posted by duhwhat
Have you gone back to rMiniMap etc for patch 3.0 in your UI? Any suggestions for trying to replicate the new functions of lynsettings? It took over a lot of duties going from LynUI 6 to LynUI 7.
no i dont use rminimap.

and don't ask lyn ui things on this site.
__________________
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 10-15-2008, 03:40 PM  
duhwhat
An Aku'mai Servant

Forum posts: 35
File comments: 150
Uploads: 0
Re: Re: lynsettings

Quote:
Originally posted by eiszeit
lynsettings: no
lynui: maybe, currently, no.
Have you gone back to rMiniMap etc for patch 3.0 in your UI? Any suggestions for trying to replicate the new functions of lynsettings? It took over a lot of duties going from LynUI 6 to LynUI 7.
duhwhat is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Post A Reply



Category Jump:

Support AddOn Development!

You have just downloaded by the author . If you like this AddOn why not consider supporting the author? This author has set up a donation account. Donations ensure that authors can continue to develop useful tools for everyone.




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.