@citizenfx/client 2.0.5809-1 → 2.0.5810-1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/natives_universal.d.ts +15 -5
- package/package.json +1 -1
package/natives_universal.d.ts
CHANGED
|
@@ -6924,6 +6924,16 @@ declare function N_0x7cd934010e115c2c(ped: number): number;
|
|
|
6924
6924
|
*/
|
|
6925
6925
|
declare function GetAllRopes(): any;
|
|
6926
6926
|
|
|
6927
|
+
/**
|
|
6928
|
+
* Returns all registered vehicle model names, including non-dlc vehicles and custom vehicles in no particular order.
|
|
6929
|
+
* **Example output**
|
|
6930
|
+
* ```
|
|
6931
|
+
* ["dubsta", "dubsta2", "dubsta3", "myverycoolcar", "sultan", "sultanrs", ...]
|
|
6932
|
+
* ```
|
|
6933
|
+
* This native will not return vehicles that are unregistered (i.e from a resource being stopped) during runtime.
|
|
6934
|
+
*/
|
|
6935
|
+
declare function GetAllVehicleModels(): any;
|
|
6936
|
+
|
|
6927
6937
|
declare function GetAllVehicles(vehArray: number): [number, number];
|
|
6928
6938
|
|
|
6929
6939
|
declare function GetAllocatedStackSize(): number;
|
|
@@ -10456,24 +10466,24 @@ declare function GetPedEventData(ped: number, eventType: number, outData?: numbe
|
|
|
10456
10466
|
declare function GetPedExtractedDisplacement(ped: number, worldSpace: boolean): number[];
|
|
10457
10467
|
|
|
10458
10468
|
/**
|
|
10459
|
-
* A getter for [
|
|
10469
|
+
* A getter for [\_SET_PED_EYE_COLOR](#\_0x50B56988B170AFDF). Returns -1 if fails to get.
|
|
10460
10470
|
* @param ped The target ped
|
|
10461
10471
|
* @return Returns ped's eye colour, or -1 if fails to get.
|
|
10462
10472
|
*/
|
|
10463
10473
|
declare function GetPedEyeColor(ped: number): number;
|
|
10474
|
+
|
|
10464
10475
|
/**
|
|
10465
10476
|
* A getter for [`_SET_PED_EYE_COLOR`](#\_0x50B56988B170AFDF).
|
|
10466
10477
|
* @param ped The target ped
|
|
10467
10478
|
* @return Returns ped's eye colour, or -1 if fails to get.
|
|
10468
10479
|
*/
|
|
10469
|
-
declare function
|
|
10470
|
-
|
|
10480
|
+
declare function GetPedEyeColor(ped: number): number;
|
|
10471
10481
|
/**
|
|
10472
|
-
* A getter for [
|
|
10482
|
+
* A getter for [`_SET_PED_EYE_COLOR`](#\_0x50B56988B170AFDF).
|
|
10473
10483
|
* @param ped The target ped
|
|
10474
10484
|
* @return Returns ped's eye colour, or -1 if fails to get.
|
|
10475
10485
|
*/
|
|
10476
|
-
declare function
|
|
10486
|
+
declare function N_0x76bba2cee66d47e9(ped: number): number;
|
|
10477
10487
|
|
|
10478
10488
|
/**
|
|
10479
10489
|
* A getter for [\_SET_PED_FACE_FEATURE](#\_0x71A5C1DBA060049E). Returns 0.0 if fails to get.
|