mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
48 lines
1.1 KiB
Plaintext
48 lines
1.1 KiB
Plaintext
/*
|
|
* Author: commy2
|
|
* Damages a body part of a local unit. Does not kill the unit.
|
|
*
|
|
* Arguments:
|
|
* 0: Unit <OBJECT>
|
|
* 1: Selection, can be "Head", "Body", "Arms" or "Legs" <STRING>
|
|
* 2: Damage (optional, default: 1) <BOOLEAN>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [player, "HEAD"] call ace_medical_engine_fnc_damageBodyPart
|
|
*
|
|
* Notes:
|
|
* Head: Blood visuals @ 0.45
|
|
* Body: Blood visuals @ 0.45
|
|
* Arms: Blood visuals @ 0.35, increases weapon sway linerarly
|
|
* Legs: Blood visuals @ 0.35, limping @ 0.5
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params [["_unit", objNull, [objNull]], ["_selection", "", [""]], ["_damage", 1, [0]]];
|
|
|
|
if (!local _unit) exitWith {
|
|
ACE_LOGERROR("Unit not local or null");
|
|
};
|
|
|
|
_damage = _damage min 0.99;
|
|
|
|
switch (toLower _selection) do {
|
|
case ("head"): {
|
|
_unit setHitPointDamage ["HitHead", _damage];
|
|
};
|
|
case ("body"): {
|
|
_unit setHitPointDamage ["HitBody", _damage];
|
|
};
|
|
case ("arms"): {
|
|
_unit setHitPointDamage ["HitHands", _damage];
|
|
};
|
|
case ("legs"): {
|
|
_unit setHitPointDamage ["HitLegs", _damage];
|
|
};
|
|
};
|