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

Easy Question: How to remove an Array Point?

Status
Not open for further replies.
Level 9
Joined
Jul 10, 2011
Messages
562
what type of array?
integer A array ->
  • call RemoveLocation(udg_tmpPoint[bj_forLoopAIndex])
integer B array ->
  • call RemoveLocation( udg_tmpPoint[bj_forLoopBIndex])
everything else ->
  • Actions
    • For each (Integer *SomeInteger*) from 1 to *ArraySize*, do (Actions)
      • Loop - Actions
        • Custom script: call RemoveLocation(udg_*SomePointArray*[udg_*SomeInteger*])
 
Status
Not open for further replies.
Top