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"
|
|
|
|
|
2015-02-28 20:48:46 +00:00
|
|
|
if (uiNamespace getVariable [QGVAR(cursorMenuOpened),false]) then {
|
|
|
|
closeDialog 0;
|
|
|
|
};
|
|
|
|
|
2015-02-18 21:58:06 +00:00
|
|
|
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);
|
2015-03-20 02:32:44 +00:00
|
|
|
[GVAR(selectedTarget), ACE_player, (GVAR(selectedAction) select 0) select 6] call GVAR(selectedStatement);
|
2015-02-18 21:58:06 +00:00
|
|
|
};
|
2015-03-11 03:49:46 +00:00
|
|
|
|
|
|
|
if (GVAR(keyDownSelfAction)) then {
|
|
|
|
GVAR(keyDownSelfAction) = false;
|
2015-03-11 17:48:17 +00:00
|
|
|
["interactMenuClosed", [1]] call EFUNC(common,localEvent);
|
2015-03-11 03:49:46 +00:00
|
|
|
};
|
|
|
|
|
2015-02-18 21:58:06 +00:00
|
|
|
GVAR(expanded) = false;
|
|
|
|
GVAR(lastPath) = [];
|
|
|
|
GVAR(menuDepthPath) = [];
|
|
|
|
true
|