У нас вы можете посмотреть бесплатно BEST UPDATED R6 No Recoil Script - Logitech G Hub Script или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
This is an updated version of the script i uploaded earlier. Now it supports 3 activation keys and also includes a horizontal recoil function. You need to test whether it works on the Logitech profile for the desktop or for a specific game (Rainbow Six Siege, etc.). Script: local activateKey = "scrolllock" -- Keys: "capslock", "numlock" "scrolllock" local requireRightThenLeft = true local verticalForce = 5 -- Vertical Recoil local horizontalForce = 0 -- Horizontal recoil: NEUTRO (0 = CENTER), NEGATIVE (-1, -2, -3, ETC = LEFT), POSSIITIVE = (1, 2, 3, ETC = RIGHT) local delayMS = 9 EnablePrimaryMouseButtonEvents(true) function OnEvent(event, arg) if event == "PROFILE_ACTIVATED" then EnablePrimaryMouseButtonEvents(true) return end if not IsKeyLockOn(activateKey) then return end if requireRightThenLeft then if event == "MOUSE_BUTTON_PRESSED" and arg == 1 and IsMouseButtonPressed(3) then repeat MoveMouseRelative(horizontalForce, verticalForce) Sleep(delayMS) until not (IsMouseButtonPressed(1) and IsMouseButtonPressed(3)) end else if IsMouseButtonPressed(1) and IsMouseButtonPressed(3) then repeat MoveMouseRelative(horizontalForce, verticalForce) Sleep(delayMS) until not (IsMouseButtonPressed(1) and IsMouseButtonPressed(3)) end end end