mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
10c1085aba
* patch wheels on vehicles * all tire patching working Co-authored-by: mp-singh <mandeep@mandeepsingh.ca> * doc * remove unused string * Update CfgVehicles.hpp * use strintable * setting for where the wheel can be patched * localize * Update stringtable.xml * can't patch a missing tire * removal > replacement * Update addons/repair/initSettings.sqf Co-authored-by: PabstMirror <pabstmirror@gmail.com> * Apply suggestions from code review Co-authored-by: Filip Maciejewski <veteran29@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: PabstMirror <pabstmirror@gmail.com> * Apply suggestions from code review Co-authored-by: Jouni Järvinen <rautamiekka@users.noreply.github.com> * patch icon * use PATCH_WHEEL_STEP_TIME * fix wheel translation --------- Co-authored-by: mp-singh <mandeep@mandeepsingh.ca> Co-authored-by: PabstMirror <pabstmirror@gmail.com> Co-authored-by: Filip Maciejewski <veteran29@users.noreply.github.com> Co-authored-by: Jouni Järvinen <rautamiekka@users.noreply.github.com>
32 lines
811 B
Plaintext
32 lines
811 B
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: commy2, Brett Mayson
|
|
* Check if the unit can patch given wheel of the vehicle.
|
|
*
|
|
* Arguments:
|
|
* 0: Unit that does the patching <OBJECT>
|
|
* 1: Vehicle to patch <OBJECT>
|
|
* 2: Selected wheel hitpoint <STRING>
|
|
*
|
|
* Return Value:
|
|
* Can patch wheel? <BOOL>
|
|
*
|
|
* Example:
|
|
* [unit, vehicle, "hitpoint"] call ace_repair_fnc_canPatchWheel
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_unit", "_target", "_hitPoint"];
|
|
TRACE_3("params",_unit,_target,_hitPoint);
|
|
|
|
if (GVAR(patchWheelEnabled) == -1) exitWith {false};
|
|
|
|
private _damage = _target getHitPointDamage _hitPoint;
|
|
|
|
if (_damage == 1) exitWith {false};
|
|
|
|
if !([_unit, _target, ["isNotDragging", "isNotCarrying", "isNotOnLadder"]] call EFUNC(common,canInteractWith)) exitWith {false};
|
|
|
|
(_damage > GVAR(patchWheelMaximumRepair))
|