mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
45 lines
1.0 KiB
Plaintext
45 lines
1.0 KiB
Plaintext
/*
|
|
* Author: commy2
|
|
* On button up
|
|
*
|
|
* Arguments:
|
|
* None
|
|
*
|
|
* Return value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* call ace_interaction_fnc_onButtonUp
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
private ["_player", "_vehicle", "_target", "_count", "_index", "_action", "_statement", "_condition", "_conditionShow", "_distance"];
|
|
|
|
_player = ACE_player;
|
|
_vehicle = vehicle _player;
|
|
_target = [GVAR(Target), _player] select (GVAR(MenuType) % 2 == 1);
|
|
|
|
_count = count GVAR(Buttons);
|
|
_index = call FUNC(getSelectedButton);
|
|
|
|
_action = if (_index != -1 && {_index < _count}) then {
|
|
GVAR(Buttons) select _index
|
|
} else {
|
|
["", {}, {false}, 0, [], "", "", {false}, [], 0]
|
|
};
|
|
|
|
(findDisplay 1713999) closeDisplay 1;
|
|
closeDialog 0;
|
|
|
|
|
|
_statement = _action select 1;
|
|
_condition = _action select 2;
|
|
_conditionShow = _action select 7;
|
|
_distance = _action select 9;
|
|
|
|
if ((_distance == 0 || {[GVAR(Target), _distance] call FUNC(isInRange)}) && {[_target, _player] call _condition} && {[_target, _player] call _conditionShow}) then {
|
|
[_target, _player] call _statement;
|
|
};
|