From 8007b6ada6dc20128d3e6d0329e2e40160b576b7 Mon Sep 17 00:00:00 2001 From: Valmo Trindade Date: Tue, 14 Oct 2025 19:10:45 -0300 Subject: [PATCH] chenged UDP Socket freq to 10hz to avoid traffic jam --- 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 6663dcf..71100e4 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)]]; }; -}, 0.02, []] call CBA_fnc_addPerFrameHandler; +}, 0.1, []] call CBA_fnc_addPerFrameHandler; deleteVehicle _logic; closeDialog 1;