Page 2 of 2 FirstFirst 12
Results 16 to 21 of 21
  1. #16
    huseyin102's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    ist not work

  2. #17
    sempak8's Avatar
    Join Date
    May 2019
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    73
    Quote Originally Posted by BLURREDDOGE View Post
    I played the game again for a day and probably am not going to play it much again, made some improvements since I used my old script again and changed some things around.
    Only one can be enabled at once for them to work, autofire takes priority.

    NumLock needs to be enabled for "NUMPAD 1,2" to be keys, amazing isn't it?
    -There is no exit key, close it from TaskManager or System Tray



    To run this script you need AutoHotkey: https://autohotkey.com/
    -Make a .ahk file anywhere on the desktop or file explorer then paste the code in. Run the file after saving and voila.
    - Only Tested on Windows 10



    Code:
    one := 0
    two := 0
    firstoptionstatus := "Disabled"
    secondoptionstatus := "Disabled"
    
    Gui, +AlwaysOnTop -Caption +Owner +LastFound +E0x20
    Gui, Margin, 0, 0
    Gui, Color, Grey
    Gui, Font, cRed s30 bold, Arial
    Gui, Add, Text, x13 y0 w500 h40, Recoil Reduce  |
    Gui, Font, cRed s30 bold, Arial
    Gui, Add, Text, x330 y0 w200 h40 vfirstoptionstatus, %firstoptionstatus%
    Gui, Add, Text, x13 y50 w500 h40, Auto-Fire           |
    Gui, Add, Text, x330 y50 w200 h40 vsecondoptionstatus, %secondoptionstatus%
    WinSet, Transparent, 200
    Gui, Show, x0 y800 h100 w530
    ;#################################################  #################################
    
    Hotkey, $LButton, Toggle
    Hotkey, $*~LButton, Toggle
    
    Numpad1::
    Hotkey, $*~LButton, Toggle
    one += 1
    if Mod(one, 2) = 1{
        firstoptionstatus := "Enabled"
    	GuiControl, +clime, firstoptionstatus
        GuiControl,      ,firstoptionstatus, %firstoptionstatus%
    	WinActivate, Tom Clancy's The Division
    }
    else{
        firstoptionstatus := "Disabled"
    	GuiControl, +cred, firstoptionstatus
        GuiControl,      ,firstoptionstatus, %firstoptionstatus%
    	WinActivate, Tom Clancy's The Division
        return
    }
    return
    
    Numpad2::
    Hotkey, $LButton, Toggle
    two += 1
    if Mod(two, 2) = 1{
        secondoptionstatus := "Enabled"
    	GuiControl, +clime, secondoptionstatus
        GuiControl,      ,secondoptionstatus, %secondoptionstatus%
    	WinActivate, Tom Clancy's The Division
    }
    else{
        secondoptionstatus := "Disabled"
    	GuiControl, +cred, secondoptionstatus
        GuiControl,      ,secondoptionstatus, %secondoptionstatus%
    	WinActivate, Tom Clancy's The Division
        return
    }
    return
    
    *~LButton::
    if WinActive("ahk_exe TheDivision.exe")
    {
        while GetKeyState("LButton")
        {    
            DllCall("mouse_event", uint, 1, int, 0, int, 8, uint, 1, int, 0)
            Sleep, 25
        }
    }
    return
    
    LButton::
    if WinActive("ahk_exe TheDivision.exe")
    {
    	Loop
    	{
    	SetMouseDelay 30
    	Click
    	If (GetKeyState("LButton","P")=0)
    	Break
    	}
    }
    else{
    Click
    }
    return

    Preview:

    (I'm using a burst-fire pistol here)

    ChangeLog:
     
    -"Enabled" is in green now because why not
    -It's bigger now and in a less annoying space (For me at least)
    -Doesn't interrupt movement as I now understand that I don't need to spam Gui, show



    To change recoil settings:
    Code:
        while GetKeyState("LButton")
        {    
            DllCall("mouse_event", uint, 1, int, 0, int, NumberForAmountOfDownwardsMovement, uint, 1, int, 0)
            Sleep, DELAYinBETWEENeachMOVEMENT
        }
    which script for auto fire?

  3. #18
    Vicktorovich91's Avatar
    Join Date
    Apr 2017
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    2
    My Mood
    Amazed
    Can you pls post a working file once again?
    if possible both, for auto-fire and no recoil.
    Last edited by Vicktorovich91; 02-17-2020 at 09:21 AM.

  4. #19
    BLURREDDOGE's Avatar
    Join Date
    Oct 2014
    Gender
    male
    Posts
    122
    Reputation
    10
    Thanks
    130
    My Mood
    Sleepy
    Made a version with on-the-go anti-recoil configuration and a triggerbot for sniper rifles: https://www.mpgh.net/forum/showthread.php?t=1460802

    To add auto-fire to it append this somewhere in the script:
    Code:
    <keyname to toggle autofire>::Hotkey, LButton, Toggle
    
    LButton::
    {
    	If WinActive("ahk_exe TheDivision.exe")
    	{
    		Loop
    		{
    			Click
    			if (GetKeyState("LButton","P")=0)
    			{
    				Break
    			}
    		}
    	}
    	else
    	{
    		Click
    	}
    }
    return
    Last edited by BLURREDDOGE; 02-26-2020 at 04:36 PM.
    Newest Trove-Multi-Account-Login:
    V2.3

    ☭☭☭☭☭☭☭☭☭☭☭☭☭👇☭☭☭☭☭☭☭☭☭☭☭☭☭
    ┏───────────────────────────┓
    ┗───────────────────────────┛
    ☭☭☭☭☭☭☭☭☭☭☭☭☭☝☭☭☭☭☭☭☭☭☭☭☭☭☭

  5. #20
    coolcat_mia's Avatar
    Join Date
    Apr 2019
    Gender
    female
    Posts
    9
    Reputation
    10
    Thanks
    0

    Anyone tried?

    Has anyone tried BLURREDDOGE's version of the hack? Want to try but wait for any reviews, first. LOL

  6. #21
    F-ZERO's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    1
    Quote Originally Posted by coolcat_mia View Post
    Has anyone tried BLURREDDOGE's version of the hack? Want to try but wait for any reviews, first. LOL
    It is working somewhat on LMGs.

Page 2 of 2 FirstFirst 12

Similar Threads

  1. [Release] The Division AHK No-Recoil and Autofire
    By BLURREDDOGE in forum Tom Clancy's The Division Hacks & Cheats
    Replies: 15
    Last Post: 04-29-2021, 07:50 AM
  2. [Release] AHK Anti-recoil|Bunny Hop|Burst|Quick-Switch
    By Pentesting in forum Counter-Strike 2 Coding & Resources
    Replies: 75
    Last Post: 12-29-2014, 12:37 AM
  3. AHK Anti-recoil+Burst-fire ALLin1
    By adrmln10 in forum Counter-Strike 2 Discussions
    Replies: 6
    Last Post: 11-18-2014, 11:17 AM
  4. Anti-Recoil (look here Toxic)
    By BPK in forum Soldier Front Hacks
    Replies: 10
    Last Post: 08-15-2009, 07:37 AM
  5. Anti Recoil Hack
    By omgnohacks in forum CrossFire Hacks & Cheats
    Replies: 45
    Last Post: 07-28-2009, 04:02 AM