mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
cd30b09b4f
* Convert ACE_settings to CBA_settings * Run Modules Globaly, BWC for SetSetting * Add support for string settings * ACE_ServerSettings warning * Add handler for global setting being changed * Add deprecated and replaced not to Settings Framework doc * Remove options menu UI, Move Debug and HeadBug Fix to Options in Pause Menu * Change modules scope to 1 * Disable debug
29 lines
938 B
Plaintext
29 lines
938 B
Plaintext
/*
|
|
* 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:
|
|
* [fromModule] call ACE_VehicleLock_fnc_hasKeyForVehicle;
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_logic", "_syncedUnits", "_activated"];
|
|
TRACE_3("params",_logic,_syncedUnits,_activated);
|
|
|
|
if (!_activated) exitWith {WARNING("Vehicle Lock Init Module - placed but not active");};
|
|
|
|
//Set the GVAR for default lockpick strength
|
|
[_logic, QGVAR(DefaultLockpickStrength), "DefaultLockpickStrength"] call EFUNC(common,readSettingFromModule);
|
|
[_logic, QGVAR(LockVehicleInventory), "LockVehicleInventory"] call EFUNC(common,readSettingFromModule);
|
|
[_logic, QGVAR(VehicleStartingLockState), "VehicleStartingLockState"] call EFUNC(common,readSettingFromModule);
|