Page 1 of 2 12 LastLast
Results 1 to 15 of 16
  1. #1
    ExploitEmpire's Avatar
    Join Date
    Mar 2017
    Gender
    male
    Location
    Exploit City
    Posts
    22
    Reputation
    10
    Thanks
    184
    My Mood
    Stressed

    Post Arma 3 Utilities - AHK/AutoFarm/NoRecoil/DayzA3AutoWalk

    My Arma 3 AHK Collection! I will add to this whenever I find/make something i think would assist to make everything a bit easier!


    Arma 3 No Recoil AHK

     
    Code:
    #NoEnv
    SendMode Input
    MsgBox Insert to turn Off run as admin to work in arma 3
     
    Insert:: Hotkey, *~$LButton, Toggle
     
    *~$LButton::
        while GetKeyState("LButton")
        {    
            DllCall("mouse_event", uint, 1, int, 0, int, 1, uint, 0, int, 0)
            Sleep, 0
            DllCall("mouse_event", uint, 1, int, 0, int, 1, uint, 0, int, 0)
            Sleep, 5
        }
    Return

    You can tweak the mouse events for the guns you are using! It is set for MX/MXM/MXSW/FAL/SPMG INSERT TO ENABLE



    Arma 3 AutoFarm AHK f2 ON/OFF
     
    Code:
    #NoEnv
    F2::
    If State=50
    State=Off
    else
    State=50
    SetTimer SendKey, %State%
    Return
     
    SendKey:
    Send LWin

    Change LWin in this code for farming button
     
    Code:
    SendKey:
    Send LWin
     




    Arma 3/DayZ AutoWalk Tutorial inside code! [Credit to megnatar on AHK Fourms]

     
    Code:
    /*
    	How to use.
    	In most games W is used to "move" forward. Thus when calling this function
    	it will simulate a W key down. You can call this function from any hotkey
    	in you're script. Press the key once to move forward, press it again to 
    	stop moving. Clicking the left mouse button or press/release W also
    	will stop you're character from moving.
    	
    	Place this file in you're Authotkey library folder. Which is here:
    	%Userprofile%\documents\AutoHotkey\lib\
    	
    	Give it the following name:
    	AutoWalk.ahk
    	
    	Simply call this function from some hotkey in you're script. For example:
    	
    	~w::
    	AutoWalk()
    	Return
    	
    */
    #InstallKeybdHook
    #InstallMouseHook
    
    global AnyKey			;Declaring variable AnyKey as global variable. Variables in functions are local to that function.
    
    AutoWalk()
    {
    	AnyKey:=A_ThisHotkey					;Placing last pressed hotkey in variable AnyKey.
    	AnyKey:=StrReplace(AnyKey, "~")			;Remove the tilde character from variable Anykey, for none blocked hotkeys.
    	If(AnyKey = "w")						;Check to see if the hotkey is also the w key.
    	{
    		KeyWait, w, T0.5			;Waiting half a second for w to be physically released.
    		If(errorlevel = 1)			;When w is still down after 500ms errorlevel is set to 1. You're probably walking manually.
    		{
    			KeyWait, w			;Waiting for w key to be released.
    			exit				;W is physically released, so we can exit here since movement is stopped.
    		}
    	}	
    	keywait, %AnyKey%							;Waiting for the hotkey to be released.
    	If not W_VirtState:=GetKeyState("w")		;When the virtual status of the w key is not down, when W_VirtState is 0. Do whatever comes below.
    	{
    		SendInput, {w down}						;Virtually pressing w down. Virtual (logical state) is whatever your O.S. thinks the key status is in. Physical is the actual state on you're keyboard.
    		keywait, %AnyKey%
    		Loop
    		{	;When you're hotkey, Lbutton or w key is physically pressed down, variable KeyState will be set to 1. The body of the "if" statement will then execute.
    			If(KeyState:=GetKeyState(AnyKey, "P") || KeyState:=GetKeyState("Lbutton", "P") || KeyState:=GetKeyState("w", "P"))
    			{
    				keywait, %AnyKey%			;Waiting for you're hotkey to be released.
    				SendInput, {w up}			;Virtually sending w up. Stop moving.
    				break						;Breaking free from the loop.
    			}
    			sleep, 100			;Sleeping 1/10th of a second each time the loop is iterated. Prevents the function from using to much CPU cycles.
    		}						;You can increase the sleep period, but the function will be less responsive.
    	}
    }



    Message request or custom need!
    Last edited by ExploitEmpire; 03-29-2017 at 09:09 AM.

  2. The Following 3 Users Say Thank You to ExploitEmpire For This Useful Post:

    BLURREDDOGE (05-22-2018),rocnas (09-03-2023),vitinholoko22 (01-21-2018)

  3. #2
    mstecker's Avatar
    Join Date
    Jul 2016
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    1
    My Mood
    Buzzed
    how does the auto farm work?

  4. #3
    ExploitEmpire's Avatar
    Join Date
    Mar 2017
    Gender
    male
    Location
    Exploit City
    Posts
    22
    Reputation
    10
    Thanks
    184
    My Mood
    Stressed
    Select the button you use to farm on the server hit [F2] the toggle key, then it will farm until you are full. If your server does not use LWin to farm change this to the key SendKey:
    Send LWin

    Also make sure you have AHK installed!

  5. #4
    Shirioz's Avatar
    Join Date
    Oct 2016
    Gender
    male
    Location
    Belgium
    Posts
    1
    Reputation
    10
    Thanks
    0
    My Mood
    Devilish
    Do I have to turn the .ahk into a .exe to get the norecoil to work ? And is it detected by battleye ?

  6. #5
    anonymousKor's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    0
    My Mood
    Aggressive
    If I'm thinking correct, This can't be detected right? Because this does not affect the game files and only mouse input?

  7. #6
    Badgalex's Avatar
    Join Date
    Aug 2016
    Gender
    male
    Posts
    18
    Reputation
    10
    Thanks
    1
    Can i get banned for that on Server like Altis life?

  8. #7
    789632's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    What do I need to tweak so it pulls down faster for high recoil guns?

  9. #8
    polopo's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Posts
    22
    Reputation
    24
    Thanks
    142
    My Mood
    Amused
    When I zoom with my mouse or when I use scope like DMS or AMS the ne recoil deosn't work can you help me

  10. #9
    Texehh's Avatar
    Join Date
    Apr 2015
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Hey man, could you make a crouch script, making the player bob up and down rapidly

  11. #10
    PinkAppleX's Avatar
    Join Date
    Apr 2017
    Gender
    female
    Location
    C++
    Posts
    92
    Reputation
    10
    Thanks
    164
    My Mood
    Amazed
    Thanks man<3

  12. The Following User Says Thank You to PinkAppleX For This Useful Post:

    PinkGirlx (08-02-2017)

  13. #11
    memes2017's Avatar
    Join Date
    Jul 2017
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    3
    yh that would be great

  14. #12
    Jonnyarma's Avatar
    Join Date
    Nov 2017
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    The auto farm script isnt activating when i press F2, nothing happens. something i have done wrong? just copy andpasted the code into a .ahk document, saved it and run the file. AHK starts and runs the file, but doesnt work in game.

  15. #13
    CBan's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Posts
    15
    Reputation
    10
    Thanks
    0
    My Mood
    Amazed
    THanks dude this is amazing

  16. #14
    BLURREDDOGE's Avatar
    Join Date
    Oct 2014
    Gender
    male
    Posts
    122
    Reputation
    10
    Thanks
    132
    My Mood
    Sleepy
    Quote Originally Posted by Shirioz View Post
    Do I have to turn the .ahk into a .exe to get the norecoil to work ? And is it detected by battleye ?
    No and No.
    Newest Trove-Multi-Account-Login:
    V2.3

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

  17. #15
    pur33's Avatar
    Join Date
    Jun 2015
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Thanks dude!

Page 1 of 2 12 LastLast

Similar Threads

  1. [Release] [AHK]NoSpread,NoRecoil,ExternalRadar,MinimapSpotting,No Breath,NoGravity,ROF,MuzzleVel
    By wyvern1990 in forum Battlefield 4 Hacks & Cheats
    Replies: 1048
    Last Post: 11-13-2021, 09:16 AM
  2. [Release] ahk script- get improved with norecoil%rapidfire
    By securit4c3k in forum Counter-Strike 2 Scripts
    Replies: 6
    Last Post: 09-01-2016, 12:31 AM
  3. [Outdated] Pean's AHK MultiScript (open source, perfect norecoil, no memory reading/writing)
    By pean153 in forum Counter-Strike 2 Hacks
    Replies: 116
    Last Post: 05-29-2015, 08:00 PM
  4. AHK Norecoil CS:GO
    By wallya2 in forum Counter-Strike 2 Discussions
    Replies: 10
    Last Post: 08-13-2014, 06:39 AM
  5. [Source Code] Call of Duty Black Ops 2 NORECOIL ONLY code AHK
    By benahehe11 in forum Call of Duty Black Ops 2 Coding, Programming & Source Code
    Replies: 5
    Last Post: 04-29-2013, 04:57 AM