View Single Post
08-28-12, 04:27 AM   #2
Lombra
A Molten Giant
 
Lombra's Avatar
AddOn Author - Click to view addons
Join Date: Nov 2006
Posts: 554
Try this:
Code:
local form = DruidForm(unit)
local classification = Classification(unit)
if UnitIsPlayer(unit) or (not UnitIsFriend(unit,"player") and not IsPet(unit)) then
	local cr,cg,cb = ClassColor(unit)
	if form then
		return "%s%s%s |cff%02x%02x%02x%s|r (%s) %s",classification or '',classification and ' ' or '',Level(unit),cr,cg,cb,Class(unit),form,SmartRace(unit) or ''
	else
		return "%s%s%s |cff%02x%02x%02x%s|r %s",classification or '',classification and ' ' or '',Level(unit),cr,cg,cb,Class(unit),SmartRace(unit) or ''
	end
else
	if form then
		return "%s%s%s (%s) %s",classification or '',classification and ' ' or '',Level(unit),form,SmartRace(unit) or ''
	else
		return "%s%s%s %s",classification or '',classification and ' ' or '',Level(unit),SmartRace(unit) or ''
	end
end
__________________
Grab your sword and fight the Horde!
  Reply With Quote