Thread Rating:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Release AutoHotKey RapidFire Toggle Script Edited to work for Black Ops
#1
This was originally made for MW2, tried to use in Black Ops, I had to tweak some stuff but I got it to work. F12 toggles it on and off.


Code:
#SingleInstance
gActivateScript = 0

; Insert to activate the macro
~F12::
KeyWait, F12
GetKeyState, HomeState, F12, T
If HomeState = D
{
    gActivateScript = 1

}
else
{
    gActivateScript = 0

}
return

; CTRL + SHIFT + LBUTTON to activate the macro
~+^LButton::
If gActivateScript = 0
{
    gActivateScript = 1

}
else
{
    gActivateScript = 0

}
return

;Also applies to burst weapons. ie click and hold will perform like a full auto firing mode
~LButton::
Goto, DoFiringLoop
Return

;When crouching and firing at the same time. Using Ctrl as crouch button
~^LButton::
Goto, DoFiringLoop
Return

DoFiringLoop:
if gActivateScript = 1
{
    Loop
    {
        IfWinActive, Call of Duty: BlackOps
{
            MouseClick, left,,, 1, 0, D
           ;delay between simu. mouse btn down and up
            Sleep, 0
            MouseClick, left,,, 1, 0, U
            GetKeyState, LButtonState, LButton, P
            If LButtonState = U
            {
               ;break the loop if physical state of mouse btn is up.
                break
            }
           ;delay between each simu. click events
            Sleep, 75
        }
        else
        {
            break
        }
    }
  
}
exit

return

Reply

#2
moved to tutorials....
Reply

#3
Hey,
we should work together. I an currently working on a CoD:BO keybinder but the rapid fir doesn't work with my code. I used the code on mw2 and it worked.
So what I want to do is include parts of your code in my code to make it work.
I'll pm you with my Keybinder code.

Reply

#4
How this works lol
--
Reply

#5
(12-17-2010, 13:25)Eekhoorn Wrote: How this works lol

You'll need AHK "Autohotkey" or a compiled exe to run it Big Grin
I can compile it if you want.
Reply

#6
(12-17-2010, 12:42)Devilmaster666 Wrote: Hey,
we should work together. I an currently working on a CoD:BO keybinder but the rapid fir doesn't work with my code. I used the code on mw2 and it worked.
So what I want to do is include parts of your code in my code to make it work.
I'll pm you with my Keybinder code.

Alright cool, send me the code.

(12-17-2010, 13:30)Devilmaster666 Wrote:
(12-17-2010, 13:25)Eekhoorn Wrote: How this works lol

You'll need AHK "Autohotkey" or a compiled exe to run it Big Grin
I can compile it if you want.

I already have compiled I attached it, in the .rar file are both the compiled .exe file and the .ahk script file, that way if your worried about exe files you can compile it yourself.
You can download the "AutoHotKey" program here:
http://www.autohotkey.com/download/


Attached Files
.rar   BO_RapidFire.rar (Size: 198.35 KB / Downloads: 176)
Reply

#7
its like a progam / hack if i would call it...

not .gsc xD
if you dig true the world... what comes up first your feet or your head ;qq
Reply

#8
It does not inject to the procces.. Right??

Its an AHK but, When i press F12 The game frezzes for 2 seconds?
Reply

#9
SO DOES IT WORK
Reply

#10
(01-03-2011, 05:12)DTP860 Wrote: SO DOES IT WORK

yes captain capslock
Reply



Possibly Related Threads…
Thread Author Replies Views Last Post
  Black Ops 2 Custom background? jotape99 10 11,681 10-29-2013, 07:22
Last Post: xInfinity.
  Black ops Help Bluexephos 4 4,926 10-06-2013, 16:24
Last Post: Nekochan
  Who can create this script First_Semyon 3 3,963 09-24-2013, 18:19
Last Post: First_Semyon
  Help Permissions DOESNT work Hallla 2 2,832 08-18-2013, 11:28
Last Post: hillbilly
  [Release] Advanced timed messages with script support DePa95 0 3,795 08-07-2013, 19:35
Last Post: DePa95
  why permissions dont work. ? ExoGamer* 4 3,032 07-21-2013, 13:46
Last Post: X-Track
  [Release] Black Ops 1 "External" Console barata 16 18,181 07-19-2013, 21:15
Last Post: Jakeyellis
  Help Run Infinity Script on Teknogods? Bandarigoda123 6 7,078 07-14-2013, 17:27
Last Post: surtek
  [Release] Black Ops FF Explorer master131 37 38,434 07-11-2013, 04:07
Last Post: Jake625
  A question about the Call of Duty Black Ops king_dom 1 3,425 07-08-2013, 05:26
Last Post: DidUknowiPwn

Forum Jump:


Users browsing this thread:
1 Guest(s)

Forum Powered By MyBB, Theme by © 2002-2024 Melroy van den Berg.