0092

From GTAMods Wiki
Revision as of 17:09, 1 August 2015 by Seemann (talk | contribs) (Created page with "{{Icon|trilogy}} '''CSET_LVAR_INT_TO_LVAR_FLOAT''' <hr /> '''Description''' : Converts the floating-point value of the local variable to an equivalent integer value and stores...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

GTA III Vice City San Andreas CSET_LVAR_INT_TO_LVAR_FLOAT


Description

Converts the floating-point value of the local variable to an equivalent integer value and stores the result into the local variable.

Syntax

0092: [local var 1] = float_to_integer [local var 2]

Parameter

[local var 1]
Local variable
[local var 2]
Local variable

This opcode truncates a floating-point value of the local variable and stores its integral part into the local variable. For example, converting a value of 4.1 or 4.9 both produces 4 as a result.

Keywords

convert, local, variable, int, float, math

See also

  • 008C – convert global float to global int
  • 008D – convert global int to global float
  • 008E – convert global float to local int
  • 008F – convert global int to local float
  • 0090 – convert local float to global int
  • 0091 – convert local int to global float
  • 0093 – convert local int to local float