View Single Post
11-18-15, 12:40 PM   #2
Fizzlemizz
I did that?
 
Fizzlemizz's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Dec 2011
Posts: 1,877
Code:
if UnitPowerType("player") == 0 then
    return math.ceil(UnitPower("player") / UnitPowerMax("player") * 100) .."%"
else 
    return UnitPower("player") 
end
Your function didn't have an end statement but I'm asuming was just missed in the copy.
__________________
Fizzlemizz
Maintainer of Discord Unit Frames and Discord Art.
Author of FauxMazzle, FauxMazzleHUD and Move Pad Plus.

Last edited by Fizzlemizz : 11-18-15 at 03:17 PM.
  Reply With Quote