Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > New World
You last visited: Today at 07:41

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Firestaff Macro ahk?

Discussion on Firestaff Macro ahk? within the New World forum part of the MMORPGs category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Nov 2021
Posts: 14
Received Thanks: 2
Firestaff Macro ahk?

does someone have the dual firestaff macro for ahk?
exploitsabuser is offline  
Old 11/08/2021, 20:24   #2
 
elite*gold: 0
Join Date: Oct 2013
Posts: 6
Received Thanks: 3
This has staff, hatchet & faster dodge(with light gear) and randomised sleep.

Because of one of the limitations of AHK(or maybe just my skill) you need to make sure you stop/start the script when you change any of the settings.




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
SelmaF is offline  
Old 11/08/2021, 21:03   #3
 
elite*gold: 0
Join Date: Nov 2021
Posts: 14
Received Thanks: 2
thx buddy
exploitsabuser is offline  
Old 11/09/2021, 08:54   #4
 
elite*gold: 0
Join Date: Feb 2009
Posts: 49
Received Thanks: 6
Is it currently works?
zudis is offline  
Old 11/09/2021, 14:56   #5
 
elite*gold: 0
Join Date: Nov 2011
Posts: 5
Received Thanks: 0
2 staffs equipped but no matter what delay I use, it either just uses the ability before being able to swap to second staff, or does do the swap without using the ability, but rotates back to staff 1 before staff 2 has the chance to attack.

Have they made a minimum time before you can weapon swap from an active ability?

Hatchet works fine so I can't see how it's purely lag.

ty
azer311 is offline  
Old 11/09/2021, 15:21   #6
 
elite*gold: 0
Join Date: Nov 2021
Posts: 14
Received Thanks: 2
if you use the code that SelmaF has posted you also have to change your weapon switch to '' . '' in the game, set the script delay to 280-300, the best thing you can do is test a bit yourself and you need the flamethrower skill on the q skill
exploitsabuser is offline  
Thanks
1 User
Old 11/09/2021, 15:28   #7
 
elite*gold: 0
Join Date: Nov 2011
Posts: 5
Received Thanks: 0
Quote:
Originally Posted by exploitsabuser View Post
if you use the code that SelmaF has posted you also have to change your weapon switch to '' . '' in the game, set the script delay to 280-300, the best thing you can do is test a bit yourself and you need the flamethrower skill on the q skill
Ahh i see, I was using the pillar of fire skill, thanks for your help will try it out now
azer311 is offline  
Old 11/09/2021, 20:07   #8
 
elite*gold: 0
Join Date: Jul 2008
Posts: 11
Received Thanks: 1
Quote:
Originally Posted by SelmaF View Post
This has staff, hatchet & faster dodge(with light gear) and randomised sleep.

Because of one of the limitations of AHK(or maybe just my skill) you need to make sure you stop/start the script when you change any of the settings.




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
For the Hatchet:

- Weapon switch has to be on "." ?
- Do you need the throw skill?
- Zoom in activated?
Robotics is offline  
Old 11/10/2021, 22:19   #9
 
elite*gold: 0
Join Date: Oct 2013
Posts: 6
Received Thanks: 3
Quote:
Originally Posted by Robotics View Post
For the Hatchet:

- Weapon switch has to be on "." ?
- Do you need the throw skill?
- Zoom in activated?
For hatchet the weapon swap and ability doesn't matter, it's only there for fire staff. My AHK skills aren't up to hiding UI elements on variables yet.
SelmaF is offline  
Old 11/11/2021, 03:21   #10
 
elite*gold: 0
Join Date: May 2018
Posts: 6
Received Thanks: 1
For which program is this macro?
Haeth is offline  
Old 11/12/2021, 16:08   #11
 
elite*gold: 117
The Black Market: 102/0/0
Join Date: Dec 2012
Posts: 659
Received Thanks: 75
Quote:
Originally Posted by Haeth View Post
For which program is this macro?
its a stand alone makro, u need AHK for it. just google it.
I Feelz I is offline  
Reply

Tags
exploit, glitch, macro, new world


Similar Threads Similar Threads
[AHK]macro hilfe
09/25/2013 - AutoIt - 7 Replies
Hallo Leute ich brauche eure Hilfe ich habe ein macro von einer gaming maus aber ich benötige dies als ahk (autohotkey). http://www.imgbox.de/users/public/images/Ft1vF6eQ ov.jpg ich habe mir mal was zusammen gebastelt.
[MACRO/AHK/Mouse shortcut] hieitk's "mouse wheel button", REVISITED
04/12/2009 - CO2 Exploits, Hacks & Tools - 11 Replies
Since after discovering it I've been an affectoinate user of mbutton. Saves fingers and keys. And stress. Especially when you have to drop/sell stuff. But I had several issues with some of the "features", namely: 1) I couldn't scroll fast enough between the functions, let's say I had it on Jump, and wanted to sell. I had to do three scrolls, but between each there was a delay of more than one second 2) The F10 function wasn't really necessary 3) The functions didn't cycle, when you were...
[MACRO/AHK source] Minimized hotkey stig/treamheal/shield (1024x768)
06/12/2008 - CO2 Bots & Macros - 3 Replies
Added as attachment the RAR of the precompiled exe, for you lazy bums :P If you want the water tao to follow you around instead of sitting somewhere, then just install and use FollowMe by evan found here: http://www.elitepvpers.com/forum/co2-bots-macros/1 25307-followme-minimized-background.html This source is freely adapted from evan's minimized autostig, and is, in my intentions (you may use it how you prefer tho) a leveling aid for archers with a water companion. Basic settings (that...
AHK old macro
02/06/2007 - CO2 Bots & Macros - 5 Replies
This in an old macro that was working on... it uses autohotkey so you can compile it yourself i haven't tested in other screens but for my screen it had worked pretty decent pc screen - 1280x1024 co screen -1024x768 dunno if this is any help to anyone but i thought i'd post it anyways. it has bugs, lots of missing code and prob only works at that exact res. if people like where its heading maybe i'll work on it again http://img245.imageshack.us/img245/9656/logogh1.j pg



All times are GMT +1. The time now is 07:41.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.