UNVAR

Syntax: #UNV variable [classname]
Related: #VAR

Deleted the specified variable from memory. Careful, there is no way to get it back after you do this. If classname is specified, only the variable within that class will be deleted. The variable name argument is expanded so you can remove a variable who's name is given by another variable.

UNVAR example

#UNV tank
removes the variable called tank
 
#VAR a 123
#VAR b a
#UNVAR @b
removes the variable called 'a'


Contents UNTRIGGER UNWATCH