ACE3/addons/missileguidance/functions/fnc_gps_attackOnFired.sqf

24 lines
649 B
Plaintext
Raw Normal View History

2023-10-07 00:45:05 +00:00
#include "..\script_component.hpp"
2021-04-19 07:27:49 +00:00
/*
2023-09-09 16:30:39 +00:00
* Author: tcvm
2021-04-19 07:27:49 +00:00
* Sets up wireGuided state arrays (called from missileGuidance's onFired).
*
* Arguments:
* Guidance Arg Array <ARRAY>
*
* Return Value:
* None
*
* Example:
* [] call ace_missileguidance_fnc_wire_onFired
*
* Public: No
*/
params ["_firedEH", "", "", "", "_stateParams", "", ""];
_stateParams params ["", "", "_attackProfileStateParams"];
_firedEH params ["_shooter","","","","_ammo","","_projectile"];
_attackProfileStateParams set [0, [] call FUNC(gps_getAttackData)];
_attackProfileStateParams set [1, (getPosASL _projectile) select 2];
_attackProfileStateParams set [2, false];