AHK SCRIPT REQUEST

diocane20

Member
Joined
Jul 22, 2017
Messages
9
Reaction score
0
Hi people, I'm new here. I need a script that automatically presses the "C" key after I pressed the left mouse button. This allows me to make the "C-BUG" faster on the game SA: MP. Can someone help me?
 

Forever15

Expert
Joined
Dec 31, 2015
Messages
510
Reaction score
12
keywait, lbutton, T
or
keywait, lbutton, L

im newbie t script but try that shit xD
 

mistery

Well-known member
Joined
Apr 23, 2014
Messages
262
Reaction score
5
while getkeystate("LButton","P")
{
keywait, Lbutton
send, {vk0x43 down}
sleep 10
send, {vk0x43 up}
sleep 10
}
 
Top