Epoch/Sources/epoch_code/compile/vehicles/EPOCH_client_repairVehicle.sqf

7 lines
234 B
Plaintext
Raw Normal View History

2015-09-14 20:55:36 +00:00
private ["_vehicle","_value"];
_vehicle = _this select 0;
_value = _this select 1;
if (local _vehicle) then {
_currentDMG = _vehicle getHitIndex (_value select 0);
_vehicle setHitIndex[_value select 0, (_currentDMG - 0.5) max 0];
};