mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
81e02a7336
* Everything * Fixed missing ; * Fix missing ; and double private * Fixed cannot isNull on number * Turn _temparture back to isNil * Fix error from merge
29 lines
453 B
Plaintext
29 lines
453 B
Plaintext
/*
|
|
* Author: commy2
|
|
*
|
|
*
|
|
* Arguments:
|
|
* 0: Unit <OBJECT>
|
|
* 1: New Damage <SCALAR>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [bob, 2] call ACE_medical_fnc_handleCollisionDamage
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
params ["_unit", "_newDamage"];
|
|
|
|
private _selection = "body";
|
|
|
|
private _totalDamage = (_unit getHit _selection) + _newDamage;
|
|
|
|
_unit setHit [_selection, _totalDamage];
|
|
|
|
systemChat format ["collision: %1", _this];
|