Page 2 of 4 FirstFirst 1234 LastLast
Results 16 to 30 of 48
  1. #16
          ( ° ͜ʖ͡°)╭∩╮
    Former Staff
    MarkHC's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    127.0.0.1
    Posts
    2,750
    Reputation
    66
    Thanks
    14,529
    My Mood
    Angelic
    /Moved to Source Code section cause this is.. well... source code


    CoD Minion from 09/19/2012 to 01/10/2013

  2. #17
    dz0's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    159
    Reputation
    10
    Thanks
    16
    My Mood
    Buzzed

    Arrow

    answering your questions

    what number do you use for anti recoil?:

    >>>> I used number 2 and used this on mp7, vector and scar, seemed to have a effect and reduced/controlled effect <<<<

    Chances ban? People oped by some theater interface hacker?

    >>>> As Geomatrical the 7th said " The effects are visual, it isn't reading nor writing to the game's memory. So it should be visible. "
    >>>> - but this isn't greatly visible..... and I doubt any 1 will notice the effect, it wont piss people off, as they probably realize - it wont
    >>>> give you super uzi mega fire rate - that no one else has lol - it could give you a small advantage.


    Is it still working?

    >>>> Yes, used it 3 hrs ago

    GiMMee A ReP OR ThX if I helped
    Last edited by dz0; 11-30-2012 at 03:41 PM.

  3. #18
    digi7al's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    15
    My Mood
    Drunk
    I am going to rewrite and simplify the script. In its current form it is bloated and inefficient. Editing the fire rate also affects the antirecoil, so I'm going to have to make both functions independent, as well as adjustable.

    Someone mentioned that guns feel like they fire slower. I'm sure this is true, particularly with SMGs. Their fire rate is probably much faster than 25ms, however, with the script in its current form, increasing the fire rate below 25ms causes the script to lock up.

    Once I do some testing, and feel that I have an improved script, I'll update my initial post with the updated code.

  4. #19
    sonice's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Hi digi7al and thanks for your job !
    When i start the script, i can't no longer walk or run ! Cause i play with particulary keyboard and mouse configuration :

    walk : left mouse button
    run : right mouse button and left mouse button
    fire : left ctrl button keyboard

    What key must i change in the script for it working nice for me ?!!
    :-)

    Thanks,

  5. #20
    gteuk's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    248
    Reputation
    15
    Thanks
    696
    AHK is detectable although it is external, ahk will work with any game providing your key binds are the same.

    NEVER use AHK on a PB server, it is detected and you will be banned, I have not tried it on Black ops 2, however this if done right should work on most games

    here is a universal code to use at own risk as some servers will ban you quick

    Code:
    if not A_IsAdmin
    {
       Run *RunAs "%A_ScriptFullPath%"  
       ExitApp
    }
    
    config =
    (
    [MDelaySettings]
    mouseDelay=30
    minMouseDelay=10
    [MButtonSettings]
    RButtonEnabled=false
    LButtonEnabled=false
    [BurstSettings]
    BurstFire=false
    burst=3
    [NoRecoilSettings]
    norecoil=false
    movedown=2
    [CrossHairSettings]
    crosshairColor=000000
    [VersionInfo]
    major=1
    minor=8
    )
    
    IfNotExist c:\AHKScript\config.ini
    	FileCreateDir, C:\AHKScript
    	FileAppend %config%, c:\AHKScript\config.ini
    
    
    
    major := getIni("c:\AHKScript\config.ini", "VersionInfo", "major")
    minor := getIni("c:\AHKScript\config.ini", "VersionInfo", "minor")
    version := major "." minor
    tfVersion := major " point " minor
    
    ini := "c:\AHKScript\config.ini"
    ;; TTS ;;
    ttsEnabled = true
    ttsVol = 100
    
    SetWinDelay 0
    Coordmode Mouse, Screen
    OldX := -1, OldY := -1
    
    
    SAPI := ComObjCreate("SAPI.SpVoice")
    SAPI.volume := 100
    
    say(msg) { ;Text to speech using integrated COM
    	global ttsEnabled
    	if(ttsEnabled == "true") {
    		global SAPI
    		SAPI.speak(msg,1)
    	}
    }
    
    MouseMoveDown(movedownRate) {
    	MouseGetPos x, y
    	MouseMove x, y+movedownRate
    }
    
    getIni(config, section, key) {
    	IniRead value, %config%, %section%, %key%
    	return value
    }
    
    OldX := -1, OldY := -1
    
    ID1 := Box(1,1,A_ScreenHeight)
    ID2 := Box(2,A_ScreenWidth,1)
    
    Box(n,w,h) { 
    	Gui %n%:-Caption +ToolWindow +E0x20 ; No title bar, No taskbar button, Transparent for clicks
    	Gui %n%: Show, X0 Y0 W%w% H%h%      ; Show it
    	cColor := getIni("config.ini", "CrossHairSettings", "crosshairColor")
    	Gui 1:Color, %cColor%
    	Gui 2:Color, %cColor%
    	WinGet ID, ID, A                    ; ...with HWND/handle ID
    	Winset AlwaysOnTop,ON,ahk_id %ID%   ; Keep it always on the top
    	WinSet Transparent,255,ahk_id %ID%  ; Opaque
    	Return ID
    }
    
    RGBtoHEX(R, G, B) {
    	SetFormat, integer, hex
    	R += 0 ; Convert from decimal to hex.
    	G += 0
    	B += 0
    	RGB := (R*0x10000) + (G*0x100) + (B*0x1)
    	return %RGB%
    }
    
    
    welcomeMsg = Rapid Fire  has finished loading. Enjoy
    say(welcomeMsg) ;Loading message
    
    ;; Mouse delay settings ;;
    mouseDelay := getIni("c:\AHKScript\config.ini", "MDelaySettings", "mouseDelay")
    minMouseDelay := getIni("c:\AHKScript\config.ini", "MDelaySettings", "minMouseDelay")
    ;; Mouse button settings ;;
    RButtonEnabled := getIni("c:\AHKScript\config.ini", "MButtonSettings", "RButtonEnabled")
    LButtonEnabled := getIni("c:\AHKScript\config.ini", "MButtonSettings", "LButtonEnabled")
    ;; Burst settings ;;
    BurstFire := getIni("c:\AHKScript\config.ini", "BurstSettings", "BurstFire")
    burst := getIni("c:\AHKScript\config.ini", "BurstSettings", "burst")
    ;; No recoil settings ;;
    norecoil := getIni("c:\AHKScript\config.ini", "NoRecoilSettings", "norecoil")
    movedown := getIni("c:\AHKScript\config.ini", "NoRecoilSettings", "movedown")
    ;; Crosshair settings ;;
    crosshairColor := getIni("c:\AHKScript\config.ini", "CrossHairSettings", "crosshairColor")
    
    
    ^s:: ;Temporarily suspends the application
    	Suspend, Toggle
    return
    
    ^e:: ;Exits the application
    	GoSub ExitSub
    return
    
    !+s:: ;Toggle TTS
    	if(ttsEnabled == "false") {
    		ttsEnabled = true
    		say("Text to speech has been enabled")
    	} else {
    		say("Text to speech has been disabled")
    		ttsEnabled = false
    	}
    return
    
    
    ^RButton::
    	if(RButtonEnabled == "false") {
    		RButtonEnabled = true
    		say("Right mouse rapid fire enabled")
    	} else {
    		RBUttonEnabled = false
    		say("Right mouse rapid fire disabled")
    	}
    return
    
    ^LButton::
    	if(LButtonEnabled == "false") {
    		LButtonEnabled = true
    		say("Left mouse rapid fire enabled")
    	} else {
    		LBUttonEnabled = false
    		say("Left mouse rapid fire disabled")
    	}	
    return
    
    
    ^d:: ;Says the current mouse delay
    	msg = Your current mouse delay is %mouseDelay%.
    	say(msg)
    return
    
    ^up:: ;Increase the mouse delay
    	mouseDelay := mouseDelay + 10
    return
    
    ^down:: ;Decrease the mouse delay
    	if(mouseDelay > minMouseDelay) {
    		mouseDelay := mouseDelay - 10
    	} else {
    		msg = The mouse delay cannot go below %minMouseDelay%.
    		say(msg)
    	}
    return
    
    
    ^b:: ;Toggles burst fire (x-shots/30ms)
    	if(BurstFire == "false") {
    		BurstFire = true
    	} else {
    		BurstFire = false
    	}
    return
    
    !+b:: ;Says the current burst amount
    	msg = Your current burst amount is %burst%.
    	say(msg)
    return
    
    !+up:: ;Increase burst amount
    	burst := burst + 1
    return
    
    !+down:: ;Decrease burst amount
    	if(burst > 1) {
    		burst := burst - 1
    	} else {
    		msg = The burst amount cannot go below 1
    		say(msg)
    	}
    return
    
    
    ^n::
    	if(norecoil == "false") {
    		norecoil = true
    		say("No recoil has been enabled")
    	} else {
    		norecoil = false
    		say("No recoil has been disabled")
    	}
    return
    
    ^m::
    	msg = No recoil: %movedown%
    	say(msg)
    return
    
    #+up::
    	movedown := movedown + 1
    return
    
    #+down::
    	movedown := movedown - 1
    return
    
    
    ^c:: ;Toggles crosshair
    	If OldX = -1
    	   SetTimer crosshair, 1
    	Else
    	{
    	   SetTimer crosshair, Off
    	   Gui 1: Show, X0 Y0
    	   Gui 2: Show, X0 Y0
    	   ToolTip
    	   OldX := -1, OldY := -1
    	}
    return
    
    #+c:: ;Crosshair color
    	InputBox, R, Color selection, Please enter the amount of red to use
    	InputBox, G, Color selection, Please enter the amount of green to use
    	InputBox, B, Color selection, Please enter the amount of blue to use
    
    	crosshairColor := RGBtoHEX(R, G, B)
    	
    	Gui 1:Color, %crosshairColor%
    	Gui 2:Color, %crosshairColor%
    	msgbox The crosshair color has been changed to %crosshairColor%
    return
    
    
    
    
    
    ^+MButton:: ;Make a 360 degree turn (lol trick shots)
    	MouseGetPos x, y
    	MouseMove X+790, Y
    return
    
    LButtonEnabled = false
    #if LButtonEnabled == "true"
    ~$LButton:: ;Left mouse button rapid fire
    	if(BurstFire == "false") {
    		Loop {
    			SetMouseDelay mouseDelay
    			Click
    			if (norecoil == "true")
    				MouseMoveDown(movedown)
    			if (GetKeyState("LButton", "P")=0)
    				break
    		}
    	} else {
    		Loop %burst% {
    			Click
    			Sleep 30
    		}
    		Sleep 300
    	}
    return
    
    #if RButtonEnabled == "true"
    ~$RButton:: ;Right mouse button rapid fire
    	if(BurstFire == "false") {
    		Loop {
    			SetMouseDelay mouseDelay
    			Click right
    			if (norecoil == "true")
    				MouseMoveDown(movedown)
    			if (GetKeyState("RButton", "P")=0)
    				break
    		}
    	} else {
    		Loop %burst% {
    			Click right
    			Sleep 30
    		}
    		Sleep 300
    	}
    return
    
    crosshair:
       MouseGetPos RulerX, RulerY
       If (OldX <> RulerX) {
           OldX := RulerX
           WinMove ahk_id %ID1%,, %RulerX%
       }
       If (OldY <> RulerY) {
           OldY := RulerY
           WinMove ahk_id %ID2%,,,%RulerY%
       }
    Return
    
    #Persistent
    OnExit, ExitSub
    return
    
    ExitSub:
    IniWrite %mouseDelay%, c:\AHKScript\config.ini, MDelaySettings, mouseDelay
    IniWrite %minMouseDelay%, c:\AHKScript\config.ini, MDelaySettings, minMouseDelay
    IniWrite %RButtonEnabled%, c:\AHKScript\config.ini, MButtonSettings, RButtonEnabled
    IniWrite %LButtonEnabled%, c:\AHKScript\config.ini, MButtonSettings, LButtonEnabled
    IniWrite %BurstFire%, c:\AHKScript\config.ini, BurstSettings, BurstFire
    IniWrite %burst%, c:\AHKScript\config.ini, BurstSettings, burst
    IniWrite %norecoil%, c:\AHKScript\config.ini, NoRecoilSettings, norecoil
    IniWrite %movedown%, c:\AHKScript\config.ini, NoRecoilSettings, movedown
    IniWrite %crosshairColor%, c:\AHKScript\config.ini, crosshairSettings, CrosshairColor
    IniWrite %VersionInf%, c:\AHKScript\config.ini, VersionInf, ver
    ExitApp
    Return
    Last edited by gteuk; 12-01-2012 at 03:46 PM.

  6. #21
    digi7al's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    15
    My Mood
    Drunk
    VAC doesn't kick/ban for using AHK on Black Ops 2. In BF3, PB will kick you from the server until you turn off AHK, you won't be banned.

  7. #22
    sonice's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0

    Any idea ??!

    Hi digi7al,

    any idea for this keyboard/mouse configuration special ?!!!

    Thanks,


    Quote Originally Posted by sonice View Post
    Hi digi7al and thanks for your job !
    When i start the script, i can't no longer walk or run ! Cause i play with particulary keyboard and mouse configuration :

    walk : left mouse button
    run : right mouse button and left mouse button
    fire : left ctrl button keyboard

    What key must i change in the script for it working nice for me ?!!
    :-)

    Thanks,

  8. #23
    gteuk's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    248
    Reputation
    15
    Thanks
    696
    Change every state of lbutton to the different key key list here

    Hotkeys (Mouse, Joystick and Keyboard Shortcuts)

  9. #24
    digitalfuze's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Tried it out today. Worked great and all however I kept getting disconnected while using it.

  10. #25
    Ar_Cook's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    So how do you get this to work?

  11. #26
    gteuk's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    248
    Reputation
    15
    Thanks
    696
    Download and learn auto hotkey, it is a very simple program but can cause more confusion than needed if you get it wrong,

    for example if you make it rapid fire but forget a script to disable your mouse can open 20 apps at a time on desktop, I would avoid this type of software personally although I have made one or 2 scripts with it.

  12. #27
    TheEvilHacker's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    0
    I don't really know about scripting or the code behind it so could anyone tell me how to make this just a no recoil script? I intend to use it with the AN-94 and the Scar-H mostly the Scar-H.

  13. #28
    Prime75's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    144
    Reputation
    10
    Thanks
    11
    My Mood
    Amused
    Hi. Could you make a script like this for anti recoil only? Sometimes I don't want rapid fire as well. I tried readjusting the code but it was confusing.

    Quote Originally Posted by digitalfuze View Post
    Tried it out today. Worked great and all however I kept getting disconnected while using it.
    That isn't the scripts fault. That's on your end.
    Last edited by Prime75; 02-23-2013 at 02:14 PM.

  14. #29
    matt0ias44's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    it's don"t working

    "error at line 1.
    Line test: , BO2 Rapid Fire + anti-recul par digi7al
    error: this line does not contain a ricognized action.
    the program will exit " (

  15. #30
    Prime75's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    144
    Reputation
    10
    Thanks
    11
    My Mood
    Amused
    Quote Originally Posted by matt0ias44 View Post
    it's don"t working

    "error at line 1.
    Line test: , BO2 Rapid Fire + anti-recul par digi7al
    error: this line does not contain a ricognized action.
    the program will exit " (
    Works fine for me. Are you sure you are copying all of the script?

Page 2 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. [Release] New Rapid Fire Script with Source Code
    By DahInternetz in forum Call of Duty Modern Warfare 2 Private Servers
    Replies: 8
    Last Post: 08-24-2011, 05:10 PM
  2. [Request] Rapid Fire script
    By Mentally in forum Alliance of Valiant Arms (AVA) Discussions
    Replies: 0
    Last Post: 01-17-2011, 12:54 PM
  3. [Release] ULTIMATE RAPID FIRE NO INSTAL UNDETECTABLE
    By craniac in forum Call of Duty 6 - Modern Warfare 2 (MW2) Hacks
    Replies: 7
    Last Post: 04-08-2010, 03:16 PM
  4. Simple AutoHotKey Pistol Rapid Fire
    By .:AsianTim:. in forum Combat Arms Hacks & Cheats
    Replies: 74
    Last Post: 09-27-2009, 10:07 PM
  5. Simple AutoHotKey Rapid Fire
    By .:AsianTim:. in forum Combat Arms Hacks & Cheats
    Replies: 16
    Last Post: 08-17-2009, 02:52 AM