-
Member
Originally Posted by
zaafar
which key is your favorite?
Btw why would you require panic mode when there already is auto quit mode?
Because it allows us to be proactive in certain situations, for example, sometimes you know you messed up your positioning/movement and put yourself in one shot territory and with an F4 press you have a chance of disconnecting before that happens. Auto-quit is reactive. You hit a certain threshhold and it triggers cports and that takes 2-3 seconds before it actually disconnects you and you're dead anyways.
There are more than a few situations where having a panic button is incredibly useful.
Same with an instant flask spammer option. Bypassing regular flasks to spam instant flasks is incredibly useful and can be used to save a lot of lab runs, boss fights, and more. Plus couple an instant flask spammer option with the auto-quit option and those 2-3 seconds where cports is taking its time d/cing you feels a lot safer.
-
Member
it keeps spamming me that it can't find cports.exe and I will die now lol. using dx11 btw
Edit: oops didn't read the faq my bad. might also add that trying this program out in hc is not a good idea it doesn't have the spam instant flask functionality which is pretty important for HC
Last edited by Mobreale; 03-09-2017 at 12:47 PM.
-
Member
Originally Posted by
Mobreale
it keeps spamming me that it can't find cports.exe and I will die now lol. using dx11 btw
Edit: oops didn't read the faq my bad. might also add that trying this program out in hc is not a good idea it doesn't have the spam instant flask functionality which is pretty important for HC
Agreed. Incredibly important feature, imo. You can mitigate this problem in HC by only running instant flasks and keeping the MS delay pretty low. It's not ideal but it works for now.
-
==Updated==
- Add Panic Mode button, it's F4.
Download new version from github link.
If I did not reply to you, it mean the question you are asking is stupid.
-
Post Thanks / Like - 3 Thanks
-
Contributor
Originally Posted by
zaafar
==Updated==
- Add Panic Mode button, it's F4.
Download new version from github link.
Thanks, i have some free time this coming week, so i will spend some time on this as well.
-
let me know if anything fails.
If I did not reply to you, it mean the question you are asking is stupid.
-
Active Member
doubt this is possible but is there a way to have a macro for /hideout i used it so much with the old autoflask program thanks
-
Originally Posted by
datz
doubt this is possible but is there a way to have a macro for /hideout i used it so much with the old autoflask program thanks

no, not possible.
If I did not reply to you, it mean the question you are asking is stupid.
-
Post Thanks / Like - 1 Thanks
datz (1 members gave Thanks to GameHelper for this useful post)
-
Active Member
can u add the new unique flask the wise oak? says its not found
-
Member
Originally Posted by
zaafar
no, not possible.
Why isnt it possible? You definitely can add something to press certain keys can you not?
Or do you mean it's not within the scope of this tool, and therefore will not be added -- thus "not possible"?
Originally Posted by
datz
doubt this is possible but is there a way to have a macro for /hideout i used it so much with the old autoflask program thanks

