From 0ca2cb34eac3c894c0f346e7a24d9e1c49a4f102 Mon Sep 17 00:00:00 2001 From: PabstMirror Date: Sat, 24 Jan 2015 12:58:01 -0600 Subject: [PATCH] setVariable names --- addons/vehiclelock/functions/fnc_getVehicleSideKey.sqf | 2 +- addons/vehiclelock/functions/fnc_lockpick.sqf | 2 +- addons/vehiclelock/readme.md | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/addons/vehiclelock/functions/fnc_getVehicleSideKey.sqf b/addons/vehiclelock/functions/fnc_getVehicleSideKey.sqf index 91ccaf490d..819c13c332 100644 --- a/addons/vehiclelock/functions/fnc_getVehicleSideKey.sqf +++ b/addons/vehiclelock/functions/fnc_getVehicleSideKey.sqf @@ -24,7 +24,7 @@ _veh = [_this, 0, objNull, [objNull]] call bis_fnc_param; if (isNull _veh) exitWith {["ACE_VehicleLock_fnc_getVehicleSideKey: null vehicle"] call BIS_fnc_error; ""}; _vehConfigSide = [_veh, true] call BIS_fnc_objectSide; -_vehSide = _veh getVariable [QGVAR(lock_side), _vehConfigSide]; +_vehSide = _veh getVariable [QGVAR(lockSide), _vehConfigSide]; _returnValue = ""; diff --git a/addons/vehiclelock/functions/fnc_lockpick.sqf b/addons/vehiclelock/functions/fnc_lockpick.sqf index 30abc0e4a3..0678c5f938 100644 --- a/addons/vehiclelock/functions/fnc_lockpick.sqf +++ b/addons/vehiclelock/functions/fnc_lockpick.sqf @@ -43,7 +43,7 @@ if (!("ACE_key_lockpick" in (items _unit))) exitWith { false }; -_vehLockpickStrenth = _veh getVariable[QGVAR(LockpickStrength), GVAR(DefaultLockpickStrength)]; +_vehLockpickStrenth = _veh getVariable[QGVAR(lockpickStrength), GVAR(DefaultLockpickStrength)]; if (typeName _vehLockpickStrenth != "SCALAR") exitWith { ["ACE_VehicleLock_fnc_lockpick: 'ACE_vehicleLock_LockpickStrength' invalid: (%1)", _veh] call BIS_fnc_error; false diff --git a/addons/vehiclelock/readme.md b/addons/vehiclelock/readme.md index fd2b119841..a1bd223a52 100644 --- a/addons/vehiclelock/readme.md +++ b/addons/vehiclelock/readme.md @@ -30,9 +30,9 @@ Custom keys (one key will only open a specific vehicle and nothing else) * `ACE_VehicleLock_DefaultLockpickStrength` - Time in seconds to lock pick globaly, can also set per-vehicle (-1 would disable) #### Vehicle setVariables: -* `ACE_lock_side` - SIDE: overrides a vehicle's side, allows indfor to use little-bird's with indp keys -* `ACE_vehicleLock_pickStr` - NUMBER: secons, determines how long lockpicking with take, overrides ACE_VehicleLock_DefaultLockpickStrength -* `ACE_lock_customKeys` - ARRAY: array of strings of magazinesDetails, use the following function to modify +* `ACE_VehicleLock_lockSide` - SIDE: overrides a vehicle's side, allows indfor to use little-bird's with indp keys +* `ACE_vehicleLock_lockpickStrength` - NUMBER: secons, determines how long lockpicking with take, overrides ACE_VehicleLock_DefaultLockpickStrength +* `ACE_VehicleLock_customKeys` - ARRAY: array of strings of magazinesDetails, use the following function to modify `[bob, car1, true] call ACE_VehicleLock_fnc_addKeyForVehicle;` will add a `ACE_magazine_customKey` to bob and program it to work on car1