Jump to content

Autowalk / Autorun


Anton2000

Recommended Posts

Hey guys.

 

I have gotten tired of locking the "W" key for long walking distances with teaspoon / scissors or anything similar.

 

Not shure why Bohemia has never inplemented such a feature in this game series. I guess it is some kind of game philosophy.

 

After some research on the web I stumbled over a small tool thats called "Autohotkey" 

 

 

With that one, You can bind keys to a small script.

For the missing Arma Autowalk feature I wrote some lines that assign the "Tab" key to a locked down "W"

-and pressing "Tab" once more, releases the "W".

 

Here it is:

 

 

Toggle := FALSE
;
$Tab::
  if Toggle
  {
    Toggle := FALSE
    Send {w down}
  }
  else
  {
    Toggle := TRUE
    Send {w up}
  }
return

___________________________________

 

Once You have Autohotkey installed, all You have to do is run the *.ahk file You created, and play

Enjoy!

 

Btw. I hope this will not be considered as cheating, but then I still have some scissors / teaspoon here at hand...

 

greetings

Anton

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Forum Statistics

    11.1k
    Total Topics
    66.4k
    Total Posts
×
×
  • Create New...