Nioh 2 – The Complete Edition

Nioh 2 – The Complete Edition

Not enough ratings
Combo Automation
By boingo
For the days you want to chill and not worry too much precise key presses, you can use Autohotkey to do that for you. Sit back relax and slay some demon's.
   
Award
Favorite
Favorited
Unfavorite
What are we aiming for?
The basic idea is to use Autohotkey to automate common combos, and make the gameplay even more fun. You would need to download and install Autohotkey[www.autohotkey.com] for the script to work. I'll share a couple examples - you can use that as an base and build you own ways to enjoy the game.These are for Keyboard and Mouse, but it should not be too difficult to modify to a Joystick. Feel free to comment if you have any questions. I'd be happy to help. I've had quite a lot of fun with this and hope you do too.
Combo Example 1: Beyond Infinity
#Requires AutoHotkey v2.0
Space::
{
Click
Sleep 1320
Click
Sleep 1010
Click
Sleep 920
Click
Sleep 1035
Click
}
Combo Example 2: Wildfire Flux Stacks on Switchglaive
#Requires AutoHotkey v2.0
Space::
{
Click
Sleep 500

Send "{Shift down}"
Sleep 75
MouseClick "left"
Sleep 75
Send "{Shift up}"

Sleep 500
Click
Sleep 600

Send "{Shift down}"
Sleep 75
MouseClick "WheelDown"
Sleep 75
Send "{Shift up}"

Sleep 1300

Send "{Shift down}"
Sleep 75
MouseClick "WheelUp"
Sleep 75
Send "{Shift up}"

}