0 of 0

File information

Last updated

Original upload

Created by

DONOKO

Uploaded by

DONOKOX

Virus scan

Safe to use

10 comments

  1. shadeinhades
    shadeinhades
    • member
    • 0 kudos
    I appreciate the idea of this mod, but it didn't work, the game window just shows a black screen.
    I was able to write an Autohotkey script that auto-plays, press your controller's <BACK> button to toggle auto-play on/off, it feels very intuitive:

    isActive := false

    Joy7::
    {
    SoundBeep,3500,500 
    isActive := !isActive
    if (isActive) {
      Send "{Enter down}"
    } else {
      Send "{Enter up}"
    }
    }

    if you want to use a different controller button, look in the Autohotkey help file's 'Joystick' section, it points to a test script that shows all your controller codes
    1. DONOKOX
      DONOKOX
      • member
      • 0 kudos
      idk,it works on my PC
      did you use the mod correctly?
    2. jdcrozier
      jdcrozier
      • member
      • 0 kudos
      Thanks for sharing!

      This is the controller test script for those that need it: https://www.autohotkey.com/docs/v2/scripts/index.htm#ControllerTest. That's for autohotkey v2, if you'd rather use v1 then just change the v2 to v1 in the URL.

      I also modified your script for autohotkey v2 (and removed the beep, I found that I could find whether it was toggled by looking at the in-game button prompts - keyboard vs. controller):

      #Requires AutoHotkey v2.0
      #singleinstance

      isActive := false

      Joy7::
      {
        global isactive
        isActive := !isActive
        if (isActive) {
          Send "{Enter down}"
        } else {
          Send "{Enter up}"
        }
      }
  2. Quiibbz
    Quiibbz
    • premium
    • 0 kudos
    Bug that sometimes freezes text options is still there, regardless of the latest version. Makes for an annoyance on an otherwise very useful mod unfortunately.
    1. DONOKOX
      DONOKOX
      • member
      • 0 kudos
      Sorry,I dont know how to fix it.You can save the game and reload it when text options freeze.
  3. TheDarkLord7898
    TheDarkLord7898
    • member
    • 0 kudos
    It just keeps freezing.
  4. TunaSandwich01
    TunaSandwich01
    • member
    • 0 kudos
    how do I make game vanilla again?
  5. gingsz
    gingsz
    • member
    • 0 kudos
    It's working, but super slow, after pressing the key it's about 15 seconds to do something.
  6. Doombox101
    Doombox101
    • member
    • 0 kudos
    does this only work on the steam version?
    1. DONOKOX
      DONOKOX
      • member
      • 0 kudos
      yes,it only works on steam version