Native referenceRedM

_NAVMESH_REQUESTED_PATH_WAYPOINTS_TERRAIN

0xF61CFEDEAB627BFA PATHFIND
FUNCTION SIGNATURE
int _NAVMESH_REQUESTED_PATH_WAYPOINTS_TERRAIN(`path` (int));

Description: Returns a bit flag for seemingly terrain within the waypoints in the path. Checked against bit value 2 to match water in the path, seems to always contain at least 1 though regardless of location/ped.

Property Value
Native Name _NAVMESH_REQUESTED_PATH_WAYPOINTS_TERRAIN
Hash 0xF61CFEDEAB627BFA
Return Type int
Build 1207
Parameters path (int)

Parameters

  • path (int)

Usage

Lua (Direct):

local result = NavmeshRequestedPathWaypointsTerrain(path)

Lua (Hash):

local result = Citizen.InvokeNative(0xF61CFEDEAB627BFA, path)

Back to PATHFIND