ACE3/addons/atragmx/functions/fnc_create_dialog.sqf

26 lines
676 B
Plaintext
Raw Normal View History

#include "script_component.hpp"
//if (dialog) exitWith { false };
2015-04-06 19:11:02 +00:00
if (underwater ACE_player) exitWith { false };
if (!("ACE_ATragMX" in (uniformItems ACE_player)) && !("ACE_ATragMX" in (vestItems ACE_player))) exitWith { false };
createDialog 'ATragMX_Display';
2015-04-11 12:51:40 +00:00
call FUNC(update_target_selection);
true call FUNC(show_main_page);
2015-04-11 12:51:40 +00:00
false call FUNC(show_add_new_gun);
false call FUNC(show_gun_list);
false call FUNC(show_range_card);
false call FUNC(show_range_card_setup);
false call FUNC(show_target_range_assist);
false call FUNC(show_target_speed_assist);
false call FUNC(show_target_speed_assist_timer);
{
2015-04-07 20:44:26 +00:00
lbAdd [6000, _x select 0];
2015-04-08 09:05:28 +00:00
} forEach GVAR(gunList);
true