ACE3/addons/interaction/functions/fnc_sendAway.sqf
2015-01-12 21:14:27 -08:00

37 lines
873 B
Plaintext

/*
* Author: KoffeinFlummi
*
* Sends a civilian crowd away (chance of failure).
*
* Arguments:
* 0: Unit to be sent away (Object)
*
* Return value:
* none
*/
#include "script_component.hpp"
#define DISTANCE 50
#define RADIUS 10
private ["_unit", "_chance", "_x"];
_unit = _this select 0;
ACE_player playActionNow "GestureGo";
if (count weapons ACE_player > 0) then {
_chance = 0.8;
} else {
_chance = 0.5;
};
{
if (count (weapons _unit) == 0 and random 1 < _chance) then {
[-2, {
(_this select 0) setUnitPos "AUTO";
(_this select 0) doMove [(getPos (_this select 0) select 0) + DISTANCE * (eyeDirection (_this select 1) select 0), (getPos (_this select 0) select 1) + DISTANCE * (eyeDirection (_this select 1) select 1), 0];
}, [_x, ACE_player]] call CBA_fnc_globalExecute;
};
} foreach (_unit nearEntities ["Civilian", RADIUS]);