View Single Post
09-05-12, 09:29 PM   #2
Shefki
An Aku'mai Servant
 
Shefki's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2007
Posts: 31
Without seeing the errors it's hard to say for sure but it looks to me like your problem occurs when the max hp is zero. Try changing:

Lua Code:
  1. local PerHP = cur/max

to

Lua Code:
  1. local PerHP = max > 0 and cur/max or 0
  Reply With Quote