#hp list sorting

2 messages · Page 1 of 1 (latest)

silent viper
#

yo if im trying to make a list that lists all the mobs and their hp values

ex: https://wago.io/9eo7aT0WY

so im currently sorting after nameplates with hp% values under 99% and above 0%
but i want the list to sort so the lowest hp mob would dynamicaly show at the bottom of the list but currently it sorts like in the "order" they were added to the list

Wago.io is a database of sharable World of Warcraft addon elements

narrow heart
#

in group tab switch sort to custom
run on: percenthealth
custom sort:

function(a,b)
    return (a.region.state.percenthealth or 0) > (b.region.state.percenthealth or 0) 
end