Halo Infinite - One button Equipment Usage | AutoHotkey Script Guide

Channel:
Subscribers:
331
Published on ● Video Link: https://www.youtube.com/watch?v=PjNS2wFL4fU



Halo Infinite
Game:
Duration: 3:04
659 views
13


This script allows you to equip and use equipment with one button press instead of needing two inputs.

My current setup enables me to press G to use grapple hook, F and H for Drop Wall, T for Scan and the mousewheel (up or down) to use Thruster.
I have the equipment equip keys bound to 6 - 9 and "Use Equipment" bound to 0.

When I press G, it registers as both 6 and 0 (equip grapple & use equipment). Likewise, when I flick the mousewheel up or down, it registers as 7 & 0 (equip thruster & use equipment)

In order to set this up, you will first need to install Autohotkey, find it here: https://www.autohotkey.com/

Once it is installed, right click on your desktop, click "New" and click Autohotkey Script. Open it with notepad or notepad ++ and paste the following script:
------------------------
#If WinActive("ahk_exe HaloInfinite.exe")
g::
SendInput, 6
Sleep, 30
SendInput, 0
return

wheelup::
SendInput, 7
Sleep, 30
SendInput, 0
return

wheeldown::
SendInput, 7
Sleep, 30
SendInput, 0
return

f::
SendInput, 8
Sleep, 30
SendInput, 0
return

h::
SendInput, 8
Sleep, 30
SendInput, 0
return

t::
SendInput, 9
Sleep, 30
SendInput, 0
return
---------------------------

Save the file, then double click it to run the script. The first line in the script will detect when you have Halo opened, when its not the active window, the script is suspended. When you resume playing, the script will work again.
To disable the script, find Autohotkey in your task bar, right click it and click suspend script or just exit Autohotkey completely.

Enjoy the snappier equipment use!







Other Statistics

Halo Infinite Statistics For Zubriel

At present, Zubriel has 5,665 views spread across 32 videos for Halo Infinite, and about 2 hours worth of Halo Infinite videos were uploaded to his channel. This makes up 9.03% of the content that Zubriel has uploaded to YouTube.