Steam 설치
로그인
|
언어
简体中文(중국어 간체)
繁體中文(중국어 번체)
日本語(일본어)
ไทย(태국어)
Български(불가리아어)
Čeština(체코어)
Dansk(덴마크어)
Deutsch(독일어)
English(영어)
Español - España(스페인어 - 스페인)
Español - Latinoamérica(스페인어 - 중남미)
Ελληνικά(그리스어)
Français(프랑스어)
Italiano(이탈리아어)
Bahasa Indonesia(인도네시아어)
Magyar(헝가리어)
Nederlands(네덜란드어)
Norsk(노르웨이어)
Polski(폴란드어)
Português(포르투갈어 - 포르투갈)
Português - Brasil(포르투갈어 - 브라질)
Română(루마니아어)
Русский(러시아어)
Suomi(핀란드어)
Svenska(스웨덴어)
Türkçe(튀르키예어)
Tiếng Việt(베트남어)
Українська(우크라이나어)
번역 관련 문제 보고
#IfWinActive Stardew Valley
XButton2::
While GetKeyState("XButton2","P")
{
sendEvent {LButton Down}
sleep 10
sendEvent {LButton Up}
sleep 70
sendEvent {r Down}{Delete Down}{RShift Down}
sleep 10
sendEvent {r Up}{Delete Up}{RShift Up}
}
sleep 30
return
All this does is change the 125 delay to 70, (I found that with 50 and 60 the animation is cancelled before the tool actually hits when facing down if you wanna mess around with it some more feel free though) and the key to the front mouse side button, you can change the key to whatever i just find that most convenient.
using a macro, set it to repeat while holding down. click the plus, hit record keystrokes and input Left click, R+Rshift+DEL. add a 100 ms delay between left click and the command. I set this to my mouse and instead of using left click I can just hold down the button I mapped the micro to. this could probably be tweaked more since ive never made a macro before and I was fucking around.
All it does is it changes the button from X to V and adds a line to press down the C button instead of X.
#IfWinActive Stardew Valley
v::
While GetKeyState("v","P")
{
sendEvent {c Down}
sleep 10
sendEvent {LButton Down}
sleep 10
sendEvent {LButton Up}
sleep 125
sendEvent {r Down}{Delete Down}{RShift Down}
sleep 10
sendEvent {r Up}{Delete Up}{RShift Up}
sleep 10
sendEvent {c Up}
}
sleep 30
return