Thread: AHK Crouch Spam

Page 1 of 3 123 LastLast
Results 1 to 15 of 31
  1. #1
    TDStuart's Avatar
    Join Date
    Dec 2016
    Gender
    male
    Posts
    64
    Reputation
    10
    Thanks
    225

    AHK Crouch Spam

    AHK Crouch Spam
    Timing Taken From Oncagey's Post (https://www.mpgh.net/forum/showthread.php?t=1367215)

    AHK Version by : TDStuart

    Pretty simple, crouch spam and shoot by holding down c (or your own hotkey). Works with non burst ARs and Scars (maybe some other guns).
    Made into AHK for people without Razer keyboards / products.

     

    Replace the c on the line "c::" with any other key.
    Here is all the key codes :
     

    LButton Left mouse button
    RButton Right mouse button
    MButton Middle or wheel mouse button
    Advanced buttons
    XButton1 4th mouse button. Typically performs the same function as Browser_Back.
    XButton2 5th mouse button. Typically performs the same function as Browser_Forward.
    Wheel
    WheelDown Turn the wheel downward (toward you).
    WheelUp Turn the wheel upward (away from you).
    WheelLeft
    WheelRight
    [v1.0.48+]: Scroll to the left or right.

    Requires Windows Vista or later. These can be used as hotkeys with some (but not all) mice which have a second wheel or support tilting the wheel to either side. In some cases, software bundled with the mouse must instead be used to control this feature. Regardless of the particular mouse, Send and Click can be used to scroll horizontally in programs which support it.

    Keyboard
    Note: The names of the letter and number keys are the same as that single letter or digit. For example: b is the B key and 5 is the 5 key.

    Although any single character can be used as a key name, its meaning (scan code or virtual keycode) depends on the current keyboard layout. Additionally, some special characters may need to be escaped or enclosed in braces, depending on the context. [v1.1.27+]: The letters a-z or A-Z can be used to refer to the corresponding virtual keycodes (usually vk41-vk5A) even if they are not included in the current keyboard layout.

    General keys
    CapsLock CapsLock (caps lock key)
    Space Space (space bar)
    Tab Tab (tabulator key)
    Enter (or Return) Enter
    Escape (or Esc) Esc
    Backspace (or BS) Backspace
    Cursor control keys
    ScrollLock ScrollLock (scroll lock key)
    Delete (or Del) Delete
    Insert (or Ins) Insert
    Home Home
    End End
    PgUp PageUp (page up key)
    PgDn PageDown (page down key)
    Up ↑ (up arrow key)
    Down ↓ (down arrow key)
    Left ← (left arrow key)
    Right → (right arrow key)
    Numpad keys
    Due to system behavior, the following keys seperated by a slash are identified differently depending on whether NumLock is ON or OFF. If NumLock is OFF but Shift is pressed, the system temporarily releases Shift and acts as though NumLock is ON.

    Numpad0 / NumpadIns 0 / Insert
    Numpad1 / NumpadEnd 1 / End
    Numpad2 / NumpadDown 2 / ↓
    Numpad3 / NumpadPgDn 3 / PageDown
    Numpad4 / NumpadLeft 4 / ←
    Numpad5 / NumpadClear 5 / typically does nothing
    Numpad6 / NumpadRight 6 / →
    Numpad7 / NumpadHome 7 / Home
    Numpad8 / NumpadUp 8 / ↑
    Numpad9 / NumpadPgUp 9 / PageUp
    NumpadDot / NumpadDel . / Delete
    NumLock NumLock (number lock key)
    NumpadDiv / (division)
    NumpadMult * (multiplication)
    NumpadAdd + (addition)
    NumpadSub - (subtraction)
    NumpadEnter Enter
    Function keys
    F1 - F24 The 12 or more function keys at the top of most keyboards.
    Modifier keys
    LWin Left Win. Corresponds to the <# hotkey prefix.
    RWin
    Right Win. Corresponds to the ># hotkey prefix.

    Note: Unlike Control/Alt/Shift, there is no generic/neutral "Win" key because the OS does not support it. However, hotkeys with the # modifier can be triggered by either Win key.

    Control (or Ctrl) Control. As a hotkey (Control::) it fires upon release unless it has the tilde prefix. Corresponds to the ^ hotkey prefix.
    Alt Alt. As a hotkey (Alt::) it fires upon release unless it has the tilde prefix. Corresponds to the ! hotkey prefix.
    Shift Shift. As a hotkey (Shift::) it fires upon release unless it has the tilde prefix. Corresponds to the + hotkey prefix.
    LControl (or LCtrl) Left Control. Corresponds to the <^ hotkey prefix.
    RControl (or RCtrl) Right Control. Corresponds to the >^ hotkey prefix.
    LShift Left Shift. Corresponds to the <+ hotkey prefix.
    RShift Right Shift. Corresponds to the >+ hotkey prefix.
    LAlt Left Alt. Corresponds to the <! hotkey prefix.
    RAlt
    Right Alt. Corresponds to the >! hotkey prefix.

    Note: If your keyboard layout has AltGr instead of RAlt, you can probably use it as a hotkey prefix via <^>! as described here. In addition, LControl & RAlt:: would make AltGr itself into a hotkey.

    Multimedia keys
    The function assigned to each of the keys listed below can be overridden by modifying the Windows registry. This table shows the default function of each key on most versions of Windows.

    Browser_Back Back
    Browser_Forward Forward
    Browser_Refresh Refresh
    Browser_Stop Stop
    Browser_Search Search
    Browser_Favorites Favorites
    Browser_Home Homepage
    Volume_Mute Mute the volume
    Volume_Down Lower the volume
    Volume_Up Increase the volume
    Media_Next Next Track
    Media_Prev Previous Track
    Media_Stop Stop
    Media_Play_Pause Play/Pause
    Launch_Mail Launch default e-mail program
    Launch_Media Launch default media player
    Launch_App1 Launch My Computer
    Launch_App2 Launch Calculator
    Special keys
    AppsKey Menu. This is the key that invokes the right-click context menu.
    PrintScreen PrintScreen
    CtrlBreak Ctrl+Break
    Pause Pause
    Break Break. Since this is synonymous with Pause, use ^CtrlBreak in hotkeys instead of ^Pause or ^Break.
    Help Help. This probably doesn't exist on most keyboards. It's usually not the same as F1.
    Sleep Sleep. Note that the sleep key on some keyboards might not work with this.
    SCnnn Specify for nnn the scan code of a key. Recognizes unusual keys not mentioned above. See Special Keys for details.
    VKnn
    Specify for nn the hexadecimal virtual key code of a key. This rarely-used method also prevents certain types of hotkeys from requiring the keyboard hook. For example, the following hotkey does not use the keyboard hook, but as a side-effect it is triggered by pressing either Home or NumpadHome:

    ^VK24::MsgBox You pressed Home or NumpadHome while holding down Control.
    Known limitation: VK hotkeys that are forced to use the keyboard hook, such as *VK24 or ~VK24, will fire for only one of the keys, not both (e.g. NumpadHome but not Home). For more information about the VKnn method, see Special Keys.

    Warning: Only Send, GetKeyName, GetKeyVK, GetKeySC and #MenuMaskKey support combining VKnn and SCnnn. [v1.1.27+]: The presence of an invalid suffix prevents VKnn from being recognized. For example, vk1Bsc001:: raises an error in v1.1.27+, but sc001 was ignored (had no effect) in previous versions.



     

    Code:
    ; Original By oncagey, converted to ahk by : TDStuart
    ; Please Credit, or you are stealing our code. Thanks.
    ; AHK Keybind Instructions / Guide :
    ; 	The activation key is c (c::), just replace the c with any key you want.	
    
    ; The Code
    c::
    Send {LCtrl down}
    Sleep 15
    Send {LCtrl up}
    Sleep 300
    Send {space down}
    Sleep 15
    Send {space up}
    Sleep 15
    Send {Click down}
    Send {click up}


     

    If you want me to convert your razer keybind or other into an ahk script just pm me. I'll be checking every few days.


    Note for Mods : Could I link the ahk official page for their keybind list? It is hard to read since I just copied all the text from the website and it is not formatted.
    Finally a good cheat, oh wait thats just ahk.

  2. #2
    Nero's Avatar
    Join Date
    Mar 2013
    Gender
    female
    Location
    69.01.192
    Posts
    3,040
    Reputation
    197
    Thanks
    3,259
    My Mood
    Angelic
    AHK is bannable in fortnite.

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

    rallycross (06-06-2018),zlayamama (07-13-2018)

  4. #3
    CumboDombo's Avatar
    Join Date
    Jan 2016
    Gender
    male
    Posts
    26
    Reputation
    10
    Thanks
    0
    this one doesnt really work as the other video shows ;-; its way to slow and it shoots stairs

  5. #4
    TDStuart's Avatar
    Join Date
    Dec 2016
    Gender
    male
    Posts
    64
    Reputation
    10
    Thanks
    225
    I don't know what is the problem for you it works fine for me. You can toggle the timing, maybe your ping is higher or your fps is really low. Idk what your problem could be to be honest.

    - - - Updated - - -

    Quote Originally Posted by Queen View Post
    AHK is bannable in fortnite.
    I have been using ahk for a while, I have never been banned. Do you have sources to confirm this, like an epic announcement or something?
    Finally a good cheat, oh wait thats just ahk.

  6. #5
    DaddySin's Avatar
    Join Date
    Jun 2018
    Gender
    male
    Posts
    20
    Reputation
    10
    Thanks
    0
    Thanks for this and the ban notification about AHK

  7. #6
    LopplioGaming's Avatar
    Join Date
    Jan 2017
    Gender
    male
    Location
    US
    Posts
    814
    Reputation
    47
    Thanks
    353
    My Mood
    Devilish
    I used AHK like 3 month ago and it was fine, idk if they've fixed it though now that it's season 4 and there's lots of updates rolling out.

  8. #7
    Rex1337's Avatar
    Join Date
    Feb 2018
    Gender
    male
    Posts
    288
    Reputation
    36
    Thanks
    19
    My Mood
    Inspired
    thanks for this

  9. #8
    TDStuart's Avatar
    Join Date
    Dec 2016
    Gender
    male
    Posts
    64
    Reputation
    10
    Thanks
    225
    I've been using ahk forever and I haven't been banned.
    Finally a good cheat, oh wait thats just ahk.

  10. #9
    j dub beats's Avatar
    Join Date
    Jun 2018
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    0
    when i pull up i just fort on my nite

  11. #10
    montagic's Avatar
    Join Date
    Dec 2015
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by Queen View Post
    AHK is bannable in fortnite.
    No it's not. It's not even detectable, just a macro program. Plenty of streamers use it and I've been using it for months with no issues. Unless you have proof please don't post things like this. Several games that use EAC have never had issues with AHK and they say it is fine as long as it doesn't give you a competitive advantage (and they can't necessarily detect whether a script is going to do that.)
    Last edited by montagic; 06-27-2018 at 12:37 PM.

  12. #11
    R6BanPlz's Avatar
    Join Date
    Jun 2018
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    My Mood
    Amused
    Quote Originally Posted by montagic View Post
    No it's not. It's not even detectable, just a macro program. Plenty of streamers use it and I've been using it for months with no issues. Unless you have proof please don't post things like this. Several games that use EAC have never had issues with AHK and they say it is fine as long as it doesn't give you a competitive advantage (and they can't necessarily detect whether a script is going to do that.)
    “Cheats” means programs or other processes which may give players an unfair competitive advantage in the Software.
    Pulled that straight out of the terms and conditions.

  13. #12
    montagic's Avatar
    Join Date
    Dec 2015
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by R6BanPlz View Post
    “Cheats” means programs or other processes which may give players an unfair competitive advantage in the Software.
    Pulled that straight out of the terms and conditions.
    Doesn't matter what you pull, macros are not bannable. You can use your mouse software to do these things.

  14. #13
    track_xd's Avatar
    Join Date
    Jul 2018
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    0
    Very cool script, thanks for sharing

  15. #14
    jokera992's Avatar
    Join Date
    Feb 2018
    Gender
    male
    Posts
    245
    Reputation
    10
    Thanks
    7
    gj bro very nice cheat

  16. #15
    regan002's Avatar
    Join Date
    Mar 2015
    Gender
    male
    Posts
    58
    Reputation
    10
    Thanks
    1,304
    My Mood
    Bitchy
    Quote Originally Posted by montagic View Post
    Doesn't matter what you pull, macros are not bannable. You can use your mouse software to do these things.
    No AHK scripts are easy for there system to detect and there high chance of ban due to software manipulation, only Logitech and razor etc hacks truly work without ban because they are going through the devices driver so the PC reads it as a hardware manipulation

Page 1 of 3 123 LastLast

Similar Threads

  1. [Release] TFUE CROUCH SPAM SHOT AHK
    By halfmystic1 in forum Fortnite Hacks & Cheats
    Replies: 83
    Last Post: 09-29-2019, 11:05 PM
  2. [Help Request] Crouch Spamming AHK
    By gurdz in forum H1Z1 Discussions & Help
    Replies: 0
    Last Post: 03-02-2017, 09:50 AM
  3. [Release] [UNIVERSAL] AHK Jump Script + Crouch Spam
    By GQEy4wuhWUJHJWuj in forum Counter-Strike 2 Scripts
    Replies: 14
    Last Post: 04-06-2016, 06:39 AM
  4. [Help] Crouch spam
    By ryuden10 in forum Combat Arms EU Discussions
    Replies: 1
    Last Post: 04-30-2015, 12:50 PM
  5. AHK Ability Spam
    By web69 in forum Realm of the Mad God Tutorials & Source Code
    Replies: 0
    Last Post: 10-27-2014, 09:58 PM

Tags for this Thread