손꾸락 아파서 만들어봐따


오토핫키로 만듬


HOME누르면 회베따리 시작하고 f2/f3이 회베따리 딜레이 조정임.

F4누르면 회베따리 정지함.


END는 아예 프로그램 꺼버림.


이미지 exe로 바꾸면됨.


단축키 고치고싶으면 아래 스크립트 고쳐서 오토핫키 깔아서 쓰면댄다



delay := 700

interrupt := true


Gui, +AlwaysOnTop

Gui, add, Text, x20 y10 w100 h15 vDelay

Gui, add, Text, x20 y25 w100 h15 , F2 딜레이 감소

Gui, add, Text, x20 y40 w100 h15 , F3 딜레이 증가

Gui, add, Text, x20 y55 w100 h15 , F4 인터럽트

Gui, add, Text, x20 y70 w100 h15 , HOME 회베 시작

Gui, add, Text, x20 y85 w100 h15 , END 종료

Gui Show, w200 h110


Update:

GuiControl,, Delay, delay : %Delay%ms

return


GuiClose:

exitapp

return


F1::

Send, {Ctrl Down}

Send, {e Down}

Send, {Ctrl Up}

Send, {e Up}

return



F2::

delay := delay - 50

goto Update

return


F3::


delay := delay + 50

goto Update

return


F4::

interrupt := interrupt == true ? false : true

return



HOME::

interrupt := true


Send, {w Down}

Sleep, 500

while(interrupt) 

{

Send, {Ctrl Down}

Send, {e Down}

Send, {Ctrl Up}

Send, {e Up}

Sleep, delay

}

Send, {w Up}

return


END::

exitapp

return