-
Active Member
Open Portal Macro.
Any one know of a macro or PoE HUD plugin that opens a portal scroll on a hot key?
-
Member
-
Member
This is script what i use:
F3::OpenPortal() ;
OpenPortal(){
if WinActive("Path of Exile"){
BlockInput On
MouseGetPos, x, y
Send {\} ;close all panels key for safety
Sleep 200
Send {i} ;open inventory key
Click right 920,440 ;portal scroll pixel coordinates
Sleep 200
Send {i} ;close inventory
MouseMove, x,y
BlockInput off
}
return
}
Pressing F3 key opens portal. You must first set coordinates for your portal scroll, simply take screenshot of your game while inventory is open, then open that screenshot with MS Paint, put mouse cursor where portal scroll is and look for coordinates.
-
Post Thanks / Like - 1 Thanks
noneyatemp (1 members gave Thanks to levelmax for this useful post)
-
Member
Code:
#IfWinActive Path of Exile
$^vk53:: ; Portal(Ctrl+S)
BlockInput On
MouseGetPos X, Y ;(Save coordinate you mouse)
SendInput {Space} ;Close all windows)
SendInput {vk42} ;(Send "I" open inventory)
MouseClick Right, 1885, 665 ;(Coordinate Port)
SendInput {vk42} ;(Send "I" close inventory)
MouseMove %X%, %Y%, 0 ;(faster in back coordinate yor mouse)
;SendInput {Ctrl Up} ;(if it sticks "Ctrl" remove comment)
BlockInput Off
Return
; - comment in ahk.
Screen portal for resolution 1920x1027 Windowed
Download Portral.ahk
-
Post Thanks / Like - 1 Thanks
noneyatemp (1 members gave Thanks to vitasikxp2 for this useful post)
-
Active Member
Thank you vitasikxp2 and levelmax