ACE3/addons/interact_menu/functions/fnc_keyUpSelfAction.sqf

30 lines
562 B
Plaintext
Raw Normal View History

2015-02-21 20:11:03 +00:00
/*
* Author: NouberNou
* Handle self action key up
*
* Argument:
* None
*
* Return value:
* true <BOOL>
*
* Public: No
*/
2015-02-18 21:58:06 +00:00
#include "script_component.hpp"
if (uiNamespace getVariable [QGVAR(cursorMenuOpened),false]) then {
closeDialog 0;
};
2015-02-18 21:58:06 +00:00
GVAR(keyDownSelfAction) = false;
if(GVAR(actionSelected)) then {
2015-02-19 13:49:36 +00:00
this = GVAR(selectedTarget);
2015-02-18 21:58:06 +00:00
_player = ACE_Player;
_target = GVAR(selectedTarget);
[GVAR(selectedTarget), ACE_player] call GVAR(selectedAction);
2015-02-18 21:58:06 +00:00
};
GVAR(expanded) = false;
GVAR(lastPath) = [];
GVAR(menuDepthPath) = [];
true