Skill Hack Delays?

04/10/2009 18:28 xxs1nz#1
I created a skill hack for my self and I was getting tried of having to press the keys so I made a Autoit Script to send the keys. I wanted to see if anyone would have any suggestions on delays. Right now I am playing with 3 variables

1. Number of times the key is sent
2. Delay between that key being sent
3. Delay between each skill key being sent

Everything done in Autoit is by milliseconds, any suggestions would be much appreciated.

Thanks!
04/11/2009 00:13 taz86#2
Code:
Global $Paused
HotKeySet("{HOME}", "TogglePause")
HotKeySet("{END}", "Terminate")


while 1
Send("2")
Sleep(1)
Send("4")
Sleep(1)
Send("5")
Sleep(1)
Send("7")
Sleep(1)
Send("9")
Sleep(1)
Send("{SPACE}")
Sleep(1)


Wend


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

Func Terminate()
Exit 0
EndFunc
Code:
Global $Paused
HotKeySet("{HOME}", "TogglePause")
HotKeySet("{END}", "Terminate")


while 1
MouseDown ("left")
Sleep (20000)
Wend


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

Func Terminate()
Exit 0
EndFunc

i use it for abbys just go in set move speed form mobs to 0 and set the mouse over the first monster and go afk 50min ;)
this works good for me i kill all bosses in time
04/11/2009 03:04 xxs1nz#3
Already have a script, just wondering if anyone had input about delays to use.