1. загружаешь прогу с http://www.autohotkey.com/ на выбор 32 или 64 битную версию
2. устанавливаешь
3. кликаешь на ярлык, в появившемся окошке жмёшь yes
3.Появляется текстовое окно, удаляешь там всё и заменяешь на
[spoil]#SingleInstance Force
#MaxHotkeysPerInterval 99999
#IfWinActive ahk_class DarkSouls2
; Hold to block with a shield in left hand
LShift::Send {u down}
LShift Up::Send {u up}
; Strong attack (left hand) / Parry
CapsLock::
XButton1:: send {y down}
CapsLock up::
XButton1 up:: send {y up}
; Attack (left hand)
XButton2::send {u down}
XButton2 up::send {u up}
; Boss key
LAlt & Tab::AltTab
; Wield right weapon two-handed (hold for left weapon)
Tab::n
; Attack (right hand)
$LButton::
send {h down}
send {LButton down}
return
$LButton up::
send {h up}
send {LButton up}
return
; Strong attack (right hand)
$RButton::
send {g down}
send {RButton down}
return
$RButton up::
send {g up}
send {RButton up}
return
; Equipment menu
1::
send {Escape down}
sleep 30
send {Escape up}
send {ENTER down}
sleep 30
send {ENTER up}
return
; Inventory menu
2::
send {Escape down}
sleep 30
send {Escape up}
send {right down}
sleep 30
send {right up}
send {ENTER down}
sleep 30
send {ENTER up}
return
; Player status menu
3::
send {Escape down}
sleep 30
send {Escape up}
send {right down}
sleep 30
send {right up}
send {right down}
sleep 30
send {right up}
send {ENTER down}
sleep 30
send {ENTER up}
return
; Message menu
4::
send {Escape down}
sleep 30
send {Escape up}
send {right down}
sleep 30
send {right up}
send {right down}
sleep 30
send {right up}
send {right down}
sleep 30
send {right up}
send {ENTER down}
sleep 30
send {ENTER up}
return
; Interact (open doors, speak to the NPCs)
e::ENTER
; Use item (drink dat estus)
q::e
; Guard break
c::
^LButton::
send {w down}
send {h down}
send {w up}
send {h up}
return
; Jump attack
r::
^RButton::
send {w down}
send {g down}
send {w up}
send {g up}
return
; Switch left weapon
x::
WheelLeft::
send {left down}
send {left up}
return
; Switch right weapon
v::
WheelRight::
send {right down}
send {right up}
return
F1::Suspend [/spoil]
5.Сохраняешь
Теперь в игре управление заменено(shift-выставить щит, Q-выпить estus flask и т.д.,E-действие, левая кнопка мыши- быстрый удар,правая-сильный) и убран инпут лаг с мыши . Если в игре кликнуть F1 то вернётся старое управление и наоборот
Большое спасибо! :) P.S.Попробовал-все тоже самое