0 of 0

File information

Last updated

Original upload

Created by

Marxis95

Uploaded by

Marxis95

Virus scan

Safe to use

Tags for this mod

16 comments

  1. speedwaystar
    speedwaystar
    • member
    • 0 kudos
    https://www.reddit.com/r/kingdomcome/comments/7xx0sv/autorunwalk_tipbug_on_pc/

    alternate method: hold down walk key, press ALT-F12, press tilde (~), done

    1. mrgreenleaf321
      mrgreenleaf321
      • member
      • 0 kudos
      You're the man
  2. MayoandChili
    MayoandChili
    • member
    • 0 kudos
    Cna you please make a mod for making the character walk the same pace as npc's? I don't know why Warhorse Studios dailed to think this was important.
    1. AliKonry
      AliKonry
      • member
      • 0 kudos
      Please walk slower...
  3. axecolours
    axecolours
    • member
    • 1 kudos
    Great! I don't know why the developers doesn't integrate that command on his game. We have to take care to our fingers ;)

    Personally I'm not feeling comfortable using the double w tab. 
    So, with ChatGPT I found a better choice for me. 
    Ideally I wanted to use W+LAlt and LAlt+W , but it have some conflicts and then you can't tab between programs. 
    So, finally I decided that using W+CapsLock fits well and it's comfortable. Also you have just down the shift button for running. 

    Then, with all my love and respect, I write here the code for anyone interested. 


     "
    #Requires AutoHotkey v2.0
    #SingleInstance Force
    global autoWalk := false
    #HotIf WinActive("ahk_exe KingdomCome.exe")
    ; Activar o desactivar el auto-walk con la combinación W + CapsLock
    ~w & CapsLock::
    {
        global autoWalk  ; Declaramos la variable como global
        if (!autoWalk) {
            Send("{w down}")  ; Comienza a caminar hacia adelante
            autoWalk := true  ; Activa el auto-walk
        } else {
            Send("{w up}")  ; Detiene el movimiento hacia adelante
            autoWalk := false  ; Desactiva el auto-walk
        }
        return
    }
    ; Movimiento normal hacia adelante (W)
    w::
    {
        global autoWalk  ; Declaramos la variable como global
        if (!autoWalk) {
            Send("{w down}")  ; Movimiento normal hacia adelante
        }
        return
    }
    w up::
    {
        global autoWalk  ; Declaramos la variable como global
        if (!autoWalk) {
            Send("{w up}")  ; Detiene el movimiento normal hacia adelante
        }
        return
    }
    ; Movimiento normal hacia atrás (S) y detener el auto-walk si está activo
    s::
    {
        global autoWalk  ; Declaramos la variable como global
        if (autoWalk) {
            Send("{w up}")  ; Detiene el movimiento hacia adelante
            autoWalk := false  ; Desactiva el auto-walk
        }
        Send("{s down}")  ; Movimiento normal hacia atrás
        return
    }
    s up::
    {
        Send("{s up}")  ; Detiene el movimiento hacia atrás
        return
    }
    #HotIf  ; Finaliza la configuración específica para el juego
  4. danbear78
    danbear78
    • member
    • 0 kudos
    HELP!

    "To use this script double click one the .ahk file and once you're inside the game..."

    when i double click the - how do you want to open this file? - pops up.  
    am i missing something?
    1. axecolours
      axecolours
      • member
      • 1 kudos
      Just download Autohotkey v2. 
  5. PenOkOh
    PenOkOh
    • member
    • 3 kudos
    I saw this and thought 'Finally someone made a mod where you walk by default instead of jogging'... I honestly don't understand why you can even jog or run with full armour. It makes no sense at all. I've grown tired of the game with how often it defaults to jogging.
    1. Marxis95
      Marxis95
      • supporter
      • 4 kudos
      You can just press Lalt after pressing F2 and henry will walk automatically.
    2. PenOkOh
      PenOkOh
      • member
      • 3 kudos
      Cheers, but nah I meant I was looking for something that removes jogging entirely basically. It makes no sense to jog or run with full armour. Caps lock is fiddly and often just doesn't work.
    3. Djrex42x
      Djrex42x
      • supporter
      • 0 kudos
      its in the game by default. the key to toggle walk is caps lock.
    4. PenOkOh
      PenOkOh
      • member
      • 3 kudos
      Yeah I know it is, but it's really fiddly and often doesn't do what I want it to do.
  6. WiecznySilver
    WiecznySilver
    • premium
    • 47 kudos
    Thanks, I prefer walking slowly across the map. I had to put some weight on my W button before. Now im good.



    1. Marxis95
      Marxis95
      • supporter
      • 4 kudos
      Glad you're enjoying this as much as I am.
  7. burntotears
    burntotears
    • supporter
    • 0 kudos
    Not sure if this is done right. It didn't work properly and then it was like shift was just stuck anywhere I tried to use my PC and I had to restart. It also said it required AHK v1 when I tried to run it.
    1. Marxis95
      Marxis95
      • supporter
      • 4 kudos
      I will update the files to remove the shift option since in kcd 2 pressing shift instead of holding while holding W will keep you sprinting. If you want to stop the script from holding shift, all you have to do is press shift.