helldivers2-macros
helldivers2-macros copied to clipboard
Macros for stratagem inputs in Helldivers 2
Helldivers2 Stratagem Macro
This is software for macroing stratagem inputs in Helldivers2.
Windows only.
Please note: This project makes no efforts to hide itself, evade detection, or circumvent any anti-cheat measures. If you use this software in Helldivers 2, there is no guarantee of any kind that you will not be banned. Use at your own risk.
Installation
Prerequisite: this requires that you have autohotkey installed in a default location. Python users may use pip install ahk[binary] to satisfy this requirement.
Binary downloads
Check the releases page for traditional windows setup install or zip download. This is the preferred method for end-users who are not Python developers.
With pip
For Python developers, you can also install using pip
pip install hd2_macros
In this method, you will need to launch using python -m hd2_macros and the config.toml is expected to be in the
present working directory.
Usage
The short version is:
- Configure your hotkeys using the
config.tomlfile - Run the program with helldivers2
- When you trigger one of your configured hotkeys, a short delay (
hotkey_start_delay) will occur -- enough time for you to make sure you have your stratagem menu up -- and the program will enter the WASD inputs for the associated stratagem.
Configuration
In the installation directory (or the current working directory for pip install users) use the config.toml file
to configure your hotkey loadouts.
# General settings apply for all loadouts
[general]
# How long to wait for the helldivers window before exiting
win_wait = 120
# Delay in seconds between when the hotkey pressed and beginning of WASD inputs
# Intended to allow you enough time to ensure the strategem menu is up and ready for input
hotkey_start_delay = 1.0
# Change logging verbosity (valid values are "DEBUG", "INFO", "WARNING", "ERROR")
log_level = "DEBUG"
# Hide the system tray icon for the application
no_tray_icon = false
# Define a hotkey that can be used to stop the program
# By default, bound to Windows key + Q
exit_hotkey = "#q"
# The time in between key UP/DOWN events when inputting macros.
# Lowering this value will make inputs faster, but may cause inputs to be dropped.
key_delay = 0.1
# If you have AutoHotkey in a non-default location, you may specify it by uncommenting this line:
# autohotkey_executable_path = "C:\Path\To\AutoHotkey64.exe"
# You can explicitly specify the version of AutoHotkey (v1 or v2). Usually, this is not necessary.
# When omitted, the version of Autohotkey is determined automatically
# autohotkey_version = ""
# The default input type is 'WASD' - you can change this to arrow keys by uncommenting this setting:
# input_type = "Arrows"
# A Loadout provides a mapping of Strategems to hotkeys. Each loadout specifies a hotkey used to switch to that loadout.
# For hotkey/modifiers syntax, see https://www.autohotkey.com/docs/v2/Hotkeys.htm and https://www.autohotkey.com/docs/v2/KeyList.htm
# The default loadout is the loadout used at program starts
[ default_loadout ]
switch_hotkey = "#1" # press Win+1 to load this loadout
[ default_loadout.hotkeys ]
# Maps the orbital precision strike strategem to "Windows key + n"
# All stratagem names are lowercase
"orbital precision strike" = "#n"
# Add separate sets of loadouts using `[ loadouts.<NAME> ]`
[ loadouts.secondary ]
switch_hotkey = "#2" # press Win+2 to load this loadout
[ loadouts.secondary.hotkeys ]
"orbital precision strike" = "#b"
"mortar sentry" = "#s"
"eagle cluster bomb" = "#c"
# You can add as many loadouts as you want.
# ...
Stratagem list
heavy machine gunquasar cannonresupplyorbital illumination flarehellbombreinforcemachine gunanti-material riflestalwartexpendable anti-tankrecoilless rifleflamethrowerautocannonrailgunspeareagle strafing runeagle airstrikeeagle cluster bombeagle napalm airstrikejump packeagle smoke strikeeagle 110mm rocket podseagle 500kg bomborbital gatling barrageorbital airburst strikeorbital 120mm he barrageorbital walking barrageorbital 380mm he barrageorbital lasersorbital railcannon strikeorbital precision strikeorbital gas strikeorbital ems strikeorbital smoke strikehmg emplacementshield generation relaytesla towermachine gun sentrygatling sentrymortar sentryguard dogautocannon sentryrocket sentryems mortar sentryanti-personnel minefieldsupply packgrenade launcherlaser cannonincendiary minesguard dog roverballistic shield backpackarc throwershield generator packpatriot exosuitemancipator exosuitcommando
See also: constants.py for input mappings.