@citizenfx/client 2.0.5644-1 → 2.0.5647-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 +19 -6
- package/package.json +1 -1
package/natives_universal.d.ts
CHANGED
|
@@ -10429,24 +10429,24 @@ declare function GetPedEventData(ped: number, eventType: number, outData?: numbe
|
|
|
10429
10429
|
declare function GetPedExtractedDisplacement(ped: number, worldSpace: boolean): number[];
|
|
10430
10430
|
|
|
10431
10431
|
/**
|
|
10432
|
-
* A getter for [
|
|
10432
|
+
* A getter for [\_SET_PED_EYE_COLOR](#\_0x50B56988B170AFDF). Returns -1 if fails to get.
|
|
10433
10433
|
* @param ped The target ped
|
|
10434
10434
|
* @return Returns ped's eye colour, or -1 if fails to get.
|
|
10435
10435
|
*/
|
|
10436
10436
|
declare function GetPedEyeColor(ped: number): number;
|
|
10437
|
+
|
|
10437
10438
|
/**
|
|
10438
10439
|
* A getter for [`_SET_PED_EYE_COLOR`](#\_0x50B56988B170AFDF).
|
|
10439
10440
|
* @param ped The target ped
|
|
10440
10441
|
* @return Returns ped's eye colour, or -1 if fails to get.
|
|
10441
10442
|
*/
|
|
10442
|
-
declare function
|
|
10443
|
-
|
|
10443
|
+
declare function GetPedEyeColor(ped: number): number;
|
|
10444
10444
|
/**
|
|
10445
|
-
* A getter for [
|
|
10445
|
+
* A getter for [`_SET_PED_EYE_COLOR`](#\_0x50B56988B170AFDF).
|
|
10446
10446
|
* @param ped The target ped
|
|
10447
10447
|
* @return Returns ped's eye colour, or -1 if fails to get.
|
|
10448
10448
|
*/
|
|
10449
|
-
declare function
|
|
10449
|
+
declare function N_0x76bba2cee66d47e9(ped: number): number;
|
|
10450
10450
|
|
|
10451
10451
|
/**
|
|
10452
10452
|
* A getter for [\_SET_PED_FACE_FEATURE](#\_0x71A5C1DBA060049E). Returns 0.0 if fails to get.
|
|
@@ -13640,7 +13640,20 @@ declare function GetZoneFromNameId(zoneName: string): number;
|
|
|
13640
13640
|
declare function GetZonePopschedule(zoneId: number): number;
|
|
13641
13641
|
|
|
13642
13642
|
/**
|
|
13643
|
-
*
|
|
13643
|
+
* Gets the zone scumminess level, used to calculate the cellphone signal strength.
|
|
13644
|
+
* ```cpp
|
|
13645
|
+
* enum eZoneScumminess
|
|
13646
|
+
* {
|
|
13647
|
+
* SCUMMINESS_POSH = 0,
|
|
13648
|
+
* SCUMMINESS_NICE = 1,
|
|
13649
|
+
* SCUMMINESS_ABOVE_AVERAGE = 2,
|
|
13650
|
+
* SCUMMINESS_BELOW_AVERAGE = 3,
|
|
13651
|
+
* SCUMMINESS_CRAP = 4,
|
|
13652
|
+
* SCUMMINESS_SCUM = 5
|
|
13653
|
+
* }
|
|
13654
|
+
* ```
|
|
13655
|
+
* @param zoneId The zone id
|
|
13656
|
+
* @return The zone scumminess level
|
|
13644
13657
|
*/
|
|
13645
13658
|
declare function GetZoneScumminess(zoneId: number): number;
|
|
13646
13659
|
|