[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
 
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.
Back
Top