mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
26 lines
574 B
Plaintext
26 lines
574 B
Plaintext
|
/*
|
||
|
* Author: Kingsley
|
||
|
* Initializes the quick-mount module.
|
||
|
*
|
||
|
* Arguments:
|
||
|
* 0: The module logic <LOGIC>
|
||
|
* 1: Units <ARRAY> (Unused)
|
||
|
* 2: Activated <BOOL>
|
||
|
*
|
||
|
* Return Value:
|
||
|
* None
|
||
|
*
|
||
|
* Public: No
|
||
|
*/
|
||
|
#include "script_component.hpp"
|
||
|
|
||
|
if (!isServer) exitWith {};
|
||
|
|
||
|
params ["_logic", "", "_activated"];
|
||
|
|
||
|
if (!_activated) exitWith {};
|
||
|
|
||
|
[_logic, QGVAR(enabled), "enabled"] call EFUNC(common,readSettingFromModule);
|
||
|
[_logic, QGVAR(distance), "distance"] call EFUNC(common,readSettingFromModule);
|
||
|
[_logic, QGVAR(speed), "speed"] call EFUNC(common,readSettingFromModule);
|