Results 1 to 4 of 4
  1. #1
    Zorkanne's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Posts
    0
    Reputation
    10
    Thanks
    2

    AHK script for autospotting and rapidfire

    Steps for usage:
    1-Go to your battlefield commands
    2-Find where your wheel up/down is assigned (usually for changing weapons, unless you've changed it)
    3-Delete wheel up/down from your commands
    4-Find spot command
    5-assign wheel up for spot
    6-Launch the script
    7-Press F1 to spam wheel up (it will spam spotting at all times)
    8-Press F1 to toggle spam on/off, press f2 to suspend script when toggle is OFF (or it won't suspend, ahk is weird and i'm only starting to learn it) Rapid fire (when your left mouse button is held down) won't stop until you suspend the script.

    Code:
    #MaxThreadsPerHotkey 9999
    $*f2::
    suspend
    return
    
    $*F1::
    Toggle := !Toggle
    loop
    {
        If not Toggle
            break
        sendinput {Blind}{WheelUp}
        Sleep, 100
    }
    
    ~$*LButton::
        While GetKeyState("LButton", "P"){
            Click
            Sleep 10 ;  milliseconds
        }
    return
    
    return

    if you don't want rapid fire, delete this part

    Code:
    ~$*LButton::
        While GetKeyState("LButton", "P"){
            Click
            Sleep 10 ;  milliseconds
        }
    return

  2. The Following User Says Thank You to Zorkanne For This Useful Post:

    Imran Arafin (08-23-2019)

  3. #2
    NoobXiiaoSky's Avatar
    Join Date
    Feb 2019
    Gender
    male
    Posts
    28
    Reputation
    24
    Thanks
    2

    Thanks

    nice,thanks

  4. #3
    ahies's Avatar
    Join Date
    Jan 2018
    Gender
    male
    Posts
    15
    Reputation
    10
    Thanks
    1
    My Mood
    Asleep
    nice works good

  5. #4
    Allekz's Avatar
    Join Date
    Jan 2019
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    0
    thanks for the script.

Similar Threads

  1. Replies: 0
    Last Post: 03-12-2018, 12:58 PM
  2. [Detected] AutoIt Script for Leveling and Farming
    By zato_1one in forum Vindictus Hacks & Cheats
    Replies: 94
    Last Post: 07-25-2013, 07:29 PM
  3. [Outdated] Quick Reload Script for ARs and SMGs
    By phale in forum Call of Duty 9 - Black Ops 2 (BO2) Hacks & Cheats
    Replies: 11
    Last Post: 03-14-2013, 03:53 AM
  4. Updating AHK Script for v1.0
    By MateyB in forum Realm of the Mad God Help & Requests
    Replies: 9
    Last Post: 10-09-2012, 08:51 AM
  5. Other scripts for weapons and other goodies?
    By HeWhoDied in forum DayZ Mod & Standalone Hacks & Cheats
    Replies: 0
    Last Post: 07-27-2012, 03:58 AM