Download
(60Kb)
Download
Updated: 06-24-09 07:37 PM
Pictures
File Info
Updated:06-24-09 07:37 PM
Created:05-02-09 02:42 PM
Downloads:6,775
Favorites:31
MD5:

atrUF  Popular! (More than 5000 hits)

Version: 1.0.5
by: Atrophia [More]

A minimalist standalone unitFrames addon.

If you want to configure it you will need to know how to edit the .lua
I have no problem with anyone doing that, but due to time constraints I'm highly unlikely to be able to offer much help in you doing it.

Goes well with atrCastbars.

Features:

  • Player, target, target of target, focus and focus target frames.
  • Debuffs colouring: Magic, disease, poison etc.
  • Threat warnings: Healthbars subtedly alter colour based on that frames threat with its target.
  • Cancelable player buffs.
  • OmniCC style timers.
  • Tooltips for auras and frames.

Coming Soon:
  • Party, Raid, Pet Frames
  • Aura Sorting
  • Range indicators

1.0.5
  • Added raid icons.
  • One or two tweaks made to work with updated atrCore.
  • Probably more that I've forgotten about.

1.0.4
  • Consolidated some functionality into atrCore.
  • Readded OmniCC style timers while keeping it light.
  • Blizzard frames for the supported units are hidden automatically.
  • Made a few cosmetic tweaks.

1.0.2
  • Additional code cleanup, easier to maintain.
  • Tooltips added for auras and frames.
  • Player buffs can now be cancelled via right click.
  • Fixed a bug with not updating targets.

1.0.1
  • Rewrote event handling, much more efficient now.
  • Deliberatly removed numerous functionality temporarily to test performance.

1.0.0
  • Initial release
Post A Reply Comment Options
Unread 03-03-10, 06:59 AM  
Letis
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
I cannot understand as to include target of target, prompt where in lua I can include this option?
Report comment to moderator  
Reply With Quote
Unread 12-18-09, 09:27 PM  
Minerv
A Black Drake
 
Minerv's Avatar
AddOn Compiler - Click to view compilations

Forum posts: 89
File comments: 31
Uploads: 2
gief

please gief an updated version! for all your works
Last edited by Minerv : 12-18-09 at 09:27 PM.
Report comment to moderator  
Reply With Quote
Unread 11-13-09, 09:36 PM  
Coldblooded
A Deviate Faerie Dragon

Forum posts: 13
File comments: 67
Uploads: 0
Man i cant belive that i have missed this,Wonderfull work i really hope you keep it updated.My new favorit uF addon thx
Report comment to moderator  
Reply With Quote
Unread 10-26-09, 07:20 PM  
xplosive03
A Fallenroot Satyr
AddOn Author - Click to view AddOns

Forum posts: 20
File comments: 110
Uploads: 9
atr seems dead, no updates in a long time and no response from author...
Report comment to moderator  
Reply With Quote
Unread 09-22-09, 03:42 AM  
fortch
A Kobold Labourer

Forum posts: 0
File comments: 26
Uploads: 2
Coming Soon:
Party, Raid, Pet Frames ....

when ? i love it , atrUF!!!
Report comment to moderator  
Reply With Quote
Unread 07-23-09, 10:48 PM  
rubeen
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Degausser, try to add this instead:

Code:
atrUF.targettarget.power:Hide()
atrUF.targettarget.health:SetPoint("BOTTOMRIGHT", -5, 5)
btw these are the most beautiful UF I've ever seen! you've done a great job
Last edited by rubeen : 07-23-09 at 10:53 PM.
Report comment to moderator  
Reply With Quote
Unread 06-26-09, 12:59 AM  
Degausser
A Kobold Labourer
 
Degausser's Avatar
AddOn Compiler - Click to view compilations

Forum posts: 1
File comments: 10
Uploads: 2
Didn't work :\
Report comment to moderator  
Reply With Quote
Unread 06-25-09, 07:29 PM  
Atrophia
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 17
Uploads: 4
Can add this to the bottom of layout.lua

Code:
atrUF.targettargettarget.power:Hide()
atrUF.targettargettarget.health:SetPoint("BOTTOMRIGHT", -5, 5)
Might break on something as I haven't tested it, but from the top of my head that should work.
Report comment to moderator  
Reply With Quote
Unread 06-25-09, 04:56 PM  
Degausser
A Kobold Labourer
 
Degausser's Avatar
AddOn Compiler - Click to view compilations

