Variable Commands |
Top Previous Next |
Variables can be used in EMUEScript for the temporary storage of data. The name of a variable is defined by the writer of the script and is used to reference the data that is assigned to the variable name by one of the commands in this section. Once a variable is defined in the script the name of that variable can be used in commands for the purposes of script control and data comparison. Unlike literal strings, when variables are used in commands they are not enclosed in double quotes The commands defined in this section are used to define variables and manipulate the values stored in variables.
Note: If a variable is used in a command before it is initialized using one of the following commands, its value is set to a 0 (or a string "0" for a string variable). It is recommended that all variables be initialized before they are used in a script.
|