mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
108ff4f644
Regex used: \[(.+?),(.+?),(.+?)\]\s+call\s+E?FUNC\((common,)?(target|object)Event\) [$1,$3,$2] call CBA_fnc_targetEvent E?FUNC\((common,)?(server|global|local)Event\) CBA_fnc_$2Event E?FUNC\((common,)?(add|remove)EventHandler\) CBA_fnc_$2EventHandler
25 lines
578 B
Plaintext
25 lines
578 B
Plaintext
/*
|
|
* Author: PabstMirror
|
|
* Data transfer over a connected cable. Based on page 14 of pdf.
|
|
*
|
|
* Arguments:
|
|
* Nothing
|
|
*
|
|
* Return Value:
|
|
* Nothing
|
|
*
|
|
* Example:
|
|
* [] call ace_vector_fnc_dataTransfer
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
private ["_distance", "_direction", "_azimuth", "_inclination"];
|
|
|
|
_distance = call FUNC(getDistance);
|
|
_direction = call FUNC(getDirection);
|
|
_azimuth = _direction select 0;
|
|
_inclination = _direction select 1;
|
|
//Send Data to connected GPS
|
|
["RangerfinderData", [_distance, _azimuth, _inclination]] call CBA_fnc_localEvent; |