Kod napisany w AutoIt nie będzie działać w Metinie.Musiałbyś napisać to w C++ i wstrzyknąć jakimś injectorem. W C++ nie ma ImageSearch.
Ten Kod jest cały mój.Tylko się pod nim nie podpisz, że sam napisałeś tego bota <_<
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Mini bot by sodema", 250, 107, 388, 279)
$Button1 = GUICtrlCreateButton("Czytacz ku", 16, 32, 89, 41)
GUICtrlSetFont(-1, 8, 400, 0, "@Adobe Myungjo Std M")
$Button2 = GUICtrlCreateButton("Otwieranie malzy", 152, 32, 89, 41)
GUISetState(@SW_SHOW)
#endregion ### END Koda GUI section ###
HotKeySet("{F1}", "start")
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
For $i = 0 To 45
Global $x, $y
$zwoj = _ImageSearch("zwoj.bmp", 1, $x, $y, 20)
Sleep(200)
$rada = _ImageSearch("rada.bmp", 1, $x, $y, 20)
Sleep(200)
$ksiega = _ImageSearch("ksiega.bmp", 1, $x, $y, 20)
If $zwoj $rada $ksiega <= 1 Then
MouseClick("right", $x, $y)
EndIf
Next
Case $Button2
For $i = 0 To 45
Global $x, $y
$malz = _ImageSearch("malz.bmp", 1, $x, $y, 20)
If $malz <= 1 Then
MouseClick("right", $x, $y)
EndIf
Next
EndSwitch
WEnd