16
Commander / Re: no recoil not working
« on: 01:22 PM - 03/21/16 »
hey guys, I am going to answer some questions
Is this Specific to ToM: Yes, but just change the movement to make it for anything else
just edit:
you would need ahk installed and then save the above script as .ahk...you would also need to add the top of the file that all these scripts need...i didn't include it because everyone needs to learn how this works.
Is this Specific to ToM: Yes, but just change the movement to make it for anything else
just edit:
Code: [Select]
While (i < 86) {
If (i < 3) {
l:=time(),move(-1, 0)
Delay(0.01)
}
; 0.1s + 0.03s = 0.13s
l:=time(),move(0, 1)
Delay(0.01)
i++
}
yes, this is AHK...you would need ahk installed and then save the above script as .ahk...you would also need to add the top of the file that all these scripts need...i didn't include it because everyone needs to learn how this works.