Quote (Phiro @ Oct 18 2011 11:46am)
ok it works now thx
but got problem with the hellfire cast time and the way he runs is a bit confusing ^^
how can i change cast time?
I actually have a lot of +4% use time gear that I wear. Take the original code underneath the download, and change Sleep(1000) between the lines:
Code
Sleep(1000)
ControlSend("Hellgate (x86 DX9)", "", "", "{1}"); Hellfire
Sleep(1000)
ControlSend("Hellgate (x86 DX9)", "", "", "{3}"); Demonspine
Sleep(1000)
ControlSend("Hellgate (x86 DX9)", "", "", "{3}")
Sleep(1000)
ControlSend("Hellgate (x86 DX9)", "", "", "{3}")
Sleep(1000)
ControlSend("Hellgate (x86 DX9)", "", "", "{1}"); Hellfire
Sleep(1000)
ControlSend("Hellgate (x86 DX9)", "", "", "{3}"); Demonspine
Sleep(1000)
ControlSend("Hellgate (x86 DX9)", "", "", "{3}")
Sleep(1000)
ControlSend("Hellgate (x86 DX9)", "", "", "{3}")
Sleep(1000)
ControlSend("Hellgate (x86 DX9)", "", "", "{1}"); Hellfire
Sleep(1000)
ControlSend("Hellgate (x86 DX9)", "", "", "{8}"); Arcane Sheild
Sleep(250)
Send("{f down}")
Sleep(5)
Send("{w down}")
Sleep(2500)
Send("{w up}")
Sleep(5)
Send("{f up}")
Sleep(5)
ControlSend("Hellgate (x86 DX9)", "", "", "{1}"); Hellfire
Sleep(500)
ControlSend("Hellgate (x86 DX9)", "", "", "{f}")
Sleep(500)
ControlSend("Hellgate (x86 DX9)", "", "", "{f}")
Sleep(500)
ControlSend("Hellgate (x86 DX9)", "", "", "{4}"); /unstuck
Sleep(500)
Sleep(1000) means wait for one second, change it to whatever you like using SCITE editor that can be downloaded with AutoIt for free from their website. You cannot reverse the exe file once it's been made, so I suggest cut and paste my code, and tailor the timings to your system. Also, if the movement timers are weird, you can change them as well by changing the sleep timers between the down and up in this bit of code:
Code
Send("{a down}")
Sleep(600)
Send("{a up}")
Sleep(200)
Send("{w down}")
Sleep(2050)
Send("{w up}")
This was pretty much a foreseeable problem, considering everyone's computers run differently, and everyone's cast timers and movement timers are bound to be different. I'm not sitting at your computer, so I will be unable to time it perfectly for yours.