mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
4872e186cd
* Add quickmount files from ACEX * Rename to ACE3, Streamline, Use clientInit * Rename functions to ACE3, Fix crew getting * Fix enabled text * Fix texts * Remove spaces * Rework seat search
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);
|