mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
40 lines
957 B
Plaintext
40 lines
957 B
Plaintext
/*
|
|
* Author: PabstMirror
|
|
* Module Function to make a unit surrender (can be called from editor)
|
|
* Also used for threeden attribute expression with dummy Logic Object
|
|
*
|
|
* Arguments:
|
|
* 0: The Module Logic <OBJECT>
|
|
* 1: synced objects <ARRAY>
|
|
* 2: Activated <BOOL>
|
|
*
|
|
* Return Value:
|
|
* Nothing
|
|
*
|
|
* Example:
|
|
* [objNull, [player], true] call ace_captives_fnc_moduleSurrender
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_logic", "_units", "_activated"];
|
|
|
|
TRACE_3("params",_logic,_units,_activated);
|
|
|
|
if (!_activated) exitWith {};
|
|
if (!isServer) exitWith {};
|
|
|
|
//Modules run before postInit can instal the event handler, so we need to wait a little bit
|
|
[{
|
|
params ["_units"];
|
|
{
|
|
TRACE_2("event",_x,local _x);
|
|
["SetSurrendered", [_x], [_x, true]] call EFUNC(common,targetEvent);
|
|
} forEach _units;
|
|
}, [_units], 0.05] call EFUNC(common,waitAndExecute);
|
|
|
|
if (!isNull _logic) then {
|
|
deleteVehicle _logic;
|
|
};
|