mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
29 lines
651 B
Plaintext
29 lines
651 B
Plaintext
/*
|
|
* Author: Ruthberg
|
|
* Updates the scope unit fields
|
|
*
|
|
* Arguments:
|
|
* Nothing
|
|
*
|
|
* Return Value:
|
|
* Nothing
|
|
*
|
|
* Example:
|
|
* call ace_atragmx_fnc_update_scope_unit
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
ctrlSetText [2000, GVAR(scopeUnits) select GVAR(currentScopeUnit)];
|
|
ctrlSetText [2001, Str(GVAR(currentScopeClickNumber))];
|
|
|
|
if (GVAR(currentScopeUnit) == 3) then {
|
|
ctrlSetText [5000, format["Clicks=%1", GVAR(currentScopeClickNumber)]];
|
|
if (GVAR(showMainPage)) then {
|
|
ctrlShow [2001, true];
|
|
};
|
|
} else {
|
|
ctrlSetText [5000, GVAR(scopeUnits) select GVAR(currentScopeUnit)];
|
|
ctrlShow [2001, false];
|
|
}; |