From 485e67120c3296798d000e4bde7fcaa313c6490b Mon Sep 17 00:00:00 2001 From: Valmo Trindade Date: Tue, 17 Jun 2025 05:16:32 -0300 Subject: [PATCH] reduce the external gps position frequency to 2Hz --- addons/client/functions/fnc_startUDPSocket.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/client/functions/fnc_startUDPSocket.sqf b/addons/client/functions/fnc_startUDPSocket.sqf index da8ca0f..5d819ba 100644 --- a/addons/client/functions/fnc_startUDPSocket.sqf +++ b/addons/client/functions/fnc_startUDPSocket.sqf @@ -25,7 +25,7 @@ player setVariable [QGVAR(eudConnected), true]; if (player getVariable [QGVAR(eudConnected), false]) then { "armatak" callExtension ["udp_socket:send_gps_cot", [player call FUNC(extractClientPosition)]]; }; -}, 2, []] call CBA_fnc_addPerFrameHandler; +}, 0.5, []] call CBA_fnc_addPerFrameHandler; deleteVehicle _logic; closeDialog 1; \ No newline at end of file