Forum posts: 1
File comments: 10
Uploads: 2
That helped so much, thank you. I got everything where I want it..

..except for something. I promise you I looked everywhere to see if I could find it.
Is there any way to get rid of the mana bar / power bar of my target of target?
:|
Report comment to moderator  
Reply With Quote
Unread 06-25-09, 10:01 AM  
UnlitPhoenix
A Defias Bandit
 
UnlitPhoenix's Avatar

Forum posts: 2
File comments: 79
Uploads: 0
Liking this quite a bit

One thing I'd like to request, "bigger" self debuff frames or debuff filtering to show only your own debuffs.
Report comment to moderator  
Reply With Quote
Unread 06-24-09, 08:01 PM  
Atrophia
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 17
Uploads: 4
Originally posted by Degausser
I have a couple questions though I haven't been able to figure out through the .lua

Frist, is there a way to move the frames? Second, as far as changing the color of the health frame, is that even possible? And third, how can I get rid of the target of target of target (lol not a typo)?

Thank you.
If you open layout.lua you can safely move or disable frames from here without affecting anything else.

To hide a frame simply comment out the lines relating to it, you can comment out a line by adding -- in front of it. In this example target of target of target is disabled

Code:
-- local targettargettarget = atrUF:Spawn("targettargettarget", atrUF.MINI_STYLE)
-- targettargettarget:SetPoint("LEFT", targettarget, "RIGHT")
For how to reposition frames I briefly commented on that before. You will need to edit layout.lua to move them, thats what all the SetPoint stuff is doing. If you don't understand it the best suggestion I have is to read the article on WoWWiki for it and have a look at how the code is working with it.

Changing the health is possible but not you would need to be doing much bigger digging through the code. The colors for the health is based on threat, which is found in atrCore. The highlighted line is the default color:

Code:
atrCore.colors = {
    threat = {
        none = {.18, .18, .18, 1}, -- None
        {69/255, 88/255, 0, 1}, -- Minor
        {170/255, 115/255, 0, 1}, -- Danger
        {70/255, 0, 0, 1} -- Has threat
    },
}
The numbers are red, green, blue, alpha in a scale of 0-1 where 1 is a pure color. So to make the default healthbars color in pure red you would have:

Code:
none = {1, 0, 0, 1} -- None
Report comment to moderator  
Reply With Quote
Unread 06-21-09, 01:35 PM  
Degausser
A Kobold Labourer
 
Degausser's Avatar
AddOn Compiler - Click to view compilations

Forum posts: 1
File comments: 10
Uploads: 2
I have a couple questions though I haven't been able to figure out through the .lua

Frist, is there a way to move the frames? Second, as far as changing the color of the health frame, is that even possible? And third, how can I get rid of the target of target of target (lol not a typo)?

Thank you.
Report comment to moderator  
Reply With Quote
Unread 06-15-09, 08:43 AM  
ProperMethodz
A Deviate Faerie Dragon
AddOn Author - Click to view AddOns

Forum posts: 13
File comments: 13
Uploads: 1
Originally posted by Atrophia
Its actually already in the version I'm using at the moment but I've not had time to add an update yet.
lol... I've been looking where to add the code. I look forward to an update because this is giving me hell right now

I'm crap with lua so I'm just trying to figure it out.

I would like to say, these frames are absolutely awesome. Your layout in terms of ease of reading to learn what to modify is very good. I'm using your frames to teach myself some of the lua, but my biggest problem is not understanding what functions are blizzards.

I would like to request a few --comments in there if you don't mind. Since I'm not very good with lua, some of it is Japanese (I don't speak Japanese) but I'm learning as I go.

Thanks for these frames. I'm really enjoying them.

Here's how I changed them:

I've moved the debuffs since this screenshot to compensate for how I've setup my cast bar border.

Last edited by ProperMethodz : 06-15-09 at 08:44 AM.
Report comment to moderator  
Reply With Quote
Unread 05-28-09, 05:06 PM  
Atrophia
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 17
Uploads: 4
Its actually already in the version I'm using at the moment but I've not had time to add an update yet.
Report comment to moderator  
Reply With Quote
Unread 05-22-09, 12:02 AM  
Yinchie
A Murloc Raider

Forum posts: 4
File comments: 50
Uploads: 0
Would be nice to be able to show target icons.
I'm a tabber so they are rather important to see if i am targetting the right target of a mob with a similar name.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: