mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
24 lines
419 B
Plaintext
24 lines
419 B
Plaintext
|
#include "script_component.hpp"
|
||
|
/*
|
||
|
* Author: Jonpas
|
||
|
* Initializes the Sitting module.
|
||
|
*
|
||
|
* Arguments:
|
||
|
* 0: The module logic <LOGIC>
|
||
|
* 1: Units <ARRAY>
|
||
|
* 2: Activated <BOOL>
|
||
|
*
|
||
|
* Return Value:
|
||
|
* None
|
||
|
*
|
||
|
* Public: No
|
||
|
*/
|
||
|
|
||
|
params ["_logic", "_units", "_activated"];
|
||
|
|
||
|
if (!_activated) exitWith {};
|
||
|
|
||
|
[_logic, QXGVAR(enable), "enable"] call EFUNC(common,readSettingFromModule);
|
||
|
|
||
|
INFO("Sitting Module Initialized.");
|