Thread: oUF PP
View Single Post
08-08-16, 03:01 PM   #1
badness
A Cliff Giant
 
badness's Avatar
Join Date: May 2010
Posts: 74
oUF PP

I've noticed a problem with pp when it comes to certain bosses like Iron Reaver,Kilrogg,Mannoroth etc that all use I'm guessing a different type of power that fills up.

This is how its implemented in the layout:
Lua Code:
  1. local hpp = createFont(hp, "OVERLAY", font, fontsize, fontflag, 1, 1, 1)
  2.         hpp:SetPoint("RIGHT", hp, -2, 0)
  3.  
  4.         if(unit == "player" or unit == "party") then
  5.             self:Tag(hpp, '[freeb:hp]')
  6.         else
  7.             self:Tag(hpp, '[freeb:pp]  [freeb:hp]')
  8.         end
  9.  
  10.         hp.hpp = hpp
  11.     end
  12.  
  13.     hp.bg = hpbg
  14.     self.Health = hp
This is what it looks like currently :
http://imgur.com/a/hJii8
http://imgur.com/a/0r0oF

So I'm wondering if its the way it is implement that is causing the problem or maybe its the oUF element?What can I do to correct the issue?
  Reply With Quote