How can you find the lowest/highest level in unit groups?

Dregonx

TH.net Regular
Reaction score
21
Anyone know how you can find the highest level, or lowest level in a unit group, both hero and unit, or at least just unit?
 

vaziocs

New Member
Reaction score
5
Anyone know how you can find the highest level, or lowest level in a unit group, both hero and unit, or at least just unit?
Unit Group - Pick every unit in (Units in (Playable map area)) and do (Actions)
Loop - Actions
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
If - Conditions
(Max((Level of (Picked unit)), maxint)) Greater than maxint
Then - Actions
Set maxint = (Level of (Picked unit))
Else - Actions
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
If - Conditions
(Min((Level of (Picked unit)), maxint)) Less than minint
Then - Actions
Set minint = (Level of (Picked unit))
Else - Actions
 

AceHart

Your Friendly Neighborhood Admin
Reaction score
1,495
Greatest:
Code:
Set Level = 0
Pick every unit in <some unit group> and do
    Set Level = Max( (Level of (Picked unit)), Level )
Lowest:
Code:
Set Level = 9999
Pick every unit in <some unit group> and do
    Set Level = Min( (Level of (Picked unit)), Level )

Min and Max can be found under "Math".
 

Dregonx

TH.net Regular
Reaction score
21
Greatest:
Code:
Set Level = 0
Pick every unit in <some unit group> and do
    Set Level = Max( (Level of (Picked unit)), Level )
Lowest:
Code:
Set Level = 9999
Pick every unit in <some unit group> and do
    Set Level = Min( (Level of (Picked unit)), Level )

Min and Max can be found under "Math".

How would I pick 1 random lowest level unit, or highest level unit from the group using this?

Edit: Also +Rep to both of you, thanks =)
 

AceHart

Your Friendly Neighborhood Admin
Reaction score
1,495
Once you have the level of interest, loop the group one more time.
Put all those that have that level in another group.
Use "random unit from unit group" to pick one of those at random.
 
General chit-chat
Help Users
  • No one is chatting at the moment.

      The Helper Discord

      Staff online

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top