Re : Re: Mouse look toggle
Hello Devs,
we are still in need of this fix and you do know it would make the game more enjoyable for players.
Please, hear us.
/beg
Can do this with AutoHotkey
#IfWinActive ahk_exe lotroclient64.exe
{
state := false
$MButton::
state := !state
if state
Send {RButton down}
else
Send {RButton Up}
return
}
---
Save as AutoHotKey.ahk in your AutoHotKey folder if you don't know what you're doing. If you have an existing one, just paste it in there. AutoHotKey won't run without this file (free software ;)).
This binds it to the more modern middle button. Binding the Right button might cause problems eg right clicking on people in chat.
https://www.autohotkey.com/download/ahk-install.exe