#(daxz_) get top 5 players with highest flag values
1 messages · Page 1 of 1 (latest)
(daxz_) get top 5 players with highest flag values
Hi I'm AutoThreadBot! Don't mind me, I'll just be adding the helper team to this thread so they can see it. A human will get to you soon.
- define pointVals <server.online_players_flagged[prowl_points].parse_tag[<[parse_value].flag[prowl_points]>].numerical.reverse>
had this before
only gets values tho
not players
Returns a copy of the list, sorted such that the lower numbers appear first, and the higher numbers appear last.
Rather than sorting based on the item itself, it sorts based on a tag attribute read from within the object being read.
For example, you might sort a list of players based on the amount of money they have, via .sort_by_number[money] on the list of valid players.
Non-numerical input is considered an error, and the result is not guaranteed.
ListTag
sooo
define pointVals <server.online_players_flagged[prowl_points].sort_by_number[prowl_points]>
this?
oh wow
it work
Nice