Monday, October 18, 2021

Disco Elysium - How to play with mouse only guide

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:

  1. Install AHK
  2. Open an editor e.g. notepad, notepad++ etc
  3. Paste above script into the editor
  4. Save the file as eg disco_auto_tab.ahk
  5. Make sure that the file is saved as an AHK file !!!
  6. Doubleclick on it
  7. 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

Guide by dukecrom

0 comments:

Post a Comment