Native referenceFiveM

GET_VEHICLE_NODE_POSITION

0x703123E5E7D429C2 PATHFIND
FUNCTION SIGNATURE
void GET_VEHICLE_NODE_POSITION(int nodeId, Vector3* outPosition);
Property Value
Native Name GET_VEHICLE_NODE_POSITION
Hash 0x703123E5E7D429C2
Return Type void
Parameters nodeId (int), outPosition (Vector3*)

Description: ``` Calling this with an invalid node id, will crash the game. Note that IS_VEHICLE_NODE_ID_VALID simply checks if nodeId is not zero. It does not actually ensure that the id is valid. Eg. IS_VEHICLE_NODE_ID_VALID(1) will return true, but will crash when calling GET_VEHICLE_NODE_POSITION().

Back to PATHFIND