2015-05-26 22:45:50 +00:00
|
|
|
/*
|
|
|
|
* Author: BaerMitUmlaut
|
2015-08-22 17:47:23 +00:00
|
|
|
* Handles treatment via surgical kit per frame
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Arguments <ARRAY>
|
|
|
|
* 0: Caller <OBJECT>
|
|
|
|
* 1: Target <OBJECT>
|
|
|
|
* 1: Elapsed Time <NUMBER>
|
|
|
|
* 2: Total Time <NUMBER>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* Succesful treatment started <BOOL>
|
2015-05-26 22:45:50 +00:00
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-08-22 17:47:23 +00:00
|
|
|
|
|
|
|
private "_bandagedWounds";
|
|
|
|
params ["_args", "_elapsedTime", "_totalTime"];
|
|
|
|
_args params ["_caller", "_target"];
|
2015-05-26 22:45:50 +00:00
|
|
|
|
|
|
|
_bandagedWounds = _target getVariable [QGVAR(bandagedWounds), []];
|
|
|
|
|
|
|
|
//In case two people stitch up one patient and the last wound has already been closed we can stop already
|
2015-08-22 17:47:23 +00:00
|
|
|
if (count _bandagedWounds == 0) exitWith { false };
|
2015-05-26 22:45:50 +00:00
|
|
|
|
|
|
|
//Has enough time elapsed that we can close another wound?
|
|
|
|
if ((_totalTime - _elapsedTime) <= (((count _bandagedWounds) - 1) * 5)) then {
|
2015-05-27 11:51:22 +00:00
|
|
|
_bandagedWounds deleteAt 0;
|
|
|
|
_target setVariable [QGVAR(bandagedWounds), _bandagedWounds, true];
|
2015-05-26 22:45:50 +00:00
|
|
|
};
|
|
|
|
|
2015-08-22 17:47:23 +00:00
|
|
|
true
|