2023-09-12 18:58:10 +00:00
|
|
|
#include "..\script_component.hpp"
|
2015-01-11 19:32:51 +00:00
|
|
|
/*
|
2015-09-28 15:11:53 +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:
|
2015-05-09 02:47:15 +00:00
|
|
|
* 0: Unit <OBJECT>
|
2015-01-11 19:32:51 +00:00
|
|
|
*
|
2015-09-28 15:11:53 +00:00
|
|
|
* Return Value:
|
2015-05-09 02:47:15 +00:00
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
2015-09-28 15:11:53 +00:00
|
|
|
* [civillian] call ace_interaction_fnc_sendAway
|
2015-05-09 02:47:15 +00:00
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
2015-01-11 19:32:51 +00:00
|
|
|
|
2015-09-28 15:11:53 +00:00
|
|
|
#define SEND_DISTANCE 50
|
|
|
|
#define SEND_RADIUS 10
|
2015-01-11 19:32:51 +00:00
|
|
|
|
2015-09-28 15:11:53 +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
|
|
|
|
2016-09-04 14:44:22 +00:00
|
|
|
private _chance = [0.5, 0.8] select (count weapons _unit > 0);
|
2015-01-11 19:32:51 +00:00
|
|
|
|
|
|
|
{
|
2015-09-28 15:11:53 +00:00
|
|
|
if (count weapons _x == 0 && {random 1 < _chance}) then {
|
2016-09-04 14:44:22 +00:00
|
|
|
private _position = getPosASL _unit vectorAdd (eyeDirection _unit vectorMultiply SEND_DISTANCE);
|
2015-09-28 15:11:53 +00:00
|
|
|
_position set [2, 0];
|
|
|
|
|
2016-05-25 18:23:53 +00:00
|
|
|
[QGVAR(sendAway), [_x, _position], [_x]] call CBA_fnc_targetEvent;
|
2015-05-09 02:47:15 +00:00
|
|
|
};
|
2015-09-28 15:11:53 +00:00
|
|
|
false
|
|
|
|
} count (_unit nearEntities ["Civilian", SEND_RADIUS]);
|