게임이야기2015. 6. 29. 00:37



autoit x64용..


포커스 안된 상태에서도 돌아감

Caps Lock 으로 잠깐 멈춤 (상점 구매, 스테이지 이동 할때 멈춰야 함)

Esc 로 매크로 종료


좌표가 랜덤인 이유는 루비 줏어먹기 위함인데.. 줏어먹는거 본적은 없음ㅋㅋ


클릭간 간격이 일단은 1ms 로 되어있고..

퀄리티 낮추고 데미지 표시도 끄는게 좋음.


소스 보기

;position min of the window

$x_min = 661

$y_min = 120


;position max of the window

$x_max = 1050

$y_max = 550


;time beetween 2 clicks

$sleep_time = 1;


Global $g_bPaused = False


HotKeySet("{CAPSLOCK}", "TogglePause")

HotKeySet("{ESC}", "Terminate")


While 1

   ;randomly click into the window (to catch some bonuses)

  ControlClick("Clicker Heroes", "", "", "left", 1, Random($x_min, $x_max, 1), Random($y_min, $y_max, 1))

  Sleep($sleep_time);

WEnd


Func TogglePause()

    $g_bPaused = Not $g_bPaused

    While $g_bPaused

        ToolTip('Script is "Paused"', 0, 0)

Sleep(1000)

    WEnd

    ToolTip("")

EndFunc   ;==>TogglePause


Func Terminate()

    Exit

EndFunc   ;==>Terminate




zzz.rar


반응형

     

Posted by r35™