/* * Author: commy2 * Check if the unit can remove given wheel of the vehicle. * * Arguments: * 0: Unit that does the repairing * 1: vehicle to repair * 2: Selected hitpoint * * Return Value: * NONE */ #include "script_component.hpp" params ["_unit", "_target", "_hitPoint"]; TRACE_3("params",_unit,_target,_hitPoint); alive _target && {_target getHitPointDamage _hitPoint < 1}