you can easily make an ahk script with just that command. I use trade macro (fork of item info script) which has a custom txt file for personal macros in which i include /hideout, and a few other macros for easy scrolling by holding ctrl and scrolling, and an easy manual potions macro by holding down a key (mouse button 4 on the side) and pressing q, w, e, r, or t respectively. I'll include my additional macros for TradeMacro (goes in \Documents\PoE-TradeMacro\) if you want to see mine, but if not, TradeMacro includes the basics by default.
TradeMacro:
GitHub - PoE-TradeMacro/POE-TradeMacro: Price checking script for Path of Exile.
If you like my script, copy/paste everything below "#IfWinActive, Path of Exile ahk_class Direct3DWindowClass" to the 'additional macros.txt' file in \Documents\PoE-TradeMacro\
If you don't want TradeMacro, and just want a simple macro; then copy the following to a new txt file and save as .ahk and run
*must have AHK installed.
Code:
; Path of Exile Personal Macros
; ------------------------------------
;
; This script is somewhat based on the POE_ItemInfo script
; ^ means Ctrl, + means Shift, ! means Alt
;
; ------------------------------------
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
#Warn ; Enable warnings to assist with detecting common errors.
#Persistent ; Only the user can kill the application
#SingleInstance force ; Don't need multiple script copies
#MaxThreadsPerHotkey 2
SendMode Input
CoordMode, Mouse, Client
#IfWinActive, Path of Exile ahk_class Direct3DWindowClass
xbutton2 & q::Send 1 ; Skill keys use potions if side mouse button held (allowing fingers on skill buttons at all times)
xbutton2 & w::Send 2
xbutton2 & e::Send 3
xbutton2 & r::Send 4
xbutton2 & t::Send 5
^WheelUp::SendInput {Left} ; ctrl-mouse wheel up toggles stash tabs left
^WheelDown::SendInput {Right} ; ctrl-mouse wheel down toggles stash tabs right
~RButton & WheelDown::Send {Right} ; Hold down right mouse button and mouse wheel scroll to go through tabs, mouse can be anywhere on the screen
~RButton & WheelUp::Send {Left}
~RButton & LButton:: ; Hold down Right Mouse Button and Left Click on any item to move from Inventory to Stash or vice versa: (Mimics Ctrl+Left Click)
{
BlockInput On
Send ^{Click}
BlockInput Off
Return
}
F3:: ; Remaining mobs
{
BlockInput On
SendInput {Enter}/remaining{Enter}{Enter}{Up}{Up}{Escape} ; goes to the last chat you were in instead of local
BlockInput Off
return
}
F4:: ; Remaining mobs
{
BlockInput On
SendInput {Enter}/hideout{Enter}{Enter}{Up}{Up}{Escape}
BlockInput Off
return
}
F9:: ; Abandon daily
{
BlockInput On
SendInput {Enter}/abadon_daily{Enter}{Enter}{Up}{Up}{Escape}
BlockInput Off
return
}
F9::SendInput {Enter}/abadon_daily{Enter} ; abandon daily
F10::SendInput {Enter}/hideout{Enter} ; go to hideout
F11::setAfkMessage() ; pastes afk message to your chat and marks "X" so you can type in the estimated time
setAfkMessage(){
T1 := A_Now
T2 := A_NowUTC
EnvSub, T1, %T2%, M
TZD := "UTC +" Round( T1/60, 2 )
FormatTime, currentTime, A_NowUTC, HH:mm
clipboard := "/afk AFK for about X minutes, since " currentTime " (" TZD "). Leave a message and I'll reply."
IfWinActive, Path of Exile ahk_class POEWindowClass
{
SendInput {Enter} ^{v} {Home}
Pos := RegExMatch(clipboard, " X ")
If (Pos) {
Loop {
SendInput {Right}
If (A_Index > Pos) {
Break
}
}
Send {Shift Down}
Sleep 100
Send {Right}
Sleep 100
Send {Shift Up}
}
}
}
Last edited by Kronix; 03-10-2017 at 01:17 AM.
-
Member
hybrid flask is not being recognized properly
-
Originally Posted by
datz
can u add the new unique flask the wise oak? says its not found

Can you please share your config/flaskinfo.json file?
@orion25 it's out of scope.
@qoika thx for reporting, I will fix it in next update. For you, open config/flaskinfo.json file and add following line after ' "FlaskLevelRequirement":0, '
"FlaskLevelRequirementHybrid":0,
exactly as I have typed.
If I did not reply to you, it mean the question you are asking is stupid.
-
Banned
Good day.
Maybe I am blind, but I haven't find any info on the matter of the next two features:
1. Individual flask delay. Judging by the menu and config, it is not yet implemented, but I would like to ask you to consider adding it to menu/config to avoid situations where you have two offensive flasks with duration 4000ms and 8000ms and you have to set cooldown to 4000, basically using twice the charges on the second flask.
2. Only use offensive flasks when RMB/whatever button is pressed. (The other DX11 flask manager had this feature). Consider the example: ranged character that uses bloodrage. Manager would use up all offensive flasks while character is just picking up loot and getting DoTed by the bloodrage, even though none abilities are being used. At the same time setting trigger level of HP (if I understand correctly how it works) will lead to flasks not being used in combat, because the character will be near-full life all the time due to leech.
Just a couple of personal thoughts on how the manager could be improved even further. Anyway, thank you for good work on such a useful tool and distribuing it for free.
-
Member
Why are there no instant flask option? I mean, eitheryou have to have only seething flask or you would have the autopot pop seething at a higher % life pool.. Seems dumb :/
-
Originally Posted by
switchpinf
Good day.
Maybe I am blind, but I haven't find any info on the matter of the next two features:
1. Individual flask delay. Judging by the menu and config, it is not yet implemented, but I would like to ask you to consider adding it to menu/config to avoid situations where you have two offensive flasks with duration 4000ms and 8000ms and you have to set cooldown to 4000, basically using twice the charges on the second flask.
2. Only use offensive flasks when RMB/whatever button is pressed. (The other DX11 flask manager had this feature). Consider the example: ranged character that uses bloodrage. Manager would use up all offensive flasks while character is just picking up loot and getting DoTed by the bloodrage, even though none abilities are being used. At the same time setting trigger level of HP (if I understand correctly how it works) will lead to flasks not being used in combat, because the character will be near-full life all the time due to leech.
Just a couple of personal thoughts on how the manager could be improved even further. Anyway, thank you for good work on such a useful tool and distribuing it for free.
First feature is quiet advance and require a new level of programming (timers). I don't have enough time for that.
For second feature, how about a HotKey to enable/disable Defensive/Offensive flasks??? Would that be enough, so that while a person is picking up the loot, he can disable the defensive/offensive flask. About leech thing....if person leech is good, mean he isn't dying..so why use flask at all?
If I did not reply to you, it mean the question you are asking is stupid.
-
Post Thanks / Like - 1 Thanks
toadskin (1 members gave Thanks to GameHelper for this useful post)