PoeHUD Plugin: Flask Manager menu

User Tag List

Page 31 of 76 FirstFirst ... 272829303132333435 ... LastLast
Results 451 to 465 of 1139
  1. #451
    Kronix's Avatar Member
    Reputation
    7
    Join Date
    Jan 2014
    Posts
    14
    Thanks G/R
    27/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by asdefxcv View Post
    Hello.

    I have no clue how to send a debug log.
    But be sure that basalt doesn't work.

    To come back to the flask trigger subject, is it possible to trigger it on spell usage ? Like i use Flame dash (just to name this spell) and it uses mi flask slot 1 2 3 4 (minus quicksilver).

    Thanks for the answers.

    EDIT : i figured out why my basalt didn't work, i changed the keybind, is it possible to make it work even with the changed keybind ? (M4 instead of 5)
    Use AHK to make a macro that presses '1' when you press 'q' for example. literally a one line (5 total) script. I have a similar setup except I hold the side button of my mouse and when I do, pressing the skill cast buttons - q w e r t y - casts potion slot 1 through 5 respectively.

    If you'd like to start with my personal macros, none of which are illegal as all keybinds are 1:1 for actions.

    Download AutoHotkey, then copy and save the following to a txt file and save as filename.ahk

    Code:
    ; AutoHotKey macros for Path of Exile
    ; Use semi-colon to comment out any macros that aren't desired, or to describe a new macro
    ; Refer to AHK documentation for help with syntax for more advanced macros
    
    Pause::TogglePOEItemScript()		;pause item parsing with the pause key (other macros remain). key bind enabled by default.
    #D::WinMinimize, A				;Winkey+D minimizes the active PoE window (PoE stays minimized this way)
    ^Escape::CloseScripts()			;Ctrl+Esc closes all running scripts specified by (and including) ItemInfo or TradeMacro.
    
    
    xbutton2 & q::Send 1         ;hold mousebutton 5 (side mouse button) and cast spell to use potion slot 1 through 5
    xbutton2 & w::Send 2        ;change 'xbutton2' to any letter or key preceded by a ^ symbol which means 'ctrl' if your mouse doesn't have side buttons
    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::SendInput ^c			;ctrl-right mouse button sends ctrl-c
    ~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
    }
    
    
    ;xbutton1::Send ^c               ;mouse button 4 == iteminfo hotkey
    ;^xbutton1::Send ^d				;ctrl+mousebutton 4 (upper side button) == trademacro hotkey
    ;^J::DecardCain() ; **Experimental** -- ID all items
    ;F8::SayPos() ; **Dev tool** -- Getting the cursor position, comment out if not planning to use
    
    F9::SendInput {Enter}/remaining{Enter}		; mobs remaining with F9
    F10::SendInput {Enter}/hideout{Enter}		; go to hideout with F5
    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} 
    		}
    	}		
    }
    
    DecardCain() {
        ;BlockInput On
        ix := 1295
        iy := 615
        delta := 53
        sleepInt := 50
     
        x := ix
        y := iy
       
        Send {F2} ; close all windows
        Send {i} ; open inventory
        Sleep 100
       
        Click Right, 1295, 825 ; get the first ID scroll
        Sleep 100
        Send {ShiftDown} ; Hold Shift for continuous scroll use
        Sleep sleepInt
       
        Loop 4 {
            Loop 12 {
                Click, %x%, %y%
                x += delta
                Sleep sleepInt
            }
            x := ix
            y += delta
        }
        x := ix + delta*2
       
        Loop 10 {
            Click, %x%, %y%
            x += delta
            Sleep sleepInt
        }
       
        Send {ShiftUp} ; release Shift
        Send {i} ; close inventory
       
        BlockInput Off
    }
    
    SayPos(){
            MouseGetPos, xpos, ypos
            Send {Enter} %xpos% %ypos% {Enter}
        msgbox, mx=%xpos% my=%ypos%
        return
    }
    
    RandomSleep(min,max){
        Random, r, %min%, %max%
        Sleep %r%
    }
    Last edited by Kronix; 03-22-2017 at 11:44 PM.

    PoeHUD Plugin: Flask Manager
  2. #452
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    2455
    Join Date
    Jun 2015
    Posts
    3,048
    Thanks G/R
    455/2200
    Trade Feedback
    0 (0%)
    Mentioned
    65 Post(s)
    Tagged
    1 Thread(s)
    Originally Posted by Orion25 View Post
    use AHK to make a macro that presses '1' when you press 'q' for example. literally a one line (5 total) script
    No!! you can change keybind from keyinfo.json file inside autoflaskmanager config folder.
    If I did not reply to you, it mean the question you are asking is stupid.

  3. #453
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    2455
    Join Date
    Jun 2015
    Posts
    3,048
    Thanks G/R
    455/2200
    Trade Feedback
    0 (0%)
    Mentioned
    65 Post(s)
    Tagged
    1 Thread(s)
    ==Update==

    Now you have an option to use offensive flask while using some skill/attacking.
    Also u can set minimum charges limit to use the offensive flask to save some charges for "remove bleeding effect" select 0 to disable this feature.


    Note: Delete old version + settings while downloading new one.
    If I did not reply to you, it mean the question you are asking is stupid.

  4. Thanks tsm-evo, toadskin (2 members gave Thanks to GameHelper for this useful post)
  5. #454
    luminair's Avatar Member
    Reputation
    3
    Join Date
    Apr 2014
    Posts
    36
    Thanks G/R
    16/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by zaafar View Post
    No!! you can change keybind from keyinfo.json file inside autoflaskmanager config folder.
    There isn't a keyinfo.json in the config folder, just create one will do?
    Is there an easy tutorial to read through teaching how to do a simple keybind?
    Thanks for the update by the way

  6. #455
    asdefxcv's Avatar Member
    Reputation
    3
    Join Date
    Mar 2017
    Posts
    33
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Love this new update.

    Could we have an option to use defensive as offensive ?

    Thanks a lot.

  7. #456
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    2455
    Join Date
    Jun 2015
    Posts
    3,048
    Thanks G/R
    455/2200
    Trade Feedback
    0 (0%)
    Mentioned
    65 Post(s)
    Tagged
    1 Thread(s)
    Originally Posted by luminair View Post
    There isn't a keyinfo.json in the config folder, just create one will do?
    Is there an easy tutorial to read through teaching how to do a simple keybind?
    Thanks for the update by the way
    are you checking poehud config folder or autoflaskmanager config folder.
    Also, there is an easy tutorial, read the FAQs in the first post. btw name is flaskbind.json not keyinfo.json.

    ur welcome.

    Originally Posted by asdefxcv View Post
    Love this new update.

    Could we have an option to use defensive as offensive ?

    Thanks a lot.
    go to flaskinfo.json and change defensive flasks to offensive. simple
    If I did not reply to you, it mean the question you are asking is stupid.

  8. Thanks toadskin (1 members gave Thanks to GameHelper for this useful post)
  9. #457
    asdefxcv's Avatar Member
    Reputation
    3
    Join Date
    Mar 2017
    Posts
    33
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Tried the latest version, doesn't trigger on whirlingblades or Spectral throw.

  10. #458
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    2455
    Join Date
    Jun 2015
    Posts
    3,048
    Thanks G/R
    455/2200
    Trade Feedback
    0 (0%)
    Mentioned
    65 Post(s)
    Tagged
    1 Thread(s)
    Originally Posted by asdefxcv View Post
    Tried the latest version, doesn't trigger on whirlingblades or Spectral throw.
    not possible, just tested , working on whirlingblades and spectral throw....
    what are your flasks? something must be wrong with them.
    also print screen your offensive settings.
    If I did not reply to you, it mean the question you are asking is stupid.

  11. #459
    Ewinz87's Avatar Member
    Reputation
    5
    Join Date
    Jun 2009
    Posts
    13
    Thanks G/R
    4/4
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by xbruhh View Post
    does anybody know why i'm getting those error msgs? https://i.imgur.com/EeUwnHR.png i already re-donwloaded the plugins and poe hud and nothing solve this problem, it only happens when i open my inventory, everything works ok while my inventory is closed. i'm playing on steam version x64
    Originally Posted by zaafar View Post
    Try adding flask 1 by 1 from the inventory and then see, which flask causes this...or what order in which flask causes this.
    I tested it in steam version of the game, i am not getting this error.

    Also, try removing items from inventory, and see which item causes this....


    P.S This is flask manager issue, I don't think so anyone in this thread can solve this....
    also started getting this yesterday. no idea why, i havent changed anything. im on non steam. us servers.
    tried with a fresh install of poehud and autoflaskmanager, cleared inventory, tried adding flasks one by one, just nothing fixes it.

    as i said this started doing this randomly after a poe crash.

    turning debug mode on, i dont see any info in the txt file but it keeps spamming "Invalid Flask Data, Recalculating it." followed by "Getting Inventory Flask Info."

    If there's less than 5 flasks it says "Invalid Flask Count, Recalculating it." once.

    Without debug there no red messages like from above screenshot.

  12. #460
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    2455
    Join Date
    Jun 2015
    Posts
    3,048
    Thanks G/R
    455/2200
    Trade Feedback
    0 (0%)
    Mentioned
    65 Post(s)
    Tagged
    1 Thread(s)
    Originally Posted by Ewinz87 View Post
    also started getting this yesterday. no idea why, i havent changed anything. im on non steam. us servers.
    tried with a fresh install of poehud and autoflaskmanager, cleared inventory, tried adding flasks one by one, just nothing fixes it.

    as i said this started doing this randomly after a poe crash.

    turning debug mode on, i dont see any info in the txt file but it keeps spamming "Invalid Flask Data, Recalculating it." followed by "Getting Inventory Flask Info."

    If there's less than 5 flasks it says "Invalid Flask Count, Recalculating it." once.

    Without debug there no red messages like from above screenshot.
    Is it fixed??? or u figured out why is it happening?
    I am working on an update that will fix this issue once and for all, but it will take 2-3 days.
    If I did not reply to you, it mean the question you are asking is stupid.

  13. #461
    gangebob's Avatar Member
    Reputation
    5
    Join Date
    Sep 2016
    Posts
    41
    Thanks G/R
    10/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by zaafar View Post
    not possible, just tested , working on whirlingblades and spectral throw....
    what are your flasks? something must be wrong with them.
    also print screen your offensive settings.
    dont work for me too
    PoeHUD Plugin: Flask Manager-gif

  14. #462
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    2455
    Join Date
    Jun 2015
    Posts
    3,048
    Thanks G/R
    455/2200
    Trade Feedback
    0 (0%)
    Mentioned
    65 Post(s)
    Tagged
    1 Thread(s)
    Originally Posted by gangebob View Post
    dont work for me too
    PoeHUD Plugin: Flask Manager-gif
    defensive flask settings too.
    If I did not reply to you, it mean the question you are asking is stupid.

  15. #463
    gangebob's Avatar Member
    Reputation
    5
    Join Date
    Sep 2016
    Posts
    41
    Thanks G/R
    10/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    PoeHUD Plugin: Flask Manager-1-gif
    10 symbols
    upd. works when i stay and spam skill after 2-3 sec. but when i press to portal gem it works immidietly
    Last edited by gangebob; 03-26-2017 at 01:38 AM.

  16. #464
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    2455
    Join Date
    Jun 2015
    Posts
    3,048
    Thanks G/R
    455/2200
    Trade Feedback
    0 (0%)
    Mentioned
    65 Post(s)
    Tagged
    1 Thread(s)
    Originally Posted by gangebob View Post
    10 symbols
    upd. works when i stay and spam skill after 2-3 sec. but when i press to portal gem it works immidietly
    try this dll. it will enable logs ( spam them actually ).
    tell me (using print screen) what do logs say when drinking and what do logs say when not drinking.FlaskManager.zip
    Last edited by GameHelper; 03-26-2017 at 02:41 AM.
    If I did not reply to you, it mean the question you are asking is stupid.

  17. #465
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    2455
    Join Date
    Jun 2015
    Posts
    3,048
    Thanks G/R
    455/2200
    Trade Feedback
    0 (0%)
    Mentioned
    65 Post(s)
    Tagged
    1 Thread(s)
    Originally Posted by hellzer123 View Post
    Boooooooooooo!
    no idea how to solve your problem.


    btw guys, we have discord now. It's easier to debug problem over there. So join it to discuss new features or solve your flaskmanager problems.
    Discord
    If I did not reply to you, it mean the question you are asking is stupid.

Page 31 of 76 FirstFirst ... 272829303132333435 ... 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 01:16 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search