hi guys can i request this ^^
need a script that makes you press "Y" every5 seconds and at the same time it presses "1" every 0.5 second
need a script that makes you press "Y" every5 seconds and at the same time it presses "1" every 0.5 second
HotKeySet("{F3}", "_Start")
HotKeySet("{ESC}", "_Stop")
While Sleep(100)
WEnd
Func _Start()
$TimerY = TimerInit()
$Timer1 = TimerInit()
While 1
If TimerDiff($TimerY) >= 5000 Then
Send("y")
$TimerY = TimerInit()
EndIf
If TimerDiff($Timer1) >= 500 Then
Send("1")
$Timer1 = TimerInit()
EndIf
WEnd
EndFunc
Func _Stop()
Exit
EndFunc
I dont get why you just dont learn how to code these scripts yourself specially when the thing you require is the most basic and you already have the code in front of you.Quote:
thanks alot man ^^
another request man actually they are two ::
first request::
* Press Y button each 6 seconds one time and after each Y button press 3 presses of 1 button like this : Y 1 (1sec)1(1sec)1(1sec)(after 5 sec) Y 1 1 1 and so on
* Same as previous request but instea of Y click tab ^^
thanks for your help really apreciate it
While 1 ;dauerSchleife
Send("1") ;sende 1
Sleep(1000) ;warte 1 sec
Send("3") ;sende 3
Sleep(2000) ;warte 2 sec
Wend ;Schleifeende