0 of 0

File information

Last updated

Original upload

Created by

SeRoM

Uploaded by

SeRoMWarez

Virus scan

Safe to use

Tags for this mod

22 comments

  1. Madi921
    Madi921
    • member
    • 0 kudos
    Okay, so what i did, was bind W key to walk. Then go into settings and bind W and ALT to moving forward.
    Now if you press W ingame, you will walk, but cant sprint, but if you press ALT, you can sprint. 
  2. inphra1
    inphra1
    • member
    • 0 kudos
    Two options to "toggle" walk:

    The first is using your mouse software to create a macro (e.g. Logitech GHub) and the second is using AutoHotKey  :

    OPTION 1
    1. Bind walk to another key other than alt, for example, you can use the "[" key as it's not mapped to anything and it won't cause issues like ALT  will (e.g. holding alt and then pressing TAB for inventory will obviously invoke windows ALT+TAB).  This is more for players that want to map this to their mouse otherwise you can use "C" so long as it's not mapped in game.

    In the console, bind walk to "[":
    bind "[" "_walk"

    2. In Logitech GHub for example, create a macro and set it to "toggle";  then record and enter the "[" key.  It should register two events: "[" DOWN event and "[" UP event;  stop the recording and now edit the macro by deleting the "[" UP event.  When you save it, it will give you a warning but that's okay since it's a toggle.

    3. Bind the macro to a mouse button (e.g. mouse forward, mouse tilt, whatever)


    OPTION 2
    Here's the other method using AutoHotKey which does the same thing.  Again, you can change "[" for any other key, so long as it's not mapped in game of course.  Again, I wouldn't use ALT.... it's too fucky.

    #MenuMaskKey vkFF  ; Disable default menu behavior for Alt
    #UseHook

    #IfWinActive, ahk_exe TheGreatCircle.exe

    [::
    {
    if (!BracketHeld) ; Check if [ is not already held
    {
      Send, {Blind}{[ down} ; Hold down the [ key explicitly
      BracketHeld := true ; Set flag to indicate [ is held
    }
    else ; If [ is already held, release it
    {
      Send, {Blind}{[ up} ; Release the [ key
      BracketHeld := false ; Reset the flag
    }
    return
    }


    ~*[:
    {
    global BracketHeld
    if (BracketHeld) ; If [ is held down
    {
      Send, {Blind}{[ up} ; Release the [ key
      BracketHeld := false ; Reset the flag
    }
    return
    }

    #IfWinActive


    Lastly, here is another method but it has interrupts.  Pressing E, F, J, TAB, and the "[" key will interrupt the key down event.  Basically you'll need to re-engage walk after you've interacted with something in the game or looked at your inventory.

    #MenuMaskKey vkFF  ; Disable default menu behavior for Alt
    #UseHook

    [::
    {
    if (!BracketHeld) ; Check if [ is not already held
    {
      Send, {Blind}{[ down} ; Hold down the [ key explicitly
      BracketHeld := true ; Set flag to indicate [ is held
    }
    else ; If [ is already held, release it
    {
      Send, {Blind}{[ up} ; Release the [ key
      BracketHeld := false ; Reset the flag
    }
    return
    }


    ~*Tab::HandleBracketRelease()
    ~*e::HandleBracketRelease()
    ~*f::HandleBracketRelease()
    ~*j::HandleBracketRelease()


    HandleBracketRelease()
    {
    global BracketHeld
    if (BracketHeld) ; If [ is held down
    {
      Send, {Blind}{[ up} ; Release the [ key
      BracketHeld := false ; Reset the flag
    }
    return
    }

    #IfWinActive

  3. jadynkarn
    jadynkarn
    • premium
    • 0 kudos
    Thank you so much for this, any way to do mouse scroll increases and decreases movement speed?
  4. MaohiExe
    MaohiExe
    • premium
    • 0 kudos
    My friend please is there a cmd for hiding player life & stamina bars, and weapon/ammo HUD plz. ? (show_hud is cool but we cant see inventory etc..)
    All i want to play is a center dot. TY for the walk binding.
    1. Seagroat
      Seagroat
      • supporter
      • 0 kudos
      There's a HUD hide mod on Nexus that will toggle the whole HUD but that will also get rid of the center dot - but you should really try the game without it anyway bc it's kind of pointless and distracting.
  5. pancakewhisperer
    pancakewhisperer
    • supporter
    • 0 kudos
    pm_walkspeed isnt working for me, adding L ALT as a keybind did tho, any ideas?
    1. bryan081787
      bryan081787
      • premium
      • 0 kudos
      Also having this same issue
    2. SeRoMWarez
      SeRoMWarez
      • member
      • 0 kudos
      I'm sorry, I didn't specify that you need to install https://github.com/Lyall/GreatCircleFix

      • Grab the latest release of GreatCircleFix from here.
      • Extract the contents of the release zip in to the the game folder. e.g. ("XboxGames\Indiana Jones and the Great Circle\Content" for Xbox or "steamapps\common\The Great Circle" for Steam).

      Then the command shoud work as intended 
    3. pancakewhisperer
      pancakewhisperer
      • supporter
      • 0 kudos
      Works perfectly now! thanks a lot
  6. dirtydanisreal
    dirtydanisreal
    • premium
    • 1 kudos
    Make an autoexec.cfg in the config folder. Put the command in it. Then put this as a launch parameter

    +exec autoexec.cfg
    1. SeRoMWarez
      SeRoMWarez
      • member
      • 0 kudos
      Some users have reported that the bind persists as soon as the game autosaves.
      But your proposed solution also makes sense, well seen!
  7. Alby55
    Alby55
    • premium
    • 0 kudos
    Thank you!! I've been waiting for someone to post a workaround. How a simple console command was not implemented by the developer of the actual game on launch baffles me no end.
    1. SeRoMWarez
      SeRoMWarez
      • member
      • 0 kudos
      Yes, it is clearly distressing.
      I was also really surprised to find this _walk() function, without any reference for our keyboard/mouse ...
  8. Leonn4ikk
    Leonn4ikk
    • member
    • 0 kudos
    L-CTRL on toggle if it worked it would be perfect!!
    and crouch on C

    Is it possible to unbind crouch on CTRL and set it to C, and bind walk on toggle to L-CTRL?
  9. TseuHi
    TseuHi
    • member
    • 1 kudos
    I don't know why, but bind "LALT" "_walk" doesn't seem to be working for me, even after I unbound LALT as block.
    It works in the console, but I can't make it permanent in the config file..
    1. LanceLionroar
      LanceLionroar
      • member
      • 2 kudos
      It might be the way the key binding is written. Have you tried putting in just ALT instead of LALT?
    2. SeRoMWarez
      SeRoMWarez
      • member
      • 0 kudos
      Yes, you are right.
      I am not sure about the behavior.
      After a test, I realize that if I remove the CTRL instruction in my configuration file, the bind is still active ...
      No idea why this seems to be cached
    3. SeRoMWarez
      SeRoMWarez
      • member
      • 0 kudos
      @LanceLionroar
      Good clue, but I checked and it doesn't work either
    4. SultanSaladin
      SultanSaladin
      • supporter
      • 30 kudos
      So, just to get this straight: LALT works through the console command and is also stored in the savegame, so no need for the config file, which does not work for LALT? Thanks in advance.
    5. TseuHi
      TseuHi
      • member
      • 1 kudos
      @SeRoMWarez 
      Ok, thanks to what you said I think I understand how it works.
      Somehow, TheGreatCircleConfig.cfg only works one way : it updates when the game saves, but changing anything in it doesn't seems to change any bind in-game.
      The good thing is, when you bind a new key via the console, once you go throught an autosave, it stays in the cfg file.

      If someone can confirm :)
      (so now, my LALT key is bound to walk ! yay !)
    6. SultanSaladin
      SultanSaladin
      • supporter
      • 30 kudos
      So I tested it ingame with the console and indeed the game saves it. I bound it to LALT. The game even saves it when you start a new game. Pretty neat. Here's hoping by writing it into the config for good this way doesn't break anything further along the road. :D
  10. Beast1903
    Beast1903
    • supporter
    • 0 kudos
    can you add a toggle hud or remove dot mod ?