2021-04-19 07:27:49 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
/*
|
|
|
|
* Author: Brandon (TCVM)
|
|
|
|
* Returns attack data for GPS guided bomb
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [] call ace_missileguidance_fnc_gps_getAttackData
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (GVAR(gps_mode) isEqualTo "too") then {
|
|
|
|
private _target = getPilotCameraTarget (vehicle ACE_PLAYER);
|
|
|
|
_target params ["_tracking", "_position", "_object"];
|
|
|
|
GVAR(gps_currentSettings) set [0, _position]
|
|
|
|
};
|
2021-04-21 21:53:52 +00:00
|
|
|
|
|
|
|
// create a copy of this array to make sure values are not overwritten
|
|
|
|
[
|
|
|
|
GVAR(gps_currentSettings)#0,
|
|
|
|
GVAR(gps_currentSettings)#1,
|
|
|
|
GVAR(gps_currentSettings)#2
|
|
|
|
]
|
2021-04-19 07:27:49 +00:00
|
|
|
|