I don think you understood Mega, if you view the sample script he was talking about. You could take it change the ` key to the one you need and then change the delay in wich it sends the key IN SECONDS THAT YOU TYPE. : ) Trying a little never hurt any one, very simple way to get what your asking for.
Here I will help you a little
Code:
HotKeySet("{END}", "close") ;So that we can press "END" to stop the script in case something goes wrong. ALWAYS do this!
HotKeySet("{PAUSE}", "loot") ;So that we can press "END" to stop the script in case something goes wrong. ALWAYS do this!
$loot = false
MsgBox(4096, "TwelveSky2 AutoLooter by MegaByte", "To use this autolooter just hit the pause key. To disable it press the pause key again. To exit it just close the script in the system tray. This autolooter will only loot when the game window has focus.", 10)
Do
;Nothing
if WinWaitActive("TwelveSky2") >0 Then
if $loot=true Then
Send("`") ; <<<< Change this ` to the key you need
Sleep(1000) ;<<<< Adding this will give you a delay between presses every 1000 = 1 Second
EndIf
EndIf
Sleep(1);
Until 1<>1;
Func close() ;This is a function and doesn't actually run unless you tell it to. For example
Exit
EndFunc
Func loot()
if $loot=true Then
$loot=False
Beep ( 500, 100 )
Else
$loot=true
Beep ( 600, 100 )
EndIf
EndFunc
Now all you need to do is download Autoit, change the parts that I marked with ; <<<< and run the script.