The initvar command is used to initialize a variable to be used by the object.
"then(initvar, variable)"
Argument |
Function |
variable |
The stored variable that is being initialized. |
And example of the initvar command used in a script is as follows...
The following script simply initializes a timer variable to be used later.
if(create)
{
then(initvar,timer)
then(changevar,timer,=,200)
}
|
|