initvar
The initvar command is used to initialize a global variable to be used by all objects.



"then(initvarglobal, variable)"


Argument Function
variable The stored variable that is being initialized.



And example of the initvarglobal command used in a script is as follows...




The following script simply initializes a global counter variable to be used later.


if(create)
{
then(initvarglobal,counter)
}