1. Addon, that shows totem icons

    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
    Edited: March 27, 2019

  2. May 31, 2022  
    sry for necro bumping thread but i'm also looking for this specific addon too (i'm also using Tidy Plates)

  3. May 31, 2022  
    . .
    Edited: January 1, 2024

  4. May 31, 2022  
    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.

  5. May 31, 2022  
    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,

  6. May 31, 2022  
    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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •