005D

From GTAMods Wiki
Revision as of 08:32, 13 February 2015 by Seemann (talk | contribs) (Created page with "{{Icon|trilogy}} '''ADD_FLOAT_VAR_TO_FLOAT_LVAR''' <hr /> '''Description''' : Adds the floating-point value of the global variable to the floating-point value of the local var...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

GTA III Vice City San Andreas ADD_FLOAT_VAR_TO_FLOAT_LVAR


Description

Adds the floating-point value of the global variable to the floating-point value of the local variable.

Syntax

005D: [local var] += [global var]
[local var] += [global var]

Parameter

[local var]
Local variable
[global var]
Global variable

This opcode increments the floating-point value of the local variable by the floating-point value of global variable.

Keywords

add, increment, global, local, float, variable, math

See also

  • 0058 – adds int value of global var to int value of global var
  • 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
  • 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