ACE3/addons/atragmx/functions/fnc_toggle_range_card.sqf

19 lines
529 B
Plaintext
Raw Normal View History

#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));
} 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);
};