• 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Autohotkey Help?
#1
Bug 
I am trying to use an autohotkeyscript for mw3 to make my gun rapid fire. It doesn't seem to be working. Any help?
Code:
Ins::Suspend
LButton::
Loop
{SetMouseDelay 45
Click
If (GetKeyState("LButton","P")=0)
Break
}
[Image: mca.png]
Add me on steam! otterm
  Reply
#2
(12-03-2011, 05:12)GoldenWrapper Wrote: I am trying to use an autohotkeyscript for mw3 to make my gun rapid fire. It doesn't seem to be working. Any help?
Code:
Ins::Suspend
LButton::
Loop
{SetMouseDelay 45
Click
If (GetKeyState("LButton","P")=0)
Break
}

do you get errors and if so what errors? or is just not working like you want it to

  Reply
#3
(12-03-2011, 09:14)No One Wrote:
(12-03-2011, 05:12)GoldenWrapper Wrote: I am trying to use an autohotkeyscript for mw3 to make my gun rapid fire. It doesn't seem to be working. Any help?
Code:
Ins::Suspend
LButton::
Loop
{SetMouseDelay 45
Click
If (GetKeyState("LButton","P")=0)
Break
}

do you get errors and if so what errors? or is just not working like you want it to

It's just not working.
[Image: mca.png]
Add me on steam! otterm
  Reply
#4
.....
  Reply
#5
Nice to see im not the only one messing around with AHK Tongue
well im going to give you my rapid fire script, ive been using this for quite awhile, and feel free to change the delays or keys ive set.
Code:
#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%

RAlt::Suspend ; When you press this it will pause the script press it again to enable or change the key if you want
*~LButton:: ; Pressing Left Click will cause rapid fire so change this if you want
Loop
{
Sleep, 30 ; Delay between clicks - Note: 1 Sec = 1000
Click
If (GetKeyState("LButton","P")=0) ; Checks if Left click is being pressed
Break ; Stops the loop when left click is not pressed
}

"*" before LButton means that you will be able to rapid fire even if modifiers are held down (SHIFT,CTRL,ALT etc...) so remove that if you need to.

To make it shoot faster change 30 to a lower number.
In this line : Sleep, 30 ; Delay between clicks - Note: 1 Sec = 1000
Sleep, 30 = 320 Clicks in 10 Seconds
Sleep, 10 = 640 Clicks in 10 Seconds
Remove Sleep = 17145 Clicks in 10 Seconds *HOLY..*

And if you want to test the speed , check this website and start bashing Big Grin
http://www.brainbashers.com/10seconds.asp

by the way @n3utra1 having Sleep, 0.0033 won't work. it has to be 10 or either remove it entirely
Steam Profile: http://steamcommunity.com/id/hgevo
Free 2,5 GB on Dropbox with this link! Big Grin http://db.tt/JqP7Tjad
  Reply
#6
.....
  Reply
#7
(12-06-2011, 00:43)n3utra1 Wrote:
Quote:by the way @n3utra1 having Sleep, 0.0033 won't work. it has to be 10 or either remove it entirely

Yes it does.

Ive used that script for about a year now and l4d will only let you fire @ 33ms or slower, unlike css what will work at 1ms

i dont know about cod, you will have to test it in game

dude you don't understand, (sleep, 1) does not mean 1 second it means 1 milisec
you can use sleep, 33 and it will do the same instead of 0.0033
Steam Profile: http://steamcommunity.com/id/hgevo
Free 2,5 GB on Dropbox with this link! Big Grin http://db.tt/JqP7Tjad
  Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Autohotkey personal bind help Gigan00b 3 2,110 05-06-2012, 13:45
Last Post: Gigan00b
  AutoHotKey RapidFire Script d0h! 7 37,907 03-29-2012, 01:49
Last Post: Dumas
  [Release] Black Ops QuickScope AutoHotkey Script for Sph4ack's Aimbot v1.2 d0h! 19 27,489 01-21-2011, 14:22
Last Post: Chemical6996
  [Release] AutoHotKey RapidFire Toggle Script Edited to work for Black Ops Rolled 12 20,056 01-08-2011, 19:08
Last Post: Ferrari

Forum Jump:


Users browsing this thread: 1 Guest(s)