2015-04-06 13:51:59 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
#define _dsp (uiNamespace getVariable "ATragMX_Display")
|
|
|
|
|
|
|
|
if (ctrlVisible 5006) then
|
|
|
|
{
|
2015-04-07 20:44:26 +00:00
|
|
|
false execVM QUOTE(PATHTOF(functions\fnc_show_range_card.sqf));
|
|
|
|
true execVM QUOTE(PATHTOF(functions\fnc_show_main_page.sqf));
|
2015-04-06 13:51:59 +00:00
|
|
|
} else
|
|
|
|
{
|
2015-04-07 20:44:26 +00:00
|
|
|
false execVM QUOTE(PATHTOF(functions\fnc_show_main_page.sqf));
|
|
|
|
true execVM QUOTE(PATHTOF(functions\fnc_show_range_card.sqf));
|
|
|
|
|
|
|
|
ctrlSetFocus (_dsp displayCtrl 5001);
|
|
|
|
|
|
|
|
[] call FUNC(calculate_range_card);
|
|
|
|
[] call FUNC(update_range_card);
|
2015-04-06 13:51:59 +00:00
|
|
|
};
|