mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
29 lines
812 B
Plaintext
29 lines
812 B
Plaintext
|
/*
|
||
|
* Author: Glowbal
|
||
|
* Initialize variables for loadable objects. Called from init EH.
|
||
|
*
|
||
|
* Arguments:
|
||
|
* 0: Any object <OBJECT>
|
||
|
*
|
||
|
* Return value:
|
||
|
* None
|
||
|
*
|
||
|
* Public: No
|
||
|
*/
|
||
|
|
||
|
#include "script_component.hpp"
|
||
|
|
||
|
params ["_object"];
|
||
|
|
||
|
if (getNumber (configFile >> "CfgVehicles" >> typeOf _object >> QGVAR(canLoad)) != 1) exitwith {};
|
||
|
|
||
|
private ["_type", "_action"];
|
||
|
_type = typeOf _object;
|
||
|
|
||
|
// do nothing if the class is already initialized
|
||
|
if (_type in GVAR(initializedItemClasses)) exitWith {};
|
||
|
GVAR(initializedItemClasses) pushBack _type;
|
||
|
|
||
|
_action = [QGVAR(load), localize LSTRING(loadObject), "", {[_player, _target] call FUNC(startLoadIn)}, {[_player, _target] call FUNC(canLoad)}] call EFUNC(interact_menu,createAction);
|
||
|
[_type, 0, ["ACE_MainActions"], _action] call EFUNC(interact_menu,addActionToClass);
|