ACE3/addons/atragmx/functions/fnc_toggle_target_range_assist.sqf
jonpas 742626ff1a
General - Relative script_component.hpp includes (#9378)
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2023-09-12 20:58:10 +02:00

33 lines
805 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: Ruthberg
* Toggles the target range assist screen on/off
*
* Arguments:
* update range? <NUMBER>
*
* Return Value:
* None
*
* Example:
* 1 call ace_atragmx_fnc_toggle_target_range_assist
*
* Public: No
*/
if (ctrlVisible 7000) then {
false call FUNC(show_target_range_assist);
true call FUNC(show_main_page);
if (_this == 1) then {
ctrlSetText [320, Str(parseNumber(ctrlText 7012))];
ctrlSetText [140040, Str(parseNumber(ctrlText 7012))];
ctrlSetText [340, Str(parseNumber(ctrlText 7013))];
ctrlSetText [140060, Str(parseNumber(ctrlText 7013))];
[] call FUNC(calculate_target_solution);
};
} else {
false call FUNC(show_main_page);
true call FUNC(show_target_range_assist);
};