1234567891011121314151617181920212223 |
- /*
- * Author: M3ales
- *
- * Arguments:
- * Unit
- * Return Value:
- * True if eligable to use bandage all action
- *
- * Example:
- * [cursorTarget, player, []] call rd501_fnc_canBandageNearbyCCP
- *
- * Public: No
- */
- params [
- "_target",
- "_player",
- "_params"
- ];
- alive _target &&
- _player call rd501_fnc_checkInsideCCP &&
- _player call rd501_fnc_isDoctor
|