loop index array remove

Status
Not open for further replies.
im trying to find out how to remove a bunch of location through a loop i know the normal call RemoveLocation( udg_Random_Point[.] ) the . being the number but how do i remove it for a loop from 1 to 38 or so do i put it in a loop then do call RemoveLocation( udg_Random_Point[for integer a] ) or something like tht ?

make custom script like this:
  • Custom script: call RemoveLocation(udg_Random_Point[bj_forLoopAIndex])
if you do it for integer A

  • Custom script: call RemoveLocation(udg_Random_Point[bj_forLoopBIndex])
for integer B
 
Status
Not open for further replies.
Back
Top