2023-09-12 18:58:10 +00:00
|
|
|
#include "..\script_component.hpp"
|
2015-01-23 22:40:39 +00:00
|
|
|
/*
|
2015-03-15 16:27:21 +00:00
|
|
|
* Author: PabstMirror
|
|
|
|
* Function for setup module. Sets default lockpick strength and default lock state.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: The Module Logic Object <OBJECT>
|
|
|
|
* 1: synced objects <ARRAY>
|
|
|
|
* 2: Activated <BOOL>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
2023-11-08 18:00:05 +00:00
|
|
|
* [fromModule] call ace_vehiclelock_fnc_moduleInit;
|
2015-03-15 16:27:21 +00:00
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
2015-01-23 22:40:39 +00:00
|
|
|
|
2015-08-04 03:11:45 +00:00
|
|
|
params ["_logic", "_syncedUnits", "_activated"];
|
2016-08-27 15:35:45 +00:00
|
|
|
TRACE_3("params",_logic,_syncedUnits,_activated);
|
2015-01-23 22:40:39 +00:00
|
|
|
|
|
|
|
if (!_activated) exitWith {WARNING("Vehicle Lock Init Module - placed but not active");};
|
|
|
|
|
2015-03-15 16:27:21 +00:00
|
|
|
//Set the GVAR for default lockpick strength
|
|
|
|
[_logic, QGVAR(DefaultLockpickStrength), "DefaultLockpickStrength"] call EFUNC(common,readSettingFromModule);
|
|
|
|
[_logic, QGVAR(LockVehicleInventory), "LockVehicleInventory"] call EFUNC(common,readSettingFromModule);
|
2015-04-28 05:08:28 +00:00
|
|
|
[_logic, QGVAR(VehicleStartingLockState), "VehicleStartingLockState"] call EFUNC(common,readSettingFromModule);
|