ACE3/addons/respawn/functions/fnc_moduleRallypoint.sqf
2015-09-26 16:28:18 +02:00

30 lines
516 B
Plaintext

/*
* Author: commy2
* Initializes the Rallypoint module.
*
* Arguments:
* 0: Logic <OBJECT>
* 1: Synced units <ARRAY>
* 2: Activated <BOOL>
*
* Return Value:
* None
*
* Example:
* [logic, [ACE_Player], true] call ace_respawn_fnc_moduleRallypoint
*
* Public: No
*/
#include "script_component.hpp"
params ["_logic", "_units", "_activated"];
if !(_activated) exitWith {};
{
_x setVariable ["ACE_canMoveRallypoint", true];
false
} count _units;
ACE_LOGINFO("Rallypoint Module Initialized.");