Thread: Stuf LUA help
View Single Post
10-03-15, 01:16 PM   #1
hikokun
A Murloc Raider
 
hikokun's Avatar
Join Date: Oct 2015
Posts: 4
Stuf LUA help

I'm looking for a custom lua code to show curhp/maxhp followed by perchp with two decimals for Stuf Unit Frames. The current code I'm using which only shows perchp with two decimals -

Code:
function(unit, cache, textframe)
  if UnitExists(unit) then
    local perchp = 100 * UnitHealth(unit)/UnitHealthMax(unit)
    return "%.2f%%",perchp
  else
    local perchp = 100 * UnitHealth("player")/UnitHealthMax("player")
    return "%.2f%%",perchp
  end
end
I'd like a code for both of the following setups if possible

300000/500000 | 60.00%
60.00% | 300000/500000


Thanks for any help!
  Reply With Quote