mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
30 lines
619 B
Plaintext
30 lines
619 B
Plaintext
|
#include "script_component.hpp"
|
||
|
/*
|
||
|
* Author: Jonpas
|
||
|
* Rebalance AI groups accross HCs.
|
||
|
*
|
||
|
* Arguments:
|
||
|
* 0: Force <BOOL>
|
||
|
*
|
||
|
* Return Value:
|
||
|
* None
|
||
|
*
|
||
|
* Example:
|
||
|
* [false] call ace_headless_fnc_rebalance
|
||
|
*
|
||
|
* Public: No
|
||
|
*/
|
||
|
|
||
|
params ["_force"];
|
||
|
|
||
|
TRACE_3("Rebalance",GVAR(inRebalance),GVAR(headlessClients),_force);
|
||
|
|
||
|
// Exit if waiting for rebalance or no HCs present
|
||
|
if (GVAR(inRebalance) || {GVAR(headlessClients) isEqualTo []}) exitWith {};
|
||
|
|
||
|
// Transfer after rebalance delay
|
||
|
[FUNC(transferGroups), [_force], XGVAR(Delay)] call CBA_fnc_waitAndExecute;
|
||
|
|
||
|
// Currently in rebalance flag
|
||
|
GVAR(inRebalance) = true;
|