DEATHLOOP How to Toggle Aim + Script & Keybinds

DEATHLOOP How to Toggle Aim + Script & Keybinds 1 - steamsplay.com
DEATHLOOP How to Toggle Aim + Script & Keybinds 1 - steamsplay.com

An easy way to change your inputs, so you don’t have to hold down the right mouse button to aim down sight.
 
 

Intro

Currently there is no option ingame to change toggle aim.
 
 
So if you are like me and having trouble hitting anything while holding down the right mouse button, here is a little script which will change that.
 
 
 

1. Install Autohotkey Programm

To make the script work, you have to install the program Autohotkey.
 
 
You can download it from the official Autohotkey-Homepage – [autohotkey.com] .
 
 
Just download the latest version and install it.
 
 
It’s a tiny program and it won’t change anything on your system, so don’t worry.
 
 
Autohotkey is a free and open source tool, which allows users to run self-created scripts such as macros or auto-clicking.
 
 
 

2. Create the ToggleAim-Script

After you installed the Autohotkey-Program you need to create your own script.
 
 
1. Open Notepad
 
2. Enter the following text:
 
 

 
WinWait, Deathloop,
 
;IfWinNotActive, Deathloop, , WinActivate, Deathloop,
 
;WinWaitActive, Deathloop,
 
*RButton Up::
 
If (Toggle := !Toggle){
 
Send {Click Down Right}
 
}
 
Else{
 
Send {RButton up}
 
}
 
return

 
 
3. Save the file anywhere you want. It’s important that you change the filename-extension from *.txt to *.ahk
 
 
It should look like this:
 
DEATHLOOP How to Toggle Aim + Script & Keybinds - 2. Create the ToggleAim-Script - C7FEBD5
 
 
 

3. Use the script with Autohotkey

To use the script, you just have to doubleclick the *.ahk-file you created in step 2.
 
 
If you followed this guide, you now should see the script running in your taskbar:
 
 
DEATHLOOP How to Toggle Aim + Script & Keybinds - 3. Use the script with Autohotkey - 50B9F19
 
 
 

4. Known “Bugs”

If you want to use Dual-Wielding this script might not be the right thing for you.
 
 
When you use two guns at the same time, RMB is used for shooting the second gun. With an active script only every second RMB-click will release a shot from that gun.
 
 
There is no solution for this problem… i just don’t use Dual-Wielding.
 
 
 

Outro

With this simple solution you now only have to press RMB once, to aim down sights.
 
 
IMPORTANT:
 
The script is running, as long as you don’t stop it.
 
 
Since it changes the way, your right mouse button works, stop the script as soon as you finished playing DEATHLOOP.
 
 
Just right-click on the AHK-icon in your taskbar and click on “Exit”:
 
DEATHLOOP How to Toggle Aim + Script & Keybinds - Outro - 0C5C487
 
 
If one right-click doesn’t work, just right-click a second time on the icon. Then the context-menu will pop-up. Thats because, as said above, the script changes the way your RMB works.
 
 
Now enjoy playing DEATHLOOP with a working ToggleAim.
 
 
And thanks Arkane for not adding a simple ingame-option to change it…
 
 

Written by ICH BIN BATMAN!

 
 
This is all for DEATHLOOP How to Toggle Aim + Script & Keybinds hope you enjoy the post. If you believe we forget or we should update the post please let us know via comment, we will try our best to fix how fast is possible! Have a great day!
 


Be the first to comment

Leave a Reply

Your email address will not be published.


*