BasicFlaskRoutine - A PoEHUD Flask Manager menu

User Tag List

Page 38 of 39 FirstFirst ... 343536373839 LastLast
Results 556 to 570 of 576
  1. #556
    BossManAdrostos's Avatar Member
    Reputation
    4
    Join Date
    Mar 2018
    Posts
    40
    Thanks G/R
    32/3
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello

    for BYOR is there anyway you could look at the "rage" buff for "playerhasbuff" condition.
    if i search for rage it doesnt generate it in the list of buffs, but DevTree does state rage is the name of the buff.
    when i open the profile with notepad i can change the buff name to "rage" and in the past that has worked for creating routines around levels of rage, so i know this used to work.
    however now whenever i close hud, edit the notepad and save it, then reopen hud the profile buff name gets reverted to whatever it was before i changed it to rage. this didnt used to happen in the past, so im not sure how to overcome this issue.

    BasicFlaskRoutine - A PoEHUD Flask Manager
  2. #557
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1421
    Join Date
    Apr 2006
    Posts
    3,942
    Thanks G/R
    285/572
    Trade Feedback
    1 (100%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by BossManAdrostos View Post
    Hello

    for BYOR is there anyway you could look at the "rage" buff for "playerhasbuff" condition.
    if i search for rage it doesnt generate it in the list of buffs, but DevTree does state rage is the name of the buff.
    when i open the profile with notepad i can change the buff name to "rage" and in the past that has worked for creating routines around levels of rage, so i know this used to work.
    however now whenever i close hud, edit the notepad and save it, then reopen hud the profile buff name gets reverted to whatever it was before i changed it to rage. this didnt used to happen in the past, so im not sure how to overcome this issue.
    I haven't updated this in a long time. I think both HUD versions have their own separate forks for it.

  3. #558
    BossManAdrostos's Avatar Member
    Reputation
    4
    Join Date
    Mar 2018
    Posts
    40
    Thanks G/R
    32/3
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sychotix View Post
    I haven't updated this in a long time. I think both HUD versions have their own separate forks for it.
    :c any chance you might look at it again someday soon?

  4. #559
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1421
    Join Date
    Apr 2006
    Posts
    3,942
    Thanks G/R
    285/572
    Trade Feedback
    1 (100%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by BossManAdrostos View Post
    :c any chance you might look at it again someday soon?
    Probably not until PoE 2. Don't both of the versions for the respective HUDs work just fine? I'd recommend contacting whoever is maintaining those forks if you've got issues

  5. Thanks BossManAdrostos (1 members gave Thanks to Sychotix for this useful post)
  6. #560
    BossManAdrostos's Avatar Member
    Reputation
    4
    Join Date
    Mar 2018
    Posts
    40
    Thanks G/R
    32/3
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ok ty.

    i guess can i ask one question- can you describe how i use the timer feature on build your own routine? can i use it to hit keys repeatedly after set intervals of time? i cant figure out how to make the set timer function works. mostly i get stuff to fire off skills based on remaining duration of a buff or if that buff is no longer present etc etc

    but for example id like to set multiple keys to trigger with set intervals between the inputs, and it would be nice to have more control over specific interactions.

    for example say i have 2 of the same flask in my setup, and i want that flasks effect to always be in effect- and the only way to do that is to trigger one flask, and just before that flask falls off the next identical flask triggers. then they repeat that process. if i use the "has buff" condition, i dont know how i could make it alternate which flask it uses to keep its duration up. meanwhile if i just had generic timers i could have it hit those alternating keys after specific set times.

    can you help me understand how to better use the timer function for that, if that is even what its meant to do?

  7. #561
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1421
    Join Date
    Apr 2006
    Posts
    3,942
    Thanks G/R
    285/572
    Trade Feedback
    1 (100%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    It has been a while since I've looked at it... but something like...

    Code:
    Decorator - Timer Elapsed > 5000 || timer not started
      - Sequence
         - Send Hotkey or Use Flask
         - Start Timer
    And if you wanted two flasks alternating, perhaps two identical branches, except you end the first timer, then start a second timer and send a different hotkey/use a different flask.

  8. Thanks BossManAdrostos (1 members gave Thanks to Sychotix for this useful post)
  9. #562
    benelux's Avatar Member
    Reputation
    4
    Join Date
    Jul 2014
    Posts
    30
    Thanks G/R
    5/3
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    s9AGXTi.png
    i get this error in log window

  10. #563
    sweeb's Avatar Member
    Reputation
    1
    Join Date
    Sep 2007
    Posts
    35
    Thanks G/R
    4/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Cant get routine to work. Its loaded but i dont get any options when i try to set it up.

    And has anyone gotten corundum flasks to work? i added the name to the flask file in config under compiled with a 6 for defense but i can get it to work

  11. #564
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    2453
    Join Date
    Jun 2015
    Posts
    3,048
    Thanks G/R
    454/2198
    Trade Feedback
    0 (0%)
    Mentioned
    65 Post(s)
    Tagged
    1 Thread(s)
    Originally Posted by sweeb View Post
    Cant get routine to work. Its loaded but i dont get any options when i try to set it up.

    And has anyone gotten corundum flasks to work? i added the name to the flask file in config under compiled with a 6 for defense but i can get it to work


    "Gold Flask": "flask_utility_rarity",
    "Corundum Flask": "flask_utility_stun_protection",
    "Iron Flask": "flask_utility_ward",
    "Steel Flask": "flask_utility_adaptation"

    I will let you guess where to put this. enjoy

  12. Thanks Sychotix, EthEth (2 members gave Thanks to GameHelper for this useful post)
  13. #565
    sweeb's Avatar Member
    Reputation
    1
    Join Date
    Sep 2007
    Posts
    35
    Thanks G/R
    4/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by zaafar View Post
    "Gold Flask": "flask_utility_rarity",
    "Corundum Flask": "flask_utility_stun_protection",
    "Iron Flask": "flask_utility_ward",
    "Steel Flask": "flask_utility_adaptation"

    I will let you guess where to put this. enjoy
    Thanks a bunch. I was looking at those and thinking i need to add it there but i didnt know what it was called Stun protection/avoidance/immunity.

  14. #566
    BossManAdrostos's Avatar Member
    Reputation
    4
    Join Date
    Mar 2018
    Posts
    40
    Thanks G/R
    32/3
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    currently all of the "add condition" filter menus are empty in build your own routine.
    i tried using some old profiles just to see if they would even function and they dont, none of their conditions properly show up after loading them. and i cant create new profiles

  15. #567
    Anderson11's Avatar Contributor
    Reputation
    86
    Join Date
    Mar 2017
    Posts
    62
    Thanks G/R
    25/27
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by BossManAdrostos View Post
    currently all of the "add condition" filter menus are empty in build your own routine.
    i tried using some old profiles just to see if they would even function and they dont, none of their conditions properly show up after loading them. and i cant create new profiles
    I've checked every fork I've managed to find and all have this issue. Also, none of them have updated "Low Life" definition from 35% to 50%.

  16. #568
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1421
    Join Date
    Apr 2006
    Posts
    3,942
    Thanks G/R
    285/572
    Trade Feedback
    1 (100%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Anderson11 View Post
    I've checked every fork I've managed to find and all have this issue. Also, none of them have updated "Low Life" definition from 35% to 50%.
    Yeah, I'm not particularly maintaining this codebase. It shouldn't be too bad for people to update I believe... I just don't have the motivation to do it.

  17. #569
    roska's Avatar Active Member
    Reputation
    19
    Join Date
    Sep 2017
    Posts
    216
    Thanks G/R
    42/18
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Im having trouble with mana flask usage. Even if i put the slider to 100% it doesnt use the flask all the time. Anyone have any ideas?

  18. #570
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1421
    Join Date
    Apr 2006
    Posts
    3,942
    Thanks G/R
    285/572
    Trade Feedback
    1 (100%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by roska View Post
    Im having trouble with mana flask usage. Even if i put the slider to 100% it doesnt use the flask all the time. Anyone have any ideas?
    Enable debug and that should help you figure out exactly what is going on.

Page 38 of 39 FirstFirst ... 343536373839 LastLast

Similar Threads

  1. [Release] TreeRoutine for PoeHUD plus a Flask Manager
    By Sychotix in forum PoE Bots and Programs
    Replies: 362
    Last Post: 2 Weeks Ago, 09:53 PM
  2. [Tool] Simple Flask Manager for PoeHUD
    By GameHelper in forum PoE Bots and Programs
    Replies: 212
    Last Post: 08-10-2021, 12:53 PM
  3. [Selling] [Tool] Simple Flask Manager Plugin For PoeHUD
    By GameHelper in forum PoE Buy Sell Trade
    Replies: 115
    Last Post: 04-08-2018, 10:31 PM
  4. PoeHUD Plugin: Flask Manager
    By Treasure_Box in forum PoE Bots and Programs
    Replies: 1138
    Last Post: 03-05-2018, 08:48 PM
  5. Replies: 27
    Last Post: 12-19-2016, 07:57 AM
All times are GMT -5. The time now is 07:52 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