Jump to content

Join our Slack

Talk to other users and have a great time
Slack Server

Welcome to our Community

Click here to get your Exiled Bot license
Donation Store
Sign in to follow this  
leeroy788

Poe Gear Swap Macro for MF

Recommended Posts

Hello,

 

Does any know if its possible to make like an AHK script that would swap out your gear and equip a MF set you have sitting in your inventory? I have two advarious rings, Aurseize gloves, High MF Rings, etc that I would like to swap to right before killing dominus, but doing so manually makes me want to kill myself IRL at how tedious, and boring it is.

 

In the early days of D3 alot of people had gear swap macros.. If this is a possibility and someone could write/guide me how to make one, I would gladly donate you $10.

Share this post


Link to post
Share on other sites

I have made an gearswap macro myself long time ago. It surely is 5month old but back in the time it was working perfectly...

I have no clue if its still working like intended but you may test it yourself...

 

 

F5::
WinActivate, Path of Exile
#IfWinActive ahk_class Path of Exile
BlockInput On
 
; Get current Mouseposition
MouseGetPos, curxpos, curypos 
 
; Close all PoE-Windows & Open Inventory (Mine is i)
SendInput, {Space}
Sleep, % Random(25,50)
SendInput, i
 
; leftclick on the last inventory-slot in the lower right
xlastinvslot := Random(1860,1900)
ylastinvslot := Random(805,850)
Click %xlastinvslot%, %ylastinvslot%
 
; leftclick on the left ring-slot
xleftring := Random(1460,1500)
yleftring := Random(280,320)
Click %xleftring%, %yleftring%
 
; leftclick on the last inventory-slot in the lower right, again
xlastinvslot := Random(1860,1900)
ylastinvslot := Random(805,850)
Click %xlastinvslot%, %ylastinvslot%
Sleep, % Random(25,50)
 
; Close Inventory
SendInput, {Space}
 
; position the Mousecurser at the initial position
MouseMove, %curxpos%, %curypos%, 0
 
; Traytips
TrayTip, , > GEAR SWAPPED! <, 2
 
BlockInput Off
return
 
; Function to randomize the clickpositions
Random(min,max) {
Random, out, %min%, %max%
return out
}

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
Sign in to follow this  

×
×
  • Create New...