2015-03-15 16:27:21 +00:00
|
|
|
/*
|
|
|
|
* Author: PabstMirror
|
|
|
|
* On the server: Adds a key (magazineDetail name) to approved keys for a vehicle.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Vehicle <OBJECT>
|
|
|
|
* 1: Magazine Name <STRING>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [tank1, "someMagainze [id xx:yy]"] call ACE_VehicleLock_fnc_serverSetupCustomKeyEH
|
|
|
|
*
|
|
|
|
* Public: Yes
|
|
|
|
*/
|
2015-01-23 22:40:39 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
private ["_currentKeys"];
|
|
|
|
|
2015-08-04 03:11:45 +00:00
|
|
|
params ["_veh", "_key"];
|
2015-08-07 18:24:47 +00:00
|
|
|
TRACE_2("params",_veh,_key);
|
2015-01-23 22:40:39 +00:00
|
|
|
|
|
|
|
if (!isServer) exitWith {ERROR("only run on server");};
|
2015-03-15 16:27:21 +00:00
|
|
|
if (isNull _veh) exitWith {ERROR("null vehicle");};
|
2015-01-23 22:40:39 +00:00
|
|
|
if (_key == "") exitWith {ERROR("empty key string");};
|
|
|
|
|
|
|
|
_currentKeys = _veh getVariable [QGVAR(customKeys), []];
|
|
|
|
_currentKeys pushBack _key;
|
|
|
|
_veh setVariable [QGVAR(customKeys), _currentKeys, true];
|