press to select your hot keys. DOWNLOAD THE INSTRUCTIONS HERE: DOWNLOAD
#Persistent
msgbox, IMPORTANT: Start-up was finished. FIXES: {Shift for Flashlight or you can use ALT + A to swap it to be CTRL} (IMPORTANT: ALT + C TO TURN OFF THE SCRIPT)
!c::
ExitApp
#IfWinActive Ultimate Custom Night
SHIFT := "Shift"
!a::
if (SHIFT = "Ctrl")
{
SHIFT := "Shift"
MsgBox, Flashlight Is Now "SHIFT" To Use
}
else
{
SHIFT := "Ctrl"
MsgBox, Flashlight Is Now "CTRL" To Use
}
return
~Ctrl::
~Shift::
if (SHIFT = "Ctrl")
{
while GetKeyState("Ctrl", "P")
{
if GetKeyState("Ctrl", "P")
{
Send {z down}
}
Sleep 10
}
Send {z up}
}
else
{
while GetKeyState("shift", "P")
{
if GetKeyState("shift", "P")
{
Send {z down}
}
Sleep 10
}
Send {z up}
}
return
#Persistent ; Keep the script running after the auto-execute section has completed.
msgbox, IMPORTANT: Start-up was finished. FIXES: Q for Freddy Mask (IMPORTANT: ALT + C TO TURN OFF THE SCRIPT)
!c::
ExitApp
#IfWinActive Ultimate Custom Night ; Only apply the hotkeys when the specified window is active
{
q:: ; Use Q key as the trigger
; Get the current mouse position
MouseGetPos, originalX, originalY
; Teleport the mouse cursor to the specified position
MouseMove, 845, 1010, 0
; Pause briefly (adjust as needed)
Sleep 5
; Move the mouse cursor down
MouseMove, 0, 10, 0, R
; Pause briefly (adjust as needed)
Sleep 5
; Return the mouse cursor to its original position
MouseMove, originalX, originalY, 0
return
}
#Persistent
msgbox, the R FOR EL CHIP hot key is now running (USE ALT + C TO CLOSE THIS SCRIPT)
!c::
ExitApp
#IfWinActive Ultimate Custom Night
~r::
{
while GetKeyState("r", "P")
{
if GetKeyState("r", "P")
{
Send {Enter down}
}
Sleep 10
}
Send {enter up}
}