Difference between revisions of "0058"
Jump to navigation
Jump to search
(Created page with "{{Icon|trilogy}} '''ADD_INT_VAR_TO_INT_VAR''' <hr /> '''Description''' : Adds the integer value of the global variable to the integer value of the global variable. '''Syntax''...") |
(No difference)
|
Latest revision as of 08:32, 13 February 2015
Description
- Adds the integer value of the global variable to the integer value of the global variable.
Syntax
- 0058: [global var 1] += [global var 2]
- [global var 1] += [global var 2]
Parameter
- [global var 1]
- Global variable
- [global var 2]
- Global variable
This opcode increments the integer value of the global variable by the integer value of another global variable.
Keywords
add, increment, global, integer, variable, math
See also
- 0059 – adds float value of global var to float value of global var
- 005A – adds int value of local var to int value of local var
- 005B – adds float value of local var to float value of local var
- 005C – adds int value of global var to int value of local var
- 005D – adds float value of global var to float value of local var
- 005E – adds int value of local var to int value of global var
- 005F – adds float value of local var to float value of global var