Results: 2Comments by: Metriss
File: Real Mob Health09-03-19
How does one make use of this healt...
Posted By: Metriss
How does one make use of this health:real plugin? I could use it. If you know how to get an addon to load all you need to do is put this in the lua file and it should work. I think it could easily be a part of this addon by itself without the need for a plugin such as this. You put in NamePlates > Enemy NPC > Health and UnitFrame...
File: Real Mob Health08-31-19
local OLD_UnitHealth,OLD_UnitHealth...
Posted By: Metriss
local OLD_UnitHealth,OLD_UnitHealthMax=UnitHealth,UnitHealthMax; function UnitHealth(unit) if not RealMobHealth then return OLD_UnitHealth(unit); end local cur,max=RealMobHealth.GetUnitHealth(unit); return cur; end function UnitHealthMax(unit) if not RealMobHealth then return OLD_UnitHealthMax(unit); end local cur,max=Real...