Hyoroga has such an irritating button combo. It's even worse if you're using thumbsticks, where diagonal button presses are common.
I'd prefer the Up+Giga combo, but it only works when Giga Attack is empty.
In case anyone else finds it annoying:
Original:
Hyoroga
1D951670 04004230 Direction HELD (4h = Up)
1D951684 80004230 Button PRESS (80h = Jump)
Alternates:
Hyoroga
; Attack, keep the button held until you put away your sword, and toggle with Down direction
1D951670 10004230 Button HELD (10h = Attack)
1D951684 08004230 Direction PRESS (8h = Down)
; Attack, keep the button held until you put away your z-buster, and toggle with Down direction
1D951670 20004230 Button HELD (20h = Special)
1D951684 08004230 Direction PRESS (8h = Down)
; Jump, keep the button held until you land, and toggle with Down direction
1D951670 80004230 Button HELD (80h = Jump)
1D951684 08004230 Direction PRESS (8h = Down)
; Up + Giga, only works when Giga Attack is empty unforunately
1D951670 04004230 Direction HELD (4h = Up)
1D951684 40004230 Direction PRESS (40h = Giga)
; Hold Up, press Weapon Select Right
;
; Best used with a macro in DS4Windows to keep the current special weapon selected
; Using default controls, map to unused button/trigger:
; Replace R1 or L1 if you've reassigned weapon select L/R, which everyone does, because O as dash is awful
; Hold Up (25ms) Hold R1 (25ms) Release R1 (25ms) Hold L1 (25ms) Release L1 (25ms) Release Up (25ms)
1D951670 04004230 Direction HELD (4h = Up)
1D951684 00024230 Button PRESS (200h = Weapon Select Right)
Button Mapping:
01 = Left
02 = Right
04 = Up
08 = Down
10 = Attack
20 = Special
40 = Giga
80 = Jump
100 = Dash
200 = Right Weapon Select
400 = Jump
800 = ?? Does nothing
1000 = ?? Does nothing
2000 = ?? Does nothing
4000 = ?? Does nothing
8000 = ?? Does nothing
Also pass through error_recalc to fix things up when done.