Page 1 of 1

Needed Script

Posted: 15 Jan 2018, 08:22
by Alucxrd
I need a script that Presses Q 10 times then holds down C for 10 seconds. I tried making the script myself but utterly failed. Anyone? :?

Re: Needed Script

Posted: 15 Jan 2018, 17:49
by Spawnova

Code: Select all

f1::  ;hotkey = F1, to activate the below code
loop 10 {
	send q
	sleep 30 ;sleep 30ms after each press   (1000ms = 1 second)
}
send {c down}
sleep 10000 ;1000 = 1 second, so 10000 = 10 seconds
send {c up}
return