You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
600 B
30 lines
600 B
;
|
|
; Front Matter
|
|
;
|
|
|
|
; Include relevant libraries
|
|
#Include "../lib/Prelude.ahk"
|
|
#Include "../lib/HoldRepeat.ahk"
|
|
|
|
; Make this a wrapper script
|
|
WrapperPath:="steam://rungameid/413150"
|
|
WrapperTitleMatchMode:=2
|
|
WrapperWindow:="Stardew Valley 1.6.8 - running SMAPI"
|
|
#Include "../lib/Wrapper.ahk"
|
|
|
|
;
|
|
; Hotkeys
|
|
;
|
|
|
|
*XButton2::{
|
|
Send "{Blind}{RButton}"
|
|
Sleep 10
|
|
Loop 8
|
|
{
|
|
Send "{Blind}{LButton}"
|
|
}
|
|
}
|
|
|
|
; Alt to hold or repeat mouse buttons
|
|
*!LButton UP::HoldOrRepeat("LButton",["LButton","RButton","MButton"])
|
|
*!RButton UP::HoldOrRepeat("RButton",["RButton","LButton","MButton"])
|