All in 1 Fast Attack AHK Script for Staves & Hatchets. menu

User Tag List

Page 1 of 3 123 LastLast
Results 1 to 15 of 43
  1. #1
    Selma's Avatar Active Member
    Reputation
    51
    Join Date
    Dec 2010
    Posts
    105
    Thanks G/R
    15/27
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    All in 1 Fast Attack AHK Script for Staves & Hatchets. Now with added Fast Dodge!

    ***This has been patched and no longer works***




    05/11 - So with the new patch staff no longer works, you can still use fire staff with flamethrower but because there is no skill on life staff without a cool down and cant use 2 fire staves its kind of useless. I'm going to test fire/bow & fire/gun after work and see if i can get one of these combos to work.

    Hatchet & dodge still works at the moment.





    Hey

    Updated All in 1 Fast Attack AHK Script for Staves & Hatchets now with


    I've added a few new options including Fast Dodge, Random delays and a few different hotkeys to run the script.

    RapidFire.png



    Download AHK

    Create new AHK Script
    Copy & Paste the below
    Run & Enjoy

    Let me know if you have trouble and I can compile and send as exe


    Code:
    #NoEnv
    SendMode Input
    SetWorkingDir %A_ScriptDir%
    
    
    Gui, Add, Button, x10 y280 w250 h30, Start
    Gui, Add, Button, x270 y280 w50 h30, Help
    Gui, Add, Text, x20 y80 w120 h20, Script Delay:
    Gui, Add, GroupBox, x10 y10 w310 h110 +Center, Script Settings
    Gui, Add, Text, x20 y29 w120 h20, Script Hotkey
    Gui, Add, Text, x20 y59 w120 h20, Weapon Type:
    Gui, Add, DropDownList, x150 y29 w160 h200 vAttack, XButton1||XButton2|Numpad1|Numpad2|Numpad3|F1|F2|F4|`|LWin
    Gui, Add, DropDownList, x150 y59 w160 h200 vWeapon, Staff||Hatchet
    Gui, Add, Slider, x150 y90 w160 h20 Range50-500 ToolTipLeft vTimeSlider, 200
    Gui, Add, GroupBox, x10 y130 w310 h80 +Center, In Game Keybindings
    Gui, Add, Text, x20 y149 w120 h20, Ability:
    Gui, Add, Text, x20 y179 w120 h20, Active Weapon Swap:
    Gui, Add, CheckBox, x20 y240 w120 h20 vDodge, Faster Dodge
    Gui, Add, CheckBox, x150 y240 w160 h20 vRan, Randomise Delay
    Gui, Add, GroupBox, x10 y220 w310 h50 +Center, Additional Options
    Gui, Add, Hotkey, x150 y150 w150 h20 vSpam, q  
    Gui, Add, Hotkey, x150 y180 w150 h20 vSwap, .
    Gui, Show, x500 y430 h320 w330, Calculator
    Return
    
    
    
    ButtonStart:
    Gui, Submit, NoHide
    Hotkey, %Attack%, RapidFire
    GuiControlGet, vButton,, Button1
    If vButton = Start
    {  
      GuiControl, Text, Button1, Stop
      Suspend, off
    }
    Else
    {
      GuiControl, Text, Button1, Start
      Suspend, on
    }
    Return
    
    
    Rapidfire:
        While GetKeyState(Attack,"P")
          {
    	  If Weapon = Staff
    	    {
            Send, {LButton}
    	    Sleep, %TimeSlider%
    	    Send, %Spam%
    		If Ran = 1
    		   {
    		   Random, RanSleep, 40, 85
               Sleep, %RanSleep%
    		   }
    		Else
    		   {
    		   Sleep, 75
    		   }
    	    Send, %Swap%
    		If Ran = 1
    		   {
    		   Random, RanSleep, 40, 85
               Sleep, %RanSleep%
    		   }
    		Else
    		   {
    		   Sleep, 75
    		   }	
    		}
    	  Else
            {
            Send, {LButton}
    	    Sleep, %TimeSlider%
            Send, {RButton}
    	    		If Ran = 1
    		   {
    		   Random, RanSleep, 40, 85
               Sleep, %RanSleep%
    		   }
    		Else
    		   {
    		   Sleep, 75
    		   }		
            }
            
        }
    Return
    
    Shift::
    	  If Dodge = 1
    	    {
    		 Sleep, 75
    		 Send, X
    		}
    Return
    
    
    
    ButtonHelp:
    MsgBox, Weapon Type: Weapon you will be using, for Life or Fire staff you will need to carry two of the same type. For Hatchet the offhand weapon doesn't matter.`n`nWeapon Swap Delay: The delay between starting a light attack and trying to cancel the animation. Adjust this to suit your latency, for staff if you are swapping weapons but not attacking increase the time value, if you use the ability decrease the time value. For hatchet will will just have to test to see what time value works.`n`nAbility: This is only necessary for staff. You want to choose an ability you don't want to use and also one with a low cool down time and the rapid fire will only work while your choosen ability is off cooldown.`n`nActive Weapon Swap: Again this is only necessary for staff, you need to set a hotkey in game as its off by default ESC>Settings>Key Bindings>Action<Swap Active Weapon.`n`n`n`nCurrently the script will run while holding the side mouse button1, if you want to change it you need to edit the script, find and replace both instances of XButton1 with your desired key, if you want to use left mouse button make sure you remove it from any other in game key bindings or you'll end up spamming attack. Check autohotkey.com/docs/KeyList.htm for correct key name format.
    Return
    
    
    GuiClose:
    ExitApp
    Last edited by Selma; 11-26-2021 at 04:06 AM. Reason: patched

    All in 1 Fast Attack AHK Script for Staves &amp; Hatchets.
  2. Thanks Voobar, AndroidX, Taires, Aplastarsss, nothinnormall, Segment333 (6 members gave Thanks to Selma for this useful post)
  3. #2
    nothinnormall's Avatar Member
    Reputation
    2
    Join Date
    Oct 2021
    Posts
    26
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    this script isnt working good at all wheres the old one?

  4. #3
    nothinnormall's Avatar Member
    Reputation
    2
    Join Date
    Oct 2021
    Posts
    26
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    its swapping so fast nothing is coming out of the staff? post old script if possible plz

  5. #4
    AndroidX's Avatar Active Member Authenticator enabled
    Reputation
    26
    Join Date
    Oct 2021
    Posts
    135
    Thanks G/R
    7/23
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    good job mate

  6. Thanks Aplastarsss (1 members gave Thanks to AndroidX for this useful post)
  7. #5
    Selma's Avatar Active Member
    Reputation
    51
    Join Date
    Dec 2010
    Posts
    105
    Thanks G/R
    15/27
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by nothinnormall View Post
    this script isnt working good at all wheres the old one?
    Originally Posted by nothinnormall View Post
    its swapping so fast nothing is coming out of the staff? post old script if possible plz

    Have you both tried adjusted the weapon swap delay? it doesn't work at any time??

    edit:haha just noticed its same person posting twice

  8. #6
    tokyov's Avatar Member
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This isnt working for hatchet. holding down the button, it just attacks like normal. tried 50 different delay timers for hatchet. must have been fixed?

  9. #7
    minijag's Avatar Member
    Reputation
    5
    Join Date
    May 2011
    Posts
    3
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It isn't working because the swap, and ability variables and texts are jumbled and mismatched. I fixed them.




    Gui, Add, Text, x22 y119 w110 h20, Weapon Swap:
    Gui, Add, Text, x22 y149 w110 h20, Spam:
    Gui, Add, GroupBox, x12 y99 w250 h80, In Game Keybindings
    Gui, Add, Text, x22 y29 w110 h20, Weapon Type
    Gui, Add, DropDownList, x142 y29 w110 h200 vWeapon, Staff||Hatchet
    Gui, Add, Hotkey, x142 y119 w110 h20 vSwap, .
    Gui, Add, Hotkey, x142 y149 w110 h20 vSpam, q

  10. Thanks Selma, Aplastarsss, nothinnormall (3 members gave Thanks to minijag for this useful post)
  11. #8
    tokyov's Avatar Member
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by minijag View Post
    It isn't working because the swap, and ability variables and texts are jumbled and mismatched. I fixed them.




    Gui, Add, Text, x22 y119 w110 h20, Weapon Swap:
    Gui, Add, Text, x22 y149 w110 h20, Spam:
    Gui, Add, GroupBox, x12 y99 w250 h80, In Game Keybindings
    Gui, Add, Text, x22 y29 w110 h20, Weapon Type
    Gui, Add, DropDownList, x142 y29 w110 h200 vWeapon, Staff||Hatchet
    Gui, Add, Hotkey, x142 y119 w110 h20 vSwap, .
    Gui, Add, Hotkey, x142 y149 w110 h20 vSpam, q
    can you post the complete code that works with hatchet? PLEASE!

  12. #9
    EvolGaming's Avatar Member
    Reputation
    1
    Join Date
    Nov 2017
    Posts
    15
    Thanks G/R
    5/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    funny how exploit forums on owned core doesn't have one working hatchet fast attack exploit but everyone in outpost rush has it working after watching a youtube video. Would love to see someone record a clip just block ur name or w/e of it actually working.

  13. #10
    silliYOYO's Avatar Member
    Reputation
    2
    Join Date
    Oct 2012
    Posts
    38
    Thanks G/R
    2/1
    Trade Feedback
    6 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by EvolGaming View Post
    funny how exploit forums on owned core doesn't have one working hatchet fast attack exploit but everyone in outpost rush has it working after watching a youtube video. Would love to see someone record a clip just block ur name or w/e of it actually working.
    .

    Its posted for days here...Just read

  14. #11
    nothinnormall's Avatar Member
    Reputation
    2
    Join Date
    Oct 2021
    Posts
    26
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by minijag View Post
    It isn't working because the swap, and ability variables and texts are jumbled and mismatched. I fixed them.




    Gui, Add, Text, x22 y119 w110 h20, Weapon Swap:
    Gui, Add, Text, x22 y149 w110 h20, Spam:
    Gui, Add, GroupBox, x12 y99 w250 h80, In Game Keybindings
    Gui, Add, Text, x22 y29 w110 h20, Weapon Type
    Gui, Add, DropDownList, x142 y29 w110 h200 vWeapon, Staff||Hatchet
    Gui, Add, Hotkey, x142 y119 w110 h20 vSwap, .
    Gui, Add, Hotkey, x142 y149 w110 h20 vSpam, q
    worked thank you

  15. Thanks Aplastarsss (1 members gave Thanks to nothinnormall for this useful post)
  16. #12
    Selma's Avatar Active Member
    Reputation
    51
    Join Date
    Dec 2010
    Posts
    105
    Thanks G/R
    15/27
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by minijag View Post
    It isn't working because the swap, and ability variables and texts are jumbled and mismatched. I fixed them.




    Gui, Add, Text, x22 y119 w110 h20, Weapon Swap:
    Gui, Add, Text, x22 y149 w110 h20, Spam:
    Gui, Add, GroupBox, x12 y99 w250 h80, In Game Keybindings
    Gui, Add, Text, x22 y29 w110 h20, Weapon Type
    Gui, Add, DropDownList, x142 y29 w110 h200 vWeapon, Staff||Hatchet
    Gui, Add, Hotkey, x142 y119 w110 h20 vSwap, .
    Gui, Add, Hotkey, x142 y149 w110 h20 vSpam, q
    Thank you, I've updated it now.

  17. #13
    kmolleson's Avatar Member
    Reputation
    1
    Join Date
    Feb 2018
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Been using the old one for a couple days now. Restarted PC and reset all keybinds to default before re-setting my weapon swap key again. For some reason, neither one of them work anymore. Run script, set swap hotkey appropriately, hit start, and nothing happens. I even tried switching buttons in the script itself and nadda. Any ideas?

  18. #14
    Aplastarsss's Avatar Member
    Reputation
    1
    Join Date
    Oct 2021
    Posts
    3
    Thanks G/R
    5/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have also tried the hatchet and staff and nothing happens just attacks normally. tried switching the weapon switch delay to alot of different values and changes nothing.

  19. #15
    Selma's Avatar Active Member
    Reputation
    51
    Join Date
    Dec 2010
    Posts
    105
    Thanks G/R
    15/27
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Aplastarsss View Post
    I have also tried the hatchet and staff and nothing happens just attacks normally. tried switching the weapon switch delay to alot of different values and changes nothing.

    I still haven't used hatchet myself, i was planning on buying one today to test but now the TP is close..

    When you say it just attacks normally, does it just attack once and then stop or does it keep attacking while you hold the side mouse button?

  20. Thanks Aplastarsss (1 members gave Thanks to Selma for this useful post)
Page 1 of 3 123 LastLast

Similar Threads

  1. Fast Attack AHK Script
    By Selma in forum New World Exploits
    Replies: 21
    Last Post: 11-01-2021, 06:35 AM
  2. ahk script for 6 linking and 6 socketing
    By userunknown1 in forum Path of Exile
    Replies: 2
    Last Post: 05-15-2021, 11:04 AM
  3. Simple "hold to spam attacks" AHK script.
    By Winsane in forum SWTOR Bots and Programs
    Replies: 16
    Last Post: 05-08-2018, 04:55 PM
  4. AHK script for the ZK exploit (runs in background on VM's!)
    By seafunk in forum Diablo 3 Exploits
    Replies: 3
    Last Post: 06-25-2012, 01:10 PM
  5. need help with .ahk script for showing users input text
    By lovemymuffin in forum Programming
    Replies: 0
    Last Post: 03-21-2011, 02:11 AM
All times are GMT -5. The time now is 06:54 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search