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

[Trigger] Custom Script - Array Variable Removal

Status
Not open for further replies.
Level 7
Joined
Dec 17, 2005
Messages
337
Curious as to what is the custom script to only remove a certain array from a variable and not clear the whole variable.

call RemoveLocation(udg_Loc)

"Loc" has an array of 9 and I will need to only specifically remove certain code at a time.

Thanks in advance
 
Level 18
Joined
Oct 18, 2007
Messages
930
Curious as to what is the custom script to only remove a certain array from a variable and not clear the whole variable.

call RemoveLocation(udg_Loc)

"Loc" has an array of 9 and I will need to only specifically remove certain code at a time.

Thanks in advance

just use this

  • Custom script: call RemoveLocation( udg_Loc[Integer] )
Where the "Integer" is your array. Like 2 or 1 or 0, maybe 8
 
Status
Not open for further replies.
Top