mirror of
https://github.com/valmojr/armatak.git
synced 2026-06-13 21:23:30 +00:00
32 lines
971 B
Plaintext
32 lines
971 B
Plaintext
// function name: armatak_fnc_extract_info
|
|
// function author: Valmo
|
|
// function description: Receives a player's unit as param and return the information array needed to send the HTTP request
|
|
|
|
params["_unit"];
|
|
|
|
private _atak_uid = getPlayerUID _unit;
|
|
private _atak_callsign = [_unit] call armatak_fnc_extract_callsign;
|
|
private _atak_bearing = getDir _unit;
|
|
private _atak_team_color = "team_color";
|
|
private _atak_role = [_unit] call armatak_fnc_extract_role;
|
|
private _atak_location = worldName;
|
|
private _atak_position = getPos _unit;
|
|
|
|
/*
|
|
desired object
|
|
{
|
|
"longitude": -77.0104,
|
|
"latitude": 38.889,
|
|
"attitude": "hostile",
|
|
"bearing": 132, getDir function
|
|
"geoObject": "Gnd Combat Infantry Sniper", extract_role function
|
|
"how": "nonCoT", -- default and won't change
|
|
"name": "Putin",
|
|
"timeout": 600
|
|
}
|
|
*/
|
|
|
|
|
|
_unit_info = [_atak_uid, _atak_callsign, _atak_bearing ,_atak_team_color, _atak_role, _atak_display_type, _atak_location, _atak_position];
|
|
|
|
_unit_info |