0067

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

GTA III Vice City San Andreas SUB_FLOAT_LVAR_FROM_FLOAT_VAR


Description

Subtracts the floating-point value of the local variable from the floating-point value of the global variable.

Syntax

0067: [global var] -= [local var]
[global var] -= [local var]

Parameter

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

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

Keywords

sub, decrement, global, local, float, variable, math

See also

  • 0060 – subs int value of global var from int value of global var
  • 0061 – subs float value of global var from float value of global var
  • 0062 – subs int value of local var from int value of local var
  • 0063 – subs float value of local var from float value of local var
  • 0064 – subs int value of global var from int value of local var
  • 0065 – subs float value of global var from float value of local var
  • 0066 – subs int value of local var from int value of global var