Category: Unit 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)
Satrina's Portal Bug Reports Feature Requests
Author:
Version:
3.0.6
Date:
02-16-2009 04:21 PM
Size:
34.41 Kb
Downloads:
11,384
Favorites:
43
MD5:
Pictures
Player Frame
Party Member Frame (showing buffs and debuff)
Focus Frame/Target of Target Frame
Target Frame (with guild/no guild/cast bar and raid icon)
Satrina Unit Frames 3   Popular! (More than 5000 hits)
Version 3.0.5 - 16 February 2008

New in 3.0.6:
- Fixed an error where dropdown menus cause error spam for the user

These unit frames remove (almost) all status bars, replacing them with compact unit frames with no portrait. All of the individual frames are moveable. All frames are Clique enabled.

In general, I don't take feature requests for this addon. I made these frames to show exactly what I want in unit frames with no fuss. I made them publicly available because people saw it in screenshots and asked if it was available. Since then, whenever I have made a change I have added an option for the way it used to be, making my new preference the default. The best way to get a feature you want added is to code the change yourself and send it to me. Failing that, ask anyway, and I'll think about it =)

Player Frame
- Health, mana/rage/energy shown in actual numbers.
- Health shades from green at full, to yellow at half, to red at death.
- PvP status is denoted by the colour of name - blue for non-PvP, green for PvP, red for free-for-all PvP.

Party Member and Player Pet Frames
- Up to 16 buffs are shown
- Up to 8 debuffs are shown
- Health is shown in actual numbers, and mana/rage/energy as a percentage.
- Health shades from green at full, to yellow at half, to red at death.
- PvP status is denoted by the colour of name - blue for non-PvP, green for PvP, red for free-for-all PvP.

Party Member Pet Frames
- Not yet supported

Target Frame
- Raid target icon displayed beside target's name
- Shows up to 40 debuffs, up to 16 buffs
- Target health and mana/rage/energy are given as percentage
- Turning on the target cast bar (portrait) in the WOW interface options enables a casting bar across the top of the target frame

Focus Frame and Target of Target Frame
- Up to 16 buffs are shown
- Up to 8 debuffs are shown
- Health and mana/rage/energy shown as a percentage.
- Health shades from green at full, to yellow at half, to red at death.
- PvP status is denoted by the colour of name - blue for non-PvP, green for PvP, red for free-for-all PvP.

Target of Target is turned on as usual in the WOW interface options

Raid Frames
- Not supported

Configuration:

To open the Satrina Unit Frames configuration frame: /suf (which just opens the interface panel to the SatrinaUnitFrames tab)

