Hi,
does anyone know an addon, that shows totem icons?
I have tidy plates (clean plates), but that doesn't show totem icons, shows only the nameplates.
An example: https://www.dropbox.com/s/7ud0o88lte...Icons.JPG?dl=0
Printable View
Hi,
does anyone know an addon, that shows totem icons?
I have tidy plates (clean plates), but that doesn't show totem icons, shows only the nameplates.
An example: https://www.dropbox.com/s/7ud0o88lte...Icons.JPG?dl=0
sry for necro bumping thread but i'm also looking for this specific addon too (i'm also using Tidy Plates)
. .
Thx a lot man.
Do you know if there is any way to display only %health and to remove level text using those frames.
Again, thx.
with TidyPlates_CleanPlates?
open the .lua files inside the addon with any "text" software
in most of them you find at bottom:
showLevel = true,
change it into
showLevel = false,
Thx a lot ! It worked fine (changed in special.lua).
I'm searching in files if i can remove Health value displayed so that it only displays % but seems harder tweak.
Should i remove every "unit.health" in CleanPlatesConfig.lua (see below) ? I'm afraid to make it bug if i change wrong stuff.
function SetSpecialText(unit)
unit.name=ru2en(unit.name)
if CP.db.profile.hptext then
healthpercent = 100* (unit.health / unit.healthmax) --[[Creates the health percentage number]]--
hpstring = Truncate(unit.health).." - "
if (unit.health / unit.healthmax) < 1 then --[[If Health is less than 100%]]--
return Truncate(unit.health).." - "..ceil(healthpercent ).."%" --[[Display Truncated HP Amount and Percentage]]--
else --[[If HP is 100%]]--
if CP.db.profile.hundtext then
if CP.db.profile.fullstring then
return hpstring..ceil(healthpercent ).."%" --[[Display Nothing or Optional 100% text]]--
else
return Truncate(unit.health)
end
else
return ""
end
end
else return ""
end
end