PoE Macro Topic is solved

Ask gaming related questions (AHK v1.1 and older)
strong_like_bull
Posts: 2
Joined: 14 Aug 2017, 08:42

PoE Macro

14 Aug 2017, 22:06

Hey there,

I'm looking for a macro to use with Path of Exile. My berserker class can use a war cry to heal every 2 seconds. It's irritating doing this manually all the time.. so I was hoping I could automate it.

I'm looking for something that can be activated and turned off with a key (say, F1) so that I can still chat normally and then while active press a key (say, E) every 2-2.5 seconds. I'd like it to be random so it theoretically shouldn't be detectable, just in case.

So, in summary. Script activated by F1. While active, press E randomly every 2-2.5 seconds until toggled off by F1.

Thanks for any help!
Grillenfrige
Posts: 5
Joined: 27 Jun 2017, 18:31

Re: PoE Macro  Topic is solved

16 Aug 2017, 22:15

ok i got you fam


Code: Select all

toggles := false 
loop
{
while (toggles = true)
{
Random, slez, 2000, 2500
sleep slez
Send,{E}
}
}
F1::
toggles := !toggles
return
strong_like_bull
Posts: 2
Joined: 14 Aug 2017, 08:42

Re: PoE Macro

17 Aug 2017, 00:10

Grillenfrige wrote:ok i got you fam


Code: Select all

toggles := false 
loop
{
while (toggles = true)
{
Random, slez, 2000, 2500
sleep slez
Send,{E}
}
}
F1::
toggles := !toggles
return

Thank you!!

Return to “Gaming Help (v1)”

Who is online

Users browsing this forum: No registered users and 39 guests