#include <ImageSearch.au3>
MsgBox(0,"Notice","Click Ok to start. Make sure you have Mabinogi window maximized.")
Global $Paused
HotKeySet("{PAUSE}", "TogglePause")
HotKeySet("!{ESC}", "Stop") ;script can be stopped by pressing ESC
$x1=0
$y1=0
While (1)
Send("{LALT down}")
$result = _ImageSearch("cobweb.jpg",1,$x1,$y1,100) ;change the cobweb.jpg if you want to pick up something else.
if $result=1 Then
MouseMove($x1,$y1,3)
MouseClick("left",$x1,$y1,1,3)
Sleep(2000) ;Enough time for the character to go pick up the cobweb. You can change it if you want (2000 = 2 seconds so 1000 = 1 second)
EndIf
WEnd
Func TogglePause()
$Paused = not $Paused
While $Paused
ToolTip("paused")
sleep(100)
WEnd
EndFunc
Func Stop() ;to allow the script to stop
Exit ;same
EndFunc ;same
Im not too good with ImageSearch-Coding, so dont rage if it doesnt work.
Dont forget to put the cobweb.jpg in the same folder as the Bot.
Code:
#include <ImageSearch.au3>
HotKeySet("{ESC}", "_Stop")
$x1=0
$y1=0
MsgBox(0,"Notice","Click Ok to start. Make sure you have Mabinogi window maximized.")
While 1
Send ("{ALTdown}")
$result = _ImageSearch ("cobweb.jpg", 1, $x1, $y1, 85)
If $result=1 Then
MouseMove ($x1, $y1)
MouseClick ("left", $x1, $y1)
Sleep (2000)
EndIf
Send ("{ALTup}")
WEnd
Func _Stop ()
Exit
EndFunc
unrelated i think, but this is a simple autoIT script to be used in conjunction with fastcook to start perfect autofishing (since you must hit the catch key to bypass the minigame)
#include <ImageSearch.au3>
MsgBox(0,"Notice","CLICK TO START")
Global $Paused
HotKeySet("!{ESC}", "Stop")
$x1=0
$y1=0
while(1)
$result = _ImageSearch("catch.jpg",1,$x1,$y1,100)
if $result=1 Then
Tooltip("Autofishing...", 0, 0)
MouseMove($x1,$y1,3)
MouseClick("left",$x1,$y1,1,3)
EndIf
WEnd
Func Stop()
Exit
EndFunc
L2Walker script: Solo rebuff/restock/return script 08/08/2012 - Lin2 Exploits, Hacks, Bots, Tools & Macros - 63 Replies Hello!
I've been reading alot and not really contributing so i'll start off here with a very well working script im using to bot my SK outside ivory tower in oren. I've tried to structure the code so it easily can be modified for another level of character, town, and hunting spot.
The script is made for CT2 Retail, mainly to get advantage of the newbie buffs (which now lasts all the way until level 62)
Change log:
Update 2008-09-01
Version 1.14 -Download
[suche] d2nt level rush script 1-25 / follow script 06/23/2010 - Diablo 2 Programming - 5 Replies moin
erstmal sry falls es da doch schon was passendes zu gab - hab schonmal gesucht aber nur alte sachen gefunden oder eben antworten in richtung "geht so schnell dafür braucht man keinen bot" ^^
mein problem besteht darin dass ich für lvl 1 bis 20 immer x stunden brauche - trist geht ja noch halberwegs aber mit tombruns such ich mich immer dusselig ^^ - bzw cows sind noch schlimmer (dafür geht das cow-script für d2nt ausm bluebird zumindest halberwegs)
die frage ist jetz die - giebt...