ACE3/addons/interaction/functions/fnc_sendAway.sqf

36 lines
813 B
Plaintext
Raw Normal View History

#include "script_component.hpp"
2015-01-11 19:32:51 +00:00
/*
* Author: KoffeinFlummi, commy2
* Sends a near civilian crowd away with a chance of failure.
2015-01-11 23:13:47 +00:00
*
2015-01-11 19:32:51 +00:00
* Arguments:
* 0: Unit <OBJECT>
2015-01-11 19:32:51 +00:00
*
* Return Value:
* None
*
* Example:
* [civillian] call ace_interaction_fnc_sendAway
*
* Public: No
*/
2015-01-11 19:32:51 +00:00
#define SEND_DISTANCE 50
#define SEND_RADIUS 10
2015-01-11 19:32:51 +00:00
params ["_unit"];
2015-01-11 19:32:51 +00:00
2016-07-12 14:16:01 +00:00
[_unit, "GestureGo"] call EFUNC(common,doGesture);
2015-01-11 19:32:51 +00:00
private _chance = [0.5, 0.8] select (count weapons _unit > 0);
2015-01-11 19:32:51 +00:00
{
if (count weapons _x == 0 && {random 1 < _chance}) then {
private _position = getPosASL _unit vectorAdd (eyeDirection _unit vectorMultiply SEND_DISTANCE);
_position set [2, 0];
2016-05-25 18:23:53 +00:00
[QGVAR(sendAway), [_x, _position], [_x]] call CBA_fnc_targetEvent;
};
false
} count (_unit nearEntities ["Civilian", SEND_RADIUS]);