Need Basic Script Help for Path of Exile

Ask gaming related questions (AHK v1.1 and older)
sebaseek
Posts: 1
Joined: 19 Apr 2017, 12:00

Need Basic Script Help for Path of Exile

19 Apr 2017, 12:08

Hi to everyone, im new to AutoHotkey and i want to know if i can make a macro that performs this:

Pressing X Triggers 1
Pressing X Triggers 2
Pressing X Triggers 3
Pressing X Triggers 4
Pressing X Triggers 5

And then it comes back to 1 recursively, i want to know this because in Path of Exile you cant make a macro that performs more than 1 action at the same time, so i manage to create this way that performs one action per click and i have to press only one button.

Thank you guys if you can help me with this.
MaxAstro
Posts: 557
Joined: 05 Oct 2016, 13:00

Re: Need Basic Script Help for Path of Exile

19 Apr 2017, 16:55

Code: Select all

Count := 1

#If (Count == 1)
x::
	; Macro #1 you want to trigger goes here
	Count++
	return
	
#If (Count == 2)
x::
	; Macro #2 you want to trigger goes here
	Count++
	return

#If (Count == 3)
x::
	; Macro #3 you want to trigger goes here
	Count++
	return

#If (Count == 4)
x::
	; Macro #4 you want to trigger goes here
	Count++
	return

#If (Count == 5)
x::
	; Macro #5 you want to trigger goes here
	Count := 1
	return

Return to “Gaming Help (v1)”

Who is online

Users browsing this forum: ReyAHK and 80 guests