this is the same thing the other person said as well...
Just add a 150ms turn to the script.
Add this above the hold down.
Code: Register to unlock hidden link
send("{a down}");presses the s button and holds it
Sleep(1500);waits for 1500 milliseconds/1.5 sec
Send("{a up}");releases s button
This turns you to the left for 1.5 seconds.
NM just change the whole code i will write it for you.
Code: Register to unlock hidden link
Global $Paused, $t
HotKeySet("{PAUSE}", "TogglePause")
HotKeySet("{ESC}", "Terminate")
HotKeySet("{F8}", "Showme")
;;;; Body of program would go here;;;;
While 1
If $t = 1 Then
send("{a down}");presses the A button and holds it
Sleep(1500);waits for 1500 milliseconds/1.5 sec
Send("{a up}");releases s button
Send("{s down}");presses the s button and holds it
Sleep(5800);waits for 5800 milliseconds/5.8 sec
Send("{s up}");releases s button
MouseClick("left",205,531);leftclicks at the coordinates x=205,y=531
MouseClick("left",538,554);leftclicks at the coordinates x=205,y=531
MouseClick("left",538,555);leftclicks at the coordinates x=205,y=531
MouseClick("left",538,553);leftclicks at the coordinates x=205,y=531s
Sleep(60 * 1000)
EndIf
Sleep(10)
WEnd
;;;;;;;;
Func TogglePause()
$Paused = NOT $Paused
While $Paused
sleep(100)
ToolTip('Script is "Paused"',0,0)
WEnd
ToolTip("")
EndFunc
Func Terminate()
Exit 0
EndFunc
Func Showme()
If $t = 0 Then
$t = 1
Return
EndIf
If $t = 1 Then
$t = 0
Return
EndIf
EndFunc
I forgot i am not horde.... so alliance is a little different. But this will work for you. If you need to go right instead of left change the ("{a down}"); to ("{d down}"); and the ("{a up}") to ("{d up}");
Simple as pie.