2015-01-11 19:32:51 +00:00
|
|
|
/*
|
2015-05-09 02:47:15 +00:00
|
|
|
* Author: Garth de Wet (LH)
|
|
|
|
* Prepares the select menu for use
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Header Text <STRING>
|
|
|
|
* 1: Approve Button Text <STRING>
|
|
|
|
*
|
|
|
|
* Return value:
|
|
|
|
* Container object <ARRAY/NUMBER>
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* _array = ["Select Explosive", "Place"] call ace_interaction_fnc_prepareSelectMenu
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
2015-01-11 23:13:47 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-01-11 19:32:51 +00:00
|
|
|
private ["_buttonAction", "_header", "_buttonText", "_cancelButton"];
|
|
|
|
closeDialog 0;
|
2015-03-01 02:00:24 +00:00
|
|
|
_header = _this select 0;
|
|
|
|
_buttonText = _this select 1;
|
|
|
|
if (isNil "_buttonText" or {_buttonText == ""}) then {
|
2015-04-06 16:22:43 +00:00
|
|
|
_buttonText = localize "STR_ACE_Interaction_MakeSelection";
|
2015-03-01 02:00:24 +00:00
|
|
|
};
|
|
|
|
createDialog "RscACE_SelectAnItem";
|
|
|
|
ctrlSetText [8860, _buttonText];
|
|
|
|
ctrlSetText [8870, _header];
|
2015-01-11 19:32:51 +00:00
|
|
|
|
2015-03-01 02:00:24 +00:00
|
|
|
lbClear 8866;
|
2015-01-11 19:32:51 +00:00
|
|
|
|
2015-03-01 02:00:24 +00:00
|
|
|
8866
|