mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
22 lines
396 B
Plaintext
22 lines
396 B
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: Brandon (TCVM)
|
|
* Confirm GPS weapon settings and serialize to variables
|
|
*
|
|
* Arguments:
|
|
* Guidance Arg Array <ARRAY>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [] call ace_missileguidance_fnc_gps_confirm
|
|
*
|
|
* Public: No
|
|
*/
|
|
if (GVAR(gps_mode) isEqualTo "pb") then {
|
|
[GVAR(gps_pbMode)] call FUNC(gps_saveAttackSettings);
|
|
};
|
|
closeDialog 0;
|
|
|