• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

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