mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
22 lines
521 B
Plaintext
22 lines
521 B
Plaintext
|
/**
|
||
|
* fn_assignFractures.sqf
|
||
|
* @Descr: N/A
|
||
|
* @Author: Glowbal
|
||
|
*
|
||
|
* @Arguments: []
|
||
|
* @Return:
|
||
|
* @PublicAPI: false
|
||
|
*/
|
||
|
|
||
|
#include "script_component.hpp"
|
||
|
|
||
|
private ["_unit", "_selectionName", "_amountOfDamage", "_sourceOfDamage", "_typeOfDamage", "_bodyPartn"];
|
||
|
_unit = _this select 0;
|
||
|
_selectionName = _this select 1;
|
||
|
_amountOfDamage = _this select 2;
|
||
|
_sourceOfDamage = _this select 3;
|
||
|
_typeOfDamage = _this select 4;
|
||
|
_bodyPartn = [_selectionName] call FUNC(selectionNameToNumber);
|
||
|
|
||
|
// TODO implement internal injuries
|