ACE3/addons/interaction/functions/fnc_addSelectableItem.sqf

33 lines
735 B
Plaintext
Raw Normal View History

2015-01-11 19:32:51 +00:00
/*
* Author: Garth de Wet (LH)
* Adds an item to the select menu
*
* Arguments:
* 0: List container <ARRAY/NUMBER>
* 1: Display name <STRING>
* 2: Picture <STRING>
* 3: Data <STRING/CODE>
*
* Return value:
* Container <ARRAY/NUMBER>
*
* Example:
2015-05-14 18:00:56 +00:00
* [actions, "Banana", "UI\dot_ca.paa", "bananaContents"] call ace_interaction_fnc_addSelectableItem
*
* Public: No
*/
2015-01-11 23:13:47 +00:00
#include "script_component.hpp"
2015-05-09 20:14:00 +00:00
PARAMS_4(_container,_displayName,_picture,_data);
2015-01-11 19:32:51 +00:00
if (_picture == "" || _picture == "PictureThing") then {
_picture = QUOTE(PATHTOF(UI\dot_ca.paa));
2015-01-11 19:32:51 +00:00
};
2015-05-09 20:14:00 +00:00
private ["_index"];
_index = lbAdd [_container, _displayName];
lbSetData [_container, _index, str _data];
lbSetPicture [_container, _index, _picture];
2015-01-11 19:32:51 +00:00
_container