• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

pick unit with biggest life

Status
Not open for further replies.
Level 25
Joined
Jul 10, 2006
Messages
3,315
Here:

  • Pick Unit
    • Events
    • Conditions
    • Actions
      • -------- Pick biggest life --------
      • Set tempReal = 0.00
      • Set tempUnit = No unit
      • Unit Group - Pick every unit in tempGroup and do (Actions)
        • Loop - Actions
          • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            • If - Conditions
              • (Life of (Picked unit)) Greater than tempReal
            • Then - Actions
              • Set tempReal = (Life of (Picked unit))
              • Set tempUnit = (Picked unit)
            • Else - Actions
      • -------- now tempUnit is the unit with the biggest life --------
      • -------- ------ --------
      • -------- Pick smallest life --------
      • Set tempReal = 100000000.00
      • Set tempUnit = No unit
      • Unit Group - Pick every unit in tempGroup and do (Actions)
        • Loop - Actions
          • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            • If - Conditions
              • (Life of (Picked unit)) Less than tempReal
            • Then - Actions
              • Set tempReal = (Life of (Picked unit))
              • Set tempUnit = (Picked unit)
            • Else - Actions
      • -------- now tempUnit is the unit with the smallest --------
 
Status
Not open for further replies.
Top