Native referenceRedMclient

_GET_IPL_BOUNDING_SPHERE

0x9C77964B0E07B633 STREAMING
FUNCTION SIGNATURE
BOOL _GET_IPL_BOUNDING_SPHERE(Hash iplHash, Vector3* position, float* radius);
Property Value
Native Name _GET_IPL_BOUNDING_SPHERE
Hash 0x9C77964B0E07B633
Return Type BOOL
Build 1207
API Set client
Parameters iplHash (Hash), position (Vector3*), radius (float*)

Description: Outputs IPL position and radius (previously wrongly named heading) https://github.com/femga/rdr3_discoveries/blob/master/imaps/imaps_with_coords_and_heading.lua

Usage

Lua (Direct):

local result = GetIplBoundingSphere(iplHash, position, radius)

Lua (Hash):

local result = Citizen.InvokeNative(0x9C77964B0E07B633, iplHash, position, radius)
Back to STREAMING