dio, upload your script bro. I really can't get this to function with mabi on windows 7 32 bit @-@. Look at my bmp; I don't see what's wrong with it:
[Only registered and activated users can see links. Click Here To Register...]
That .bmp was taken during daylight hours while holding down alt...and it still doesn't work.
[Edit] Woot, I got it working now. The only problem I'm no confronting is the fact it's not picking up the ores, but that's because I didn't make my own .bmps. Wish me luck.
[Edit#2] I made my own custom ore.bmp, but the bot still doesn't pickup the ores. All it does is go to all the site.bmp and doesn't collect anything. This is the script I am using:
[Only registered and activated users can see links. Click Here To Register...]
That .bmp was taken during daylight hours while holding down alt...and it still doesn't work.
[Edit] Woot, I got it working now. The only problem I'm no confronting is the fact it's not picking up the ores, but that's because I didn't make my own .bmps. Wish me luck.
[Edit#2] I made my own custom ore.bmp, but the bot still doesn't pickup the ores. All it does is go to all the site.bmp and doesn't collect anything. This is the script I am using:
Quote:
#include <ImageSearch.au3>
Global $Paused
HotKeySet("{Pause}", "TogglePause")
HotKeySet("{ESC}", "Terminate")
MsgBox(0,"Metallurgy Bot","Click OK and then bring up the Mabinogi window")
sleep(2000)
Send("{ALTDOWN}")
While 1
$x=0
$y=0
$result = _ImageSearch("site.BMP",1,$x,$y,60)
if $result=1 Then
Send("{ALTUP}")
Send("{F9}")
sleep(4000)
MouseClick("left",$x,$y,3)
Sleep(15000)
Send("{ALTDOWN}")
$x=0
$y=0
$result = 0
$result = _ImageSearch("ore.BMP",1,$x,$y,120)
If $result=1 Then
MouseClick("left",$x,$y)
sleep(3000)
EndIf
EndIf
WEnd
Func TogglePause()
$Paused = NOT $Paused
While $Paused
sleep(100)
ToolTip('Script is "Paused"',0,0)
WEnd
ToolTip("")
EndFunc
Func Terminate()
Exit 0
EndFunc