Help Fixing This Script Or Sharing Something Similar (Alchemy Mastery Bot Script)

01/06/2016 07:02 iJuku#1
Hi, i was just wondering if you lovely people would help me out with getting this script working. or have anything similar.

--

[SIZE="2"]#requireadmin
#include <ImageSearch.au3>
Global $Paused
HotKeySet("{Pause}", "TogglePause")
HotKeySet("{ESC}", "Terminate")
MsgBox(0,"starting","press ok")
sleep(5000)
While (1)
$x=0
MouseMove(1427,607,3);assuming this the coordinates of the steam oven to click on it
sleep(200)
MouseClick("left",1427,607,1,3)
sleep(1200)
MouseMove(1427,607,3);assuming this the coordinates for the alchemy crystal in your bag
sleep(200)
MouseClick("left",1427,607,1,3)
sleep(1000)
MouseMove(77,539,3); assuming this the coordinates of the boxes where you place the itemf rom your inventory
sleep(200)
MouseClick("left",77,539,1,3)
Sleep(200)
while ($x<5) ; this will cast thunder 5 times, im not doing the auto charge method
Send ("{0}") ; this is your hotkey for TH
sleep(3000) ; this is the casting speed of one thing of thunger, give it a little slack and mess around with the times
$x=$x+1
WEND
sleep(1000)
MouseMove(167,168,3) ; this should be the thing that clicks OK to start makingthe crystal
sleep(200)
MouseClick("left",167,168,1,3)
sleep(5000)

WEnd

Func TogglePause()
$Paused = NOT $Paused
While $Paused
sleep(100)
ToolTip('Script is "Paused"',0,0)
WEnd
ToolTip("")
EndFunc

Func Terminate()
Exit 0
EndFunc[/SIZE]

--

if you happen to have anything similar or get it working please send me the script!

*Post where i got the script from*
[Only registered and activated users can see links. Click Here To Register...]
01/06/2016 07:30 Seren30#2
Nothing's wrong with it.
01/06/2016 07:57 iJuku#3
Rather, Could you run me through how to use it? , i may be doing something wrong but no idea what.
01/06/2016 08:18 Seren30#4
Quote:
Originally Posted by iJuku View Post
Rather, Could you run me through how to use it? , i may be doing something wrong but no idea what.
You run it through another program, probably stated in the title of the thread you linked.
01/12/2016 23:48 chaoticoracle225#5
Quote:
Originally Posted by iJuku View Post
autoit
.
Wait a second. That was my script. First 2 lines are useless. Man I was bad at coding back then.