오핫으로 무공쓰다가 어느순간부턴 가만히있더라고요?
이거는 그냥 어쩔 수 없는거임? 잘때 켜두려고헀는데 쩝
| 제목 | 작성자 | 작성일 | 조회 | |
|---|---|---|---|---|
| 20557 | 01-28 | 116 | ||
| 20556 | 오핫 무반응은+2 | 01-28 | 201 | |
| 20555 | 01-28 | 711 | ||
| 20554 | 01-28 | 133 | ||
| 20553 | 01-28 | 373 | ||
| 20552 | 01-28 | 607 | ||
| 20551 | 점언 지언 ㅍㅍ+6 | 01-28 | 208 | |
| 20550 | 01-28 | 358 | ||
| 20549 | 공유좀 해주세요+1 | 01-28 | 133 | |
| 20548 | 01-28 | 218 | ||
| 20547 | 01-28 | 199 | ||
| 20546 | 01-28 | 172 | ||
| 20545 | 01-28 | 331 | ||
| 20544 | 01-28 | 185 | ||
| 20543 | 01-28 | 439 | ||
| 20542 | 01-28 | 120 | ||
| 20541 | 01-28 | 113 | ||
| 20540 | 01-28 | 199 | ||
| 20539 | 01-28 | 229 | ||
| 20538 | 01-28 | 153 |
댓글2
오핫 코드를 제대로 짜보셈
그냥 챗 지피티한테 물어봐서 한건데..
#Persistent
F5::RunMyFunction()
F6::PauseMyFunction()
RunMyFunction() {
global IsRunning
IsRunning := true
Loop {
if (IsRunning) {
Loop, 6 {
SendEvent, {Ctrl down} ; Press the Ctrl key
Sleep, 500 ; Wait for 0.5 seconds
SendEvent, {Ctrl up} ; Release the Ctrl key
Sleep, 500 ; Wait for 0.5 seconds
}
Random, AltOrLeft, 1, 2 ; Randomly choose 1 or 2
if (AltOrLeft = 1) {
SendEvent, {Alt down} ; Press the Alt key
Sleep, 2000 ; Wait for 2 seconds
SendEvent, {Alt up} ; Release the Alt key
} else {
SendEvent, {Left down} ; Press the left arrow key
Sleep, 2000 ; Wait for 2 seconds
SendEvent, {Left up} ; Release the left arrow key
}
; Press the right arrow key twice
SendEvent, {Right down} ; Press the right arrow key
Sleep, 10 ; Wait for 0.01 seconds
SendEvent, {Right up} ; Release the right arrow key
Sleep, 7990 ; Wait for 7.99 seconds
} else {
break ; Exit the loop
}
}
return
}
PauseMyFunction() {
global IsRunning
IsRunning := !IsRunning ; Toggle the running state
return
}
이런거임... 뭐가 문젤까