• 🏆 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!

[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