ACE3/addons/interaction/functions/fnc_sendAway.sqf

38 lines
826 B
Plaintext
Raw Normal View History

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 23:13:47 +00:00
#include "script_component.hpp"
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
_unit playActionNow "GestureGo";
2015-01-11 19:32:51 +00:00
private "_chance";
_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";
_position = getPosASL _unit vectorAdd (eyeDirection _unit vectorMultiply SEND_DISTANCE);
_position set [2, 0];
2016-05-24 13:13:11 +00:00
["ace_sendAway", [_x, _position], [_x]] call CBA_fnc_targetEvent;
};
false
} count (_unit nearEntities ["Civilian", SEND_RADIUS]);