mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
43 lines
1.3 KiB
Plaintext
43 lines
1.3 KiB
Plaintext
/*
|
|
Author: Aaron Clark - EpochMod.com
|
|
|
|
Contributors:
|
|
|
|
Description:
|
|
repair object via hit index
|
|
|
|
Licence:
|
|
Arma Public License Share Alike (APL-SA) - https://www.bistudio.com/community/licenses/arma-public-license-share-alike
|
|
|
|
Github:
|
|
https://github.com/EpochModTeam/Epoch/tree/release/Sources/epoch_code/compile/vehicles/EPOCH_client_repairVehicle.sqf
|
|
*/
|
|
//[[[cog import generate_private_arrays ]]]
|
|
private ["_currentDMG"];
|
|
//[[[end]]]
|
|
params ["_vehicle","_value"];
|
|
if (local _vehicle) then {
|
|
{
|
|
if ((_x select 0) isequaltype 0) then {
|
|
// _currentDMG = _vehicle getHitIndex (_x select 0);
|
|
// _vehicle setHitIndex [_x select 0, (_currentDMG - 0.5) max 0];
|
|
_vehicle setHitIndex [_x select 0, _x select 1];
|
|
}
|
|
else {
|
|
// _currentDMG = _vehicle getHitPointDamage (_x select 0);
|
|
// _vehicle setHitPointDamage [_x select 0, (_currentDMG - 0.5) max 0];
|
|
_vehicle setHitPointDamage [_x select 0, _x select 1];
|
|
};
|
|
} foreach _value;
|
|
|
|
if !({_x > 0} count ((getAllHitPointsDamage _vehicle) select 2) > 0) then {
|
|
[_vehicle,["ALL",0],player,Epoch_personalToken] remoteExec ["EPOCH_server_repairVehicle",2];
|
|
};
|
|
|
|
_vehicle call EPOCH_interact;
|
|
if !(EPOCH_arr_interactedObjs isEqualTo[]) then {
|
|
[EPOCH_arr_interactedObjs] remoteExec['EPOCH_server_save_vehicles', 2];
|
|
EPOCH_arr_interactedObjs = [];
|
|
};
|
|
};
|