제가 하고 있는 게임이 있어 픽셀 서치를 만들었는데
CoordMode, Pixel, Screen
CoordMode, Mouse, Screen
Gui, Add, Text, x10 y10 w150 h20 Center, 매크로 프로그램
Gui, Add, Button, x10 y30 w150 h20, 시작
Gui, Add, Button, x10 y55 w150 h20, 멈춤
Gui, Add, Button, x10 y80 w150 h20, 종료
Gui,Show
상태변수 := false
return
GuiClose:
{
ExitApp
}
return
-::
Button시작:
{
상태변수 := true
While(상태변수 = true)
{
Loop
{
PixelSearch, vx, vy, 0,0, A_ScreenWidth, A_ScreenHeight, 0xD2D2D3, 1, Fast RGB (A)
if(ErrorLevel = 0)
{
Click, %vx%, %vy%
Sleep, 2000
}
{
PixelSearch, vx, vy, 0,0, A_ScreenWidth, A_ScreenHeight, 0x12345, 1, Fast RGB (B)
if(ErrorLevel = 0)
{
Click, %vx%, %vy%
Sleep, 2000
}
}
}
}
return
=::
Button멈춤:
{
상태변수 := false
}
return
Button종료:
{
ExitApp
}