Thread: Hearts
View Single Post
04-08-07, 09:47 PM   #2
Riraito
An Aku'mai Servant
 
Riraito's Avatar
Join Date: Dec 2006
Posts: 32
hey that is a great idea, I definatly think its possible, you would probably have to create a bunch of heart frames , and hide/show them depending on how much hp you have
Code:
if UnitHealth("player") / UnitHealthMax("player) == .5 then 
    for i = 1,5 do
        getglobal("HeartFrame"..i):Show();
    end
end
etc.
  Reply With Quote