* All frames and their buffs/debuffs are shown as placeholders when the configuration frame is open
* Any frame can be dragged while holding down the Alt key (whether the configuration frame is open or not)
* The opacity of the unit frames may be set independently
* Unchecking the UI Scale checkbox will allow you to unit frames independently of the global UI scaling.
* Checking the Use Same Scale checkbox will allow you scale all of the unit frames at the same time with one slider.
* The home button will return all unit frames to their default positions
* Selecting Target Guild will add the target's guild to the target frame
* Selecting Target PVP icon will cause the PVP graphic to show with the target frame
* Selecting Target class icon will cause a class graphic to show with the target frame (it's pretty small right now, may scale it up some later)
  Change Log - Satrina Unit Frames 3
New in 3.0.6:
- Fixed an error where dropdown menus cause error spam for the user

New in 3.0.5:
- Vehicle combo points will appear in combat. You will not see vehicle combo points unless you have at least one built up.
- Vehicle power should report correctly now

New in 3.0.4:
- Deathknight rune frame now moves with player frame
- Deathknight runic power now updates on player frame

New in 3.0.3:
- Fix player health font size to not cut off
- Fix an error when piloting vehicles
  Optional Files - Satrina Unit Frames 3
Sorry, there are currently no optional files available.
  Archived Versions - Satrina Unit Frames 3
File Name
Version
Size
Author
Date
3.0.5
29kB
Satrina
01-05-2009 07:54 PM
3.0.4
28kB
Satrina
11-19-2008 10:24 AM
  Comments - Satrina Unit Frames 3
Post A Reply Comment Options
Old 05-27-2007, 07:37 PM  
paflechien
A Kobold Labourer

Forum posts: 0
File comments: 5
Uploads: 0
mobhealth3 support

i'm the kind of guy who can't wait to have a new feature, so i add it myself
i've locally added mobhealth3 support to display the health of mobs in the target frame. here's what the updatehealth function looks like :
Code:
UpdateHealth = function(frame)
  if UnitExists(frame.unit) then
    local currHealth, maxHealth, pctHealth, found
    local healthStr

    if(frame.health) then
      if UnitIsDead(frame.unit) or UnitIsGhost(frame.unit) then
      frame.health:SetTextColor(0.5, 0.5, 0.5)
      frame.health:SetText("")
    elseif not UnitIsConnected(frame.unit) then
      frame.health:SetTextColor(0.5, 0.5, 0.5)
      frame.health:SetText(SPF_OFFLINE)
    else
      currHealth = UnitHealth(frame.unit)
      maxHealth = UnitHealthMax(frame.unit)
      if(MobHealth3) then
        currHealth, maxHealth, found = MobHealth3:GetUnitHealth(frame.unit, currHealth, maxHealth)
      end

      pctHealth = currHealth/maxHealth
      if frame.healthNumbers then
        if frame.deficit then
          if( currHealth == maxHealth ) then
            frame.health:SetText(string.format("%d", maxHealth))
          else
            frame.health:SetText(string.format("%d/%d", currHealth, currHealth - maxHealth))
          end
        else
          if(UnitIsFriend("player", frame.unit)) then
            frame.health:SetText(string.format("%d/%d", currHealth, maxHealth))
          else
            frame.health:SetText(string.format("%d (%d%%)", currHealth, floor(pctHealth*100)))
          end
        end
      else
        frame.health:SetText(string.format("%d%%", floor(100*pctHealth)))
      end

      if(pctHealth > 0.5) then
        frame.health:SetTextColor(((-2*pctHealth)+2), 1, 0)
      else
        frame.health:SetTextColor(1, (2*pctHealth), 0)
      end			
    end
  end
end
in that code, i've modified the display of remaining HP in the target frame for an hostile mob, so i can see left HP and what percentage it represents. made that cause some mobs have something like 3000k HP (gruul for example), and i didn't want (and didn't find usefull ^^) to have the total HP displayed.

BTW, i've also added a deficit display for player, pet, and party members, which i find more efficient. just put
Code:
this.deficit = 1
in the OnLoad function of those frames

Last edited by paflechien : 05-27-2007 at 07:46 PM.
paflechien is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 05-27-2007, 06:48 PM  
paflechien
A Kobold Labourer

Forum posts: 0
File comments: 5
Uploads: 0
really great add-on, nothing is better than having a simple display of all needed infos.
however, the party frames are still there when i'm in a raid. i took a look at the code, but can't figure out where the problem can be... i've even removed the (HIDE_PARTY_INTERFACE == "1") but it didn't help.

edit : ok, i've seen that there was 2 functions with content commented (in SatrinaPartyFrame.lua), used to overload wow functions to hide/show party frames when in a raid. i uncommented everything, and also changed :
getglobal("SatrinaPartyMember"..i):
by
getglobal("SatrinaPartyMember"..i.."Content"):
in the 2 functions.

that's working fine
it seems that the update function in SatrinaPartyFrame.lua is useless. maybe for further content i think

Last edited by paflechien : 05-27-2007 at 07:19 PM.
paflechien is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 05-24-2007, 09:38 PM  
Satrina
Premium Member
Premium Member
Interface Author - Click to view interfaces

Forum posts: 46
File comments: 531
Uploads: 24
Yep, hold down the alt key and drag.

Last edited by Satrina : 05-24-2007 at 09:39 PM.
Satrina is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 05-24-2007, 08:19 PM  
Caliga
A Murloc Raider

Forum posts: 6
File comments: 4
Uploads: 0
movable?

i use fubar and i looked at your frames and i like what i see, but my question is can i move them from their default location? as it is now they show up under my fubar and its hard to read them, maybe that is becuase i have two bars at the top and one at the bottom, but i just wondered if i was missing something. thanks.
Caliga is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 04-05-2007, 03:19 PM  
Wynd
A Murloc Raider

Forum posts: 4
File comments: 1
Uploads: 0
Great job.... i was so tired of spectrecles!!! thanks
Wynd is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 03-21-2007, 06:04 AM  
Highfather
A Kobold Labourer
 
Highfather's Avatar

Forum posts: 1
File comments: 5
Uploads: 0
First things first - Welcome Back!

I want to thank you for your work on combact mechanics and your great addons.
/deep bow
Highfather 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.