Tired of using the keyboard ? Want to play mouse only? Maybe this helps! :)
If you agree with the following then I maybe have a solution for you:
- Holding down TAB or double clicking for runningis a little bit enervating ?
- You want to play the game entirely mouse only ?
How to do it
Here a simple Script for AUTOHOTKEY so that you only have to use the mouse to play the game.
Left Side Button = TAB is held. Press again TAB is unheld
Right Mouse = AutoRun
Middle Mouse = ESC
-----------------------------------------------
; Mouse Only Play for Disco Elysium
; Tab to Mouse Left Side XButton1
; Running to Right Mouse Button
; ESC to Middle Mouse Button
RButton::Click, 2
MButton::ESC
XButton1::
Toggle := !Toggle
If Toggle
Send {TAB Down}
else
Send {TAB Up}
return
-----------------------------------------------
Do not copy the --- lines ^^
You can get Auto Hot Key there ---> https://www.autohotkey.com/
Procedure:
- Install AHK
- Open an editor e.g. notepad, notepad++ etc
- Paste above script into the editor
- Save the file as eg disco_auto_tab.ahk
- Make sure that the file is saved as an AHK file !!!
- Doubleclick on it
- Enjoy
Thx to Private_Airport for the running idea :)
If you want to to use other mouse buttons then replace XButton1:
- Mouse 5 : replace it with Xbutton2
- Middle : replace it with MButton
0 comments:
Post a Comment