forked from IDI-Systems/acre2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfnc_godModeModifyGroup.sqf
54 lines (46 loc) · 1.83 KB
/
fnc_godModeModifyGroup.sqf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#include "script_component.hpp"
/*
* Author: ACRE2Team
* Modifies who can hear a message from God Mode.
*
* Arguments:
* 0: Unit or UID or array of either or code returning array of units <OBJECT, STRING, ARRAY, CODE> (default: [])
* 1: Group to effect (0-based index) <NUMBER> (default: 0)
* 2: Action. 0 for set, 1 for add and 2 for subtract <NUMBER> (default: 0)
*
* Return Value:
* Group modified successfully <BOOL>
*
* Example:
* [[unit1, unit2], 0, 1] call acre_api_fnc_godModeModifyGroup
* [["76561198040512062", "76561198046921073"], 0, 1] call acre_api_fnc_godModeModifyGroup
* [{allUnits select {alive _x}}, 0, 1] call acre_api_fnc_godModeModifyGroup
*
* Public: Yes
*/
params [
["_units", [], [objNull, "", [], {}]],
["_group", 0, [0]],
["_action", 0, [0]]
];
if ((_group < 0) || {_group >= GODMODE_NUMBER_OF_GROUPS}) exitWith {
ERROR_2("Invalid group ID. Group ID must be between 0 and %1, but %2 is entered.",GODMODE_NUMBER_OF_GROUPS-1,_group);
false
};
if ((_action < GODMODE_ACTION_SET) || {_action > GODMODE_ACTION_SUBTRACT}) exitWith {
ERROR_4("Invalid action %1. Valid values are %2 (set), %3 (add) and %4 (subtract).",_action,GODMODE_ACTION_SET,GODMODE_ACTION_ADD,GODMODE_ACTION_SUBTRACT);
false
};
if ((_units isEqualType {}) && {_action != GODMODE_ACTION_SET}) exitWith {
ERROR_2("Invalid action %1. Only %2 (set) is supported for code argument.",_action,GODMODE_ACTION_SET);
false
};
if (((EGVAR(sys_godmode,groupPresets) select _group) isEqualType {}) && {_action != GODMODE_ACTION_SET}) exitWith {
ERROR_2("Invalid action %1. Only %2 (set) is supported when code exists in group.",_action,GODMODE_ACTION_SET);
false
};
if (!(_units isEqualType []) && {!(_units isEqualType {})}) then {
_units = [_units];
};
[_units, _group, _action] call EFUNC(sys_godmode,modifyGroup);
true