POE: Help AHK script Topic is solved

Ask gaming related questions (AHK v1.1 and older)
roffee
Posts: 2
Joined: 02 Dec 2019, 12:46

POE: Help AHK script

03 Dec 2019, 06:37

There is a script for the automatic use of things (flashes) in the POE game, I don’t understand the script, the problem when starting on alt + F12 a window appears (attached image)
Thank you in advance, if you wish to improve, I read with interest.

Sorry for my English, I use google translator

Window https://imgur.com/qwyoJab
Spoiler
rakesha002
Posts: 46
Joined: 04 Dec 2017, 00:11

Re: POE: Help AHK script  Topic is solved

05 Dec 2019, 09:25

Hi,

You want it to disppear?
if Yes, add the following lines (without quotes) at the end of the file and press "Alt F11" to disappear
""

!F11::
ToolTip, Off
return

""
Hope this helps
roffee
Posts: 2
Joined: 02 Dec 2019, 12:46

Re: POE: Help AHK script

06 Dec 2019, 13:38

rakesha002 wrote:
05 Dec 2019, 09:25
Hi,

You want it to disppear?
if Yes, add the following lines (without quotes) at the end of the file and press "Alt F11" to disappear
""

!F11::
ToolTip, Off
return

""
Hope this helps
Hello!
Yes, this helped to solve the problem, and do not take it as an obsession, but is there a way to make the tooltip window temporary, say for 1 second?
rakesha002
Posts: 46
Joined: 04 Dec 2017, 00:11

Re: POE: Help AHK script

06 Dec 2019, 22:55

yes you can, that's the beauty of autohotkey, use this code

Code: Select all

!F12::
	UseFlasks := not UseFlasks
	if UseFlasks {
		; initialize start of auto-flask use
		ToolTip, UseFlasks On
		
		; reset usage timers for all flasks
		for i in FlaskDurationInit {
			FlaskLastUsed[i] := 0
			FlaskDuration[i] := FlaskDurationInit[i]
		}
	} else {
		ToolTip, UseFlasks Off
	}

       Settimer, Tipoff, -1000
	return

Tipoff:
ToolTip, Off
return
Cheers

Return to “Gaming Help (v1)”

Who is online

Users browsing this forum: No registered users and 93 guests