@citizenfx/server 2.0.11516-1 → 2.0.11739-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_server.d.ts +7 -0
- package/package.json +1 -1
package/natives_server.d.ts
CHANGED
|
@@ -1501,6 +1501,13 @@ declare function GetVehicleRoofLivery(vehicle: number): number;
|
|
|
1501
1501
|
*/
|
|
1502
1502
|
declare function GetVehicleSteeringAngle(vehicle: number): number;
|
|
1503
1503
|
|
|
1504
|
+
/**
|
|
1505
|
+
* GET_VEHICLE_TOTAL_REPAIRS
|
|
1506
|
+
* @return Returns the total amount of repairs. Each repair will increase the count to make it possible to detect client repairs.
|
|
1507
|
+
The value has a range from 0 to 15. Next value after 15 is 0.
|
|
1508
|
+
*/
|
|
1509
|
+
declare function GetVehicleTotalRepairs(vehicle: number): number;
|
|
1510
|
+
|
|
1504
1511
|
/**
|
|
1505
1512
|
* Returns the type of the passed vehicle.
|
|
1506
1513
|
* For client scripts, reference the more detailed [GET_VEHICLE_TYPE_RAW](#\_0xDE73BC10) native.
|