PoeHUD Plugin: Flask Manager menu

Shout-Out

User Tag List

Page 28 of 76 FirstFirst ... 242526272829303132 ... LastLast
Results 406 to 420 of 1139
  1. #406
    jnz9513's Avatar Member
    Reputation
    7
    Join Date
    Dec 2013
    Posts
    77
    Thanks G/R
    10/5
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ah alright thanks!

    PoeHUD Plugin: Flask Manager
  2. #407
    snakescrin's Avatar Member
    Reputation
    1
    Join Date
    Jun 2014
    Posts
    20
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Quote: "I tested it with 2 flasks it's drinking from both of them.
    Just remember there is a new feature "Use When Greater than X (0 to disable it)" which allows u to not drink from the flask if it have less than X charges....turn it to 0...maybe that's creating a hurdle in drinking from another flask."


    That's weird. I turned "Use When Greater than X " to zero, but the issue exists. When I have quicksilvers equipped in the slot 3&4, the manager only uses slot 3, when I equip them in slot 2&3, it only uses slot 2, even if the other quicksilver's charge is full, it doesn't use it at all. Before the update ( I mean the update on March 13th), whether I set "Use When Greater than X " to any value or zero, it worked perfectly.
    Last edited by snakescrin; 03-14-2017 at 03:35 AM.

  3. #408
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    3015
    Join Date
    Jun 2015
    Posts
    3,325
    Thanks G/R
    507/2700
    Trade Feedback
    0 (0%)
    Mentioned
    92 Post(s)
    Tagged
    2 Thread(s)
    Originally Posted by snakescrin View Post
    Quote: "I tested it with 2 flasks it's drinking from both of them.
    Just remember there is a new feature "Use When Greater than X (0 to disable it)" which allows u to not drink from the flask if it have less than X charges....turn it to 0...maybe that's creating a hurdle in drinking from another flask."


    That's weird. I turned "Use When Greater than X " to zero, but the issue exists. When I have quicksilvers equipped in the slot 3&4, the manager only uses slot 3, when I equip them in slot 2&3, it only uses slot 2, even if the other quicksilver's charge is full, it doesn't use it at all. Before the update ( I mean the update on March 13th), whether I set "Use When Greater than X " to any value or zero, it worked perfectly.
    1: turn on the debug mode and print screen me the output.
    2: Delete the old folder and install a new one from scratch.



    EDIT: Fixed the issue. Download the latest one.
    Last edited by GameHelper; 03-14-2017 at 04:45 AM.
    If I did not reply to you, it mean the question you are asking is stupid.

  4. Thanks toadskin, noneyatemp (2 members gave Thanks to GameHelper for this useful post)
  5. #409
    apwkid's Avatar Member
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    30
    Thanks G/R
    2/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I had some random trouble getting this working. it would not ever use flasks.

    I decided to re-install it again and though I did nothing different i can think of it decided to start working this time.

    Great work on this, thank you!

  6. #410
    GoneTesting's Avatar Member
    Reputation
    1
    Join Date
    Mar 2017
    Posts
    23
    Thanks G/R
    7/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello Devs,

    I would love to use this but it is missing some functionality I made for myself using AHK that I believe could possibly benefit other people as well.

    Could you add further possibilities to this tool for unique flask or flask general usage:

    I have made my own script that allows me to use pots on certain keypress like Left mouse or right mouse and only if specific conditions are true like shift being held and pot is not already active.
    The inverse is also possible where default would be on right mouse use pot 2-3-4 but if shift held then dont.
    I was going to add also if pot type has already been used then dont use until timer is up like if you have two quick silver and want to only use when they run out.

    For something like this I had to put an enable/disable so you turn on in maps turn off in hideout trading etc.
    I have added below the ahk code if it would help show what I mean

    Code:
    ;Flask on Keypress + BF timer release via image search (de-activated) + hp check (never finished)
    ;#####################################################################################
    if not A_IsAdmin
    {
       Run *RunAs "%A_ScriptFullPath%"
       ExitApp
    }
    #SingleInstance force
    SetBatchLines, -1
    CoordMode, Mouse, Screen
    CoordMode, Pixel, Screen
    
    isactive:= 1
    isvisible:= 0
    Scan_delay := 20
    
    BF_timer := 0
    
    Flask1_enable := "Y"
    Flask1_key := 1
    Flask1_trigger := "RMB"
    Flask1_timer := 0
    Flask1_duration := 5000
    Flask1_type:= "QS"
    
    Flask2_enable := "Y"
    Flask2_key := 2
    Flask2_trigger := "RMB"
    Flask2_timer := 0
    Flask2_duration := 4000
    Flask2_type:= "QS"
    
    Flask3_enable := "Y"
    Flask3_key := 3
    Flask3_trigger := "RMB"
    Flask3_timer := 0
    Flask3_duration := 4600
    Flask3_type:= "DD"
    
    Flask4_enable := "Y"
    Flask4_key := 4
    Flask4_trigger := "RMB"
    Flask4_timer := 0
    Flask4_duration := 3500
    Flask4_type:= "DD"
    
    Flask5_enable := "Y"
    Flask5_key := 5
    Flask5_trigger := "RMB"
    Flask5_timer := 0
    Flask5_duration := 4800
    Flask5_type:= "DD"
    
    CustomColor = 000000
    Gui +LastFound +AlwaysOnTop +ToolWindow -Caption
    Gui, Color, %CustomColor%
    Gui, Font, s10, Lucida Console
     
    ;Gui, Add, Text, x50 y0 w150 BackgroundTrans gGuiMove 0x5
    Gui, Add, Text, x50 y0 w150 BackgroundTrans cWhite, Autopot On
    WinSet, TransColor, %CustomColor% 230
    ;#####################################################################################
    
    Loop 
    {
    	IfWinActive, Path of Exile ahk_class POEWindowClass
    	{
    		If (isvisible = 0) {
    			isvisible = 1
    			Gui, Show, NoActivate x250 y960
    		}
    		If (isactive = 1) {
    			If (Flask1_enable="Y"){				
    				FlaskLogic(Flask1_timer,Flask1_duration,Flask1_key,Flask1_trigger)	
    				Flask1_timer := A_TickCount
    			}
    			If (Flask2_enable="Y"){
    				FlaskLogic(Flask2_timer,Flask2_duration,Flask2_key,Flask2_trigger)	
    				Flask1_timer := A_TickCount
    			}
    			If (Flask3_enable="Y"){
    				FlaskLogic(Flask3_timer,Flask3_duration,Flask3_key,Flask3_trigger)	
    				Flask1_timer := A_TickCount
    			}
    			If (Flask4_enable="Y"){
    				FlaskLogic(Flask4_timer,Flask4_duration,Flask4_key,Flask4_trigger)	
    				Flask1_timer := A_TickCount
    			}
    			If (Flask5_enable="Y"){
    				FlaskLogic(Flask5_timer,Flask5_duration,Flask5_key,Flask5_trigger)
    				Flask1_timer := A_TickCount
    			}
    			;BladeFlurryReleaseAt6()
    			;Hpcheck()	
    			Sleep, %Scan_delay%
    		}
    	} else {
    		If (isvisible = 1) {
    			isvisible = 0
    			Gui, Hide
    		}
    	Sleep 2000 ;Waiting for game to open
    	}
    }
    ;#####################################################################################
    
    FlaskLogic(Flask_timer, Flask_duration, Flask_key, Flask_trigger){ ;using utility when u not moving and channeling BF
    
    Global Flask1_timer
    Global Flask2_timer
    Global Flask3_timer
    Global Flask4_timer
    Global Flask5_timer
    	
    	if (A_TickCount - Flask_timer > Flask_duration) {
    		if (Flask_trigger = "LMB") {
    			if GetKeyState("LButton", "P") ;and GetKeyState("Shift", "D") ;not moving and channeling BF
    			{
    				Sendinput, {%Flask_key% Down}
    				Sendinput, {%Flask_key% Up}
    				If (Flask_key = 1){
    					Flask1_timer := A_TickCount
    				}Else If (Flask_key = 2){
    					Flask2_timer := A_TickCount
    				}Else If (Flask_key = 3){
    					Flask3_timer := A_TickCount
    				}Else If (Flask_key = 4){
    					Flask4_timer := A_TickCount
    				}Else If (Flask_key = 5){
    					Flask5_timer := A_TickCount
    				}
    				Return
    			}
    		}
    		else if (Flask_trigger = "RMB") {
    			if GetKeyState("RButton", "P") ;and GetKeyState("Shift", "D") ;not moving and channeling BF
    			{
    				Sendinput, {%Flask_key% Down}
    				Sendinput, {%Flask_key% Up}
    				If (Flask_key = 1){
    					Flask1_timer := A_TickCount
    				}Else If (Flask_key = 2){
    					Flask2_timer := A_TickCount
    				}Else If (Flask_key = 3){
    					Flask3_timer := A_TickCount
    				}Else If (Flask_key = 4){
    					Flask4_timer := A_TickCount
    				}Else If (Flask_key = 5){
    					Flask5_timer := A_TickCount
    				}
    				Return
    			}
    		}
    	}
    }
    
    BladeFlurryReleaseAt6()
    {
    	ImageSearch,FoundX,FoundY,0,0,1600,140,C:\Programming\AHK\POE\bf.png
    	
    	if (ErrorLevel = 2){
        ;~ msgbox, "-File Issue"
    	return
       }Else if (ErrorLevel = 1){
    	;~ msgbox, "-Search Issue"
    	return
    	}Else if (ErrorLevel = 0){
    		GetKeyState, state, RButton
    		Sendinput, {RButton Up}
    		if state = D
    		Sendinput, {RButton Down}	
    	return
       }
    }
    
    HPcheck()
    {
    	ImageSearch,FoundX,FoundY,80,900,160,960,C:\Programming\AHK\POE\hp.png
    	
    	if (ErrorLevel = 2){
        ;~ msgbox, "-File Issue"
    	return
       }Else if (ErrorLevel = 1){
    			Sendinput, {1 Down}
    			Sendinput, {1 Up}
    	return
    	}Else if (ErrorLevel = 0){
    	;~ msgbox, "-Image found"
    	return
       }
    }
    ;#####################################################################################
    
    RandSleep(x,y) {
    	Random, rand, %x%, %y%
    	Sleep %rand%
    }
    
    ;#####################################################################################
    
    F2::
    If (isactive = 1){
    	isactive = 0
    	GuiControl, Text, Static1, AutoPot Off
    }Else if (isactive = 0) {
    	isactive = 1	
    	GuiControl, Text, Static1, AutoPot On
    }
    return
    
    ;T:: ;Curse + Aura + Golem
    ;Send, T
    ;Sleep, 1000
    ;Send, R
    ;Sleep, 1000
    ;Send, W
    ;return
    
    GuiMove: 
    PostMessage, 0xA1, 2,,, A 
    Return
    
    F11::
    Process,Close,Fallback.exe
    Process,Close,POE Trades Helper.exe
    ExitApp
    return
    
    F5::SendInput {Enter}/hideout{Enter}		; go to hideout with F5
    ^WheelUp::SendInput {Left}					; Ctrl+mouse wheel up toggles stash tabs left
    ^WheelDown::SendInput {Right}				; Ctrl+mouse wheel down toggles stash tabs right	r

  7. #411
    bewbtube's Avatar Member
    Reputation
    5
    Join Date
    Mar 2013
    Posts
    62
    Thanks G/R
    24/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is it possible to have an opt in feature that will allow the flasker to use Quicksilver flasks even when skills are in use (specifically Shield Charge and Cyclone, skills that gain a benefit from movement speed).

  8. #412
    GoneTesting's Avatar Member
    Reputation
    1
    Join Date
    Mar 2017
    Posts
    23
    Thanks G/R
    7/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thats similar to what I was mentioning. With the script i put in my last reply it uses pots when pressing the button or if it is held already so for example if you hold and channel bladeflurry/cyclone it will use the pots while you are using the skill.

    Would be good if you could add this feature in with keypress/flask slot to use as configurable!

  9. #413
    jnz9513's Avatar Member
    Reputation
    7
    Join Date
    Dec 2013
    Posts
    77
    Thanks G/R
    10/5
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have reserved 85% of my mana, and it does not use mana flask when low mana? tried setting mana flash to 100% and still does not use it tried 0% still dosent

  10. #414
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    3015
    Join Date
    Jun 2015
    Posts
    3,325
    Thanks G/R
    507/2700
    Trade Feedback
    0 (0%)
    Mentioned
    92 Post(s)
    Tagged
    2 Thread(s)
    Originally Posted by jonas9513 View Post
    I have reserved 85% of my mana, and it does not use mana flask when low mana? tried setting mana flash to 100% and still does not use it tried 0% still dosent
    Enable the debug mode, and printscreen me the output.
    For details on debug mode read FAQs
    If I did not reply to you, it mean the question you are asking is stupid.

  11. #415
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    3015
    Join Date
    Jun 2015
    Posts
    3,325
    Thanks G/R
    507/2700
    Trade Feedback
    0 (0%)
    Mentioned
    92 Post(s)
    Tagged
    2 Thread(s)
    Originally Posted by TimeWillTellAll View Post
    thats similar to what I was mentioning. With the script i put in my last reply it uses pots when pressing the button or if it is held already so for example if you hold and channel bladeflurry/cyclone it will use the pots while you are using the skill.

    Would be good if you could add this feature in with keypress/flask slot to use as configurable!
    Sorry bro, working on other things now.
    Don't have time to add new features other than bug fixes.
    If I did not reply to you, it mean the question you are asking is stupid.

  12. #416
    hacker143's Avatar Knight
    Reputation
    21
    Join Date
    Mar 2017
    Posts
    219
    Thanks G/R
    32/19
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just one question,
    Will we get ban by using this?

  13. #417
    skules's Avatar Member
    Reputation
    9
    Join Date
    Mar 2009
    Posts
    228
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can confirm ,super ****ing wierd.

    Sometimes it won't work and other times it'll randomly start working.

  14. #418
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    3015
    Join Date
    Jun 2015
    Posts
    3,325
    Thanks G/R
    507/2700
    Trade Feedback
    0 (0%)
    Mentioned
    92 Post(s)
    Tagged
    2 Thread(s)
    Originally Posted by skules View Post
    Can confirm ,super ****ing wierd.
    Sometimes it won't work and other times it'll randomly start working.
    turn on debug mode and let me know what does the logs say. For details on logs/debugmode etc etc read FAQs.

    Originally Posted by kentpachi View Post
    Just one question,
    Will we get ban by using this?
    Do you use POEHUD? If yes then answer is No.
    If I did not reply to you, it mean the question you are asking is stupid.

  15. Thanks Noalaa (1 members gave Thanks to GameHelper for this useful post)
  16. #419
    skules's Avatar Member
    Reputation
    9
    Join Date
    Mar 2009
    Posts
    228
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by zaafar View Post
    turn on debug mode and let me know what does the logs say. For details on logs/debugmode etc etc read FAQs.
    From what i can see when i turn on debug mode, it just does nothing. Nothing gets outputted.

  17. #420
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    3015
    Join Date
    Jun 2015
    Posts
    3,325
    Thanks G/R
    507/2700
    Trade Feedback
    0 (0%)
    Mentioned
    92 Post(s)
    Tagged
    2 Thread(s)
    Originally Posted by skules View Post
    From what i can see when i turn on debug mode, it just does nothing. Nothing gets outputted.
    Print screen your game with poehud flask manager settings opened.
    If I did not reply to you, it mean the question you are asking is stupid.

Page 28 of 76 FirstFirst ... 242526272829303132 ... LastLast

Similar Threads

  1. Replies: 27
    Last Post: 12-19-2016, 07:57 AM
  2. Managed to get a lot of cd keys
    By fallingforme in forum World of Warcraft General
    Replies: 15
    Last Post: 02-18-2007, 04:32 PM
  3. Where can i get a Cord mod/plugin?
    By Mike3667 in forum World of Warcraft General
    Replies: 1
    Last Post: 09-09-2006, 07:20 PM
  4. TUU's Guide: Building and Managing a successful guild
    By Örpheus in forum World of Warcraft Guides
    Replies: 2
    Last Post: 09-06-2006, 04:06 PM
All times are GMT -5. The time now is 09:47 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search