0 of 0

File information

Last updated

Original upload

Created by

rintinfinn

Uploaded by

rintinfinn

Virus scan

Safe to use

Tags for this mod

About this mod

A simple autohotkey script to make running less of a clickfest.

Requirements
Permissions and credits
Fallout style running v.1.0

It's a simple script for 'autohotkey' to enable running by holding shift while clicking the left mouse button.
- Install autohotkey
- click on the provided .ahk-file to enable the script (or create your own).

Here's the script (copy and paste everything between the lines into a new text document and save as fallout_style_running.ahk):

--------------------------------------------------------
; fallout style running v.1.0
; use semicolons in front of lines to disable functions
; credits to steam user dukecrom for the 'item discription toggle' command


;side button: run
XButton2::Click, 2

;shift plus left mouse = run
+LButton::Click, 2

;Middle mouse button toggles item descriptions (props to steam user Dukecrom)
Mbutton::
Toggle := !Toggle
If Toggle
Send {TAB Down}
else
Send {TAB Up}
return

----------------------------------------------------------