• 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.

IntegerA Removing leaks

Status
Not open for further replies.
Level 4
Joined
Aug 22, 2008
Messages
100
Is there a way to use this trigger using the integerA to remove leaks.
  • Custom script: call RemoveLocation(udg_Point)
I was thinking something like this but i dont know how to use the integerA
  • For each (Integer A) from 1 to 10, do (Actions)
    • Loop - Actions
      • Custom script: call RemoveLocation(udg_Point[IntegerA])
Is this correct?
 
Is there a way to use this trigger using the integerA to remove leaks.
  • Custom script: call RemoveLocation(udg_Point)
I was thinking something like this but i dont know how to use the integerA
  • For each (Integer A) from 1 to 10, do (Actions)
    • Loop - Actions
      • Custom script: call RemoveLocation(udg_Point[IntegerA])
Is this correct?

This is how it goes:
  • For each (Integer A) from 1 to 10, do (Actions)
    • Loop - Actions
      • Custom script: call RemoveLocation(udg_Point[GetForLoopIndexA()])
 
Status
Not open for further replies.
Top