ACE3/addons/fcs/functions/fnc_keyDown.sqf
2015-01-12 11:02:44 +01:00

34 lines
773 B
Plaintext

/*
* Author: KoffeinFlummi
*
* Starts watching the target for sideways correction.
*
* Arguments:
* none
*
* Return Value:
* none
*/
#include "script_component.hpp"
private ["_vehicle", "_distance", "_weaponDirection"];
_vehicle = _this select 0;
_distance = _this select 1;
GVAR(Enabled) = true;
GVAR(Time) = time;
if (_distance == 0) then {
_distance = [5, 5000, 0] call EFUNC(core, getTargetDistance); // maximum distance: 5000m, 5m precision
};
_weaponDirection = _vehicle weaponDirection currentWeapon _vehicle;
GVAR(Position) = [
(getPos _vehicle select 0) + _distance * (_weaponDirection select 0),
(getPos _vehicle select 1) + _distance * (_weaponDirection select 1),
(getPos _vehicle select 2) + _distance * (_weaponDirection select 2)
];