Native referenceRedM

GET_NUM_NAVMESHES_EXISTING_IN_AREA

0x01708E8DD3FF8C65 PATHFIND
FUNCTION SIGNATURE
int GET_NUM_NAVMESHES_EXISTING_IN_AREA(float posMinX, float posMinY, float posMinZ, float posMaxX, float posMaxY, float posMaxZ);
Property Value
Native Name GET_NUM_NAVMESHES_EXISTING_IN_AREA
Hash 0x01708E8DD3FF8C65
Return Type int
Build 1207
Parameters posMinX (float), posMinY (float), posMinZ (float), posMaxX (float), posMaxY (float), posMaxZ (float)

Parameters

  • posMinX (float) — Min X Coordinate.
  • posMinY (float) — Min Y Coordinate.
  • posMinZ (float) — Min Z Coordinate.
  • posMaxX (float) — Max X Coordinate.
  • posMaxY (float) — Max Y Coordinate.
  • posMaxZ (float) — Max Z Coordinate.

Usage

Lua (Direct):

local result = GetNumNavmeshesExistingInArea(posMinX, posMinY, posMinZ, posMaxX, posMaxY, posMaxZ)

Lua (Hash):

local result = Citizen.InvokeNative(0x01708E8DD3FF8C65, posMinX, posMinY, posMinZ, posMaxX, posMaxY, posMaxZ)
Back to PATHFIND