#MaxHotkeysPerInterval 50000
#HotkeyInterval 1
$1::
;Aurora Wall: Hold Z, X and S down at the same time
Loop
{
if not GetKeyState("1", "P")
break
SendInput {z down}
Sleep 1
SendInput {z up}
SendInput {x down}
Sleep 1
SendInput {x up}
SendInput {s down}
Sleep 25
SendInput {s up}
}
$2::
;Maxwell Minimus: Hold D and X down at the same time
Loop
{
if not GetKeyState("2", "P")
break
SendInput {d down}
Sleep 1
SendInput {d up}
SendInput {x down}
Sleep 25
SendInput {x up}
}
$3::
; Dimension Material: Hold Z, X and S down at the same time
Loop
{
if not GetKeyState("3", "P")
break
SendInput {s down}
Sleep 1
SendInput {s up}
SendInput {z down}
Sleep 1
SendInput {z up}
SendInput {x down}
Sleep 25
SendInput {x up}
}
$4::
;Blue Earth: Hold all four buttons down at the same time
Loop
{
if not GetKeyState("4", "P")
break
SendInput {z down}
Sleep 1
SendInput {z up}
SendInput {x down}
Sleep 1
SendInput {x up}
SendInput {s down}
Sleep 1
SendInput {s up}
SendInput {d down}
Sleep 25
SendInput {d up}
}