BasicFlaskRoutine - A PoEHUD Flask Manager menu

User Tag List

Page 23 of 39 FirstFirst ... 192021222324252627 ... LastLast
Results 331 to 345 of 581
  1. #331
    LauFrisk's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    5
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Reuspa View Post
    There was a patch today, which broke the plugin.
    thanks for the info bud!

    BasicFlaskRoutine - A PoEHUD Flask Manager
  2. #332
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1441
    Join Date
    Apr 2006
    Posts
    3,999
    Thanks G/R
    295/585
    Trade Feedback
    1 (100%)
    Mentioned
    9 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Reuspa View Post
    There was a patch today, which broke the plugin.
    It should now be unbroke

  3. Thanks TehCheat (1 members gave Thanks to Sychotix for this useful post)
  4. #333
    xepers's Avatar Banned
    Reputation
    1
    Join Date
    Sep 2018
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    new flask error
    Last edited by xepers; 12-13-2018 at 10:23 AM.

  5. #334
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1441
    Join Date
    Apr 2006
    Posts
    3,999
    Thanks G/R
    295/585
    Trade Feedback
    1 (100%)
    Mentioned
    9 Post(s)
    Tagged
    0 Thread(s)
    Someone had posted it earlier, but I was being lazy. Went ahead and pushed the new config file with it.

  6. #335
    ReadyToKill's Avatar Banned
    Reputation
    13
    Join Date
    Sep 2012
    Posts
    395
    Thanks G/R
    11/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey Sychotix can you explain a little bit about how the health/mana autopot works? For example if i have a Min Life % Auto HP Flask set to 80% it will trigger my Non Instant Hp Flask at 80% and with the Min Life % Auto Instant HP Flask at 40%, it would trigger my Instant flask at 40%, i get that part, but how does it work for mana? there is 3 parts for the mana one. What does the last one do? Min Mana Auto Mana Flask.

  7. #336
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1441
    Join Date
    Apr 2006
    Posts
    3,999
    Thanks G/R
    295/585
    Trade Feedback
    1 (100%)
    Mentioned
    9 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ReadyToKill View Post
    Hey Sychotix can you explain a little bit about how the health/mana autopot works? For example if i have a Min Life % Auto HP Flask set to 80% it will trigger my Non Instant Hp Flask at 80% and with the Min Life % Auto Instant HP Flask at 40%, it would trigger my Instant flask at 40%, i get that part, but how does it work for mana? there is 3 parts for the mana one. What does the last one do? Min Mana Auto Mana Flask.
    Hopefully the code speaks for itself.

    Code:
     private Composite createManaPotionComposite()
            {
                return new Decorator((x => PlayerHelper.isManaBelowPercentage(Settings.ManaPotion) || PlayerHelper.isManaBelowValue(Settings.MinManaFlask)),
                    new Decorator((x => PlayerHelper.playerDoesNotHaveAnyOfBuffs(new List<string>() { "flask_effect_mana" })),
                        new PrioritySelector(
                            createUseFlaskAction(FlaskActions.Mana, false),
                            createUseFlaskAction(FlaskActions.Hybrid, false)
                        )
                    )
                );
            }

  8. #337
    cerobug's Avatar Member
    Reputation
    1
    Join Date
    Jul 2018
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Getting this error after updating it using Pluginsupdater

    Untitled-1.jpg

  9. #338
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1441
    Join Date
    Apr 2006
    Posts
    3,999
    Thanks G/R
    295/585
    Trade Feedback
    1 (100%)
    Mentioned
    9 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cerobug View Post
    Getting this error after updating it using Pluginsupdater

    Untitled-1.jpg
    Don't use plugins updater. It doesn't properly update my plugins.

  10. #339
    sundexin's Avatar Member
    Reputation
    2
    Join Date
    Jan 2009
    Posts
    5
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi, its not working on the other language for me even . I tried change the language in FlaskBuffDetails.json and flaskinfo.json. The error code is cannot find the flask names.
    PS: Im using the Russian lanugage client but I used modding tool that I can change Russian to Chinese, I was using AutoFlaskManager fine before the 3.5, but after the update its not working cuz the offsets changed.

  11. #340
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1441
    Join Date
    Apr 2006
    Posts
    3,999
    Thanks G/R
    295/585
    Trade Feedback
    1 (100%)
    Mentioned
    9 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sundexin View Post
    Hi, its not working on the other language for me even . I tried change the language in FlaskBuffDetails.json and flaskinfo.json. The error code is cannot find the flask names.
    PS: Im using the Russian lanugage client but I used modding tool that I can change Russian to Chinese, I was using AutoFlaskManager fine before the 3.5, but after the update its not working cuz the offsets changed.
    There is a russian language pack in BasicFlaskRoutine\config\languages\Russian. They should include most flasks, although there may be a few of the new flasks missing.

  12. #341
    sundexin's Avatar Member
    Reputation
    2
    Join Date
    Jan 2009
    Posts
    5
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sychotix View Post
    There is a russian language pack in BasicFlaskRoutine\config\languages\Russian. They should include most flasks, although there may be a few of the new flasks missing.
    thx problem solved, looks like it was my bad
    Last edited by sundexin; 12-20-2018 at 02:22 AM.

  13. #342
    Crackjack's Avatar Active Member
    Reputation
    23
    Join Date
    Aug 2008
    Posts
    220
    Thanks G/R
    26/15
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hmm, is there some error file or something i can display?

    I'm having problems with my quicksilver flasks, it sometimes uses them at once at cooldown as instructed but all of a sudden it waits may seconds before using it again, even so i have no movement speed active in any other way(i.e from other flasks).

    In time it sometimes stop drinking the quicksilvers for 5-30 seconds and not using them at all for that time.

    No reserved charges active on them. No removal, such as freeze, bleed etc.

    Only movement speed, increased effect and reduced duration.

    Edit: Also tried brand new quicksilver flasks, white ones. Also tried every slot same result.

    It is so weird cause i could be running 5 quicksilver flasks, all charges full and yet it wont use any of them for, first time i.e 7 seconds, second time 26 seconds, third time instantly, fourth time 18 seconds and so on so on
    Last edited by Crackjack; 12-21-2018 at 04:58 PM.

  14. #343
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1441
    Join Date
    Apr 2006
    Posts
    3,999
    Thanks G/R
    295/585
    Trade Feedback
    1 (100%)
    Mentioned
    9 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Crackjack View Post
    Hmm, is there some error file or something i can display?

    I'm having problems with my quicksilver flasks, it sometimes uses them at once at cooldown as instructed but all of a sudden it waits may seconds before using it again, even so i have no movement speed active in any other way(i.e from other flasks).

    In time it sometimes stop drinking the quicksilvers for 5-30 seconds and not using them at all for that time.

    No reserved charges active on them. No removal, such as freeze, bleed etc.

    Only movement speed, increased effect and reduced duration.

    Edit: Also tried brand new quicksilver flasks, white ones. Also tried every slot same result.

    It is so weird cause i could be running 5 quicksilver flasks, all charges full and yet it wont use any of them for, first time i.e 7 seconds, second time 26 seconds, third time instantly, fourth time 18 seconds and so on so on
    I assume you have it set to go off after you move a certain amount of time? Are you ONLY moving (not casting any spells... including movement spells) for your tests?

  15. #344
    Crackjack's Avatar Active Member
    Reputation
    23
    Join Date
    Aug 2008
    Posts
    220
    Thanks G/R
    26/15
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sychotix View Post
    I assume you have it set to go off after you move a certain amount of time? Are you ONLY moving (not casting any spells... including movement spells) for your tests?
    I have tried using everything between 1 and 5000(yeah just to see if it worked..) and it's the same.

    I have however now narrowed the issue down to be on the combat field.
    When i run around like a maniac in my hideout, all quicksilvers works as they should, also when im using other flasks for the purpose of trying.

    The problem occur whenever i start to fight monsters, maps or outdoor zones does not matter, or indoor for that matter either(syndicate safehouses) - It simply stops working as it should and starts to randomly use quicksilvers whenever it feels doing it instead of following the duration timer.

    Yes, only been running around without any movement skills/spells.

    Edit 1: If it is any further help, i am playing Shadow/Saboteur with Arc mines.

    Edit 2: And there seems to the be issue, swapping Arc with Firestorm, exactly the same zone and setup it uses the flasks just fine but upon using Arc again it starts to break apart.

    Edit 3: Nevermind that edit, i was wrong. Happends to both Arc and Vaal arc gem.

    Edit 4: Tried same setup but Glacial Cascade now and it is the very same, so i guess it got something to do with either arming the mine or detonating it, that it somehow breaks the flask loop.
    Last edited by Crackjack; 12-21-2018 at 08:10 PM.

  16. #345
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1441
    Join Date
    Apr 2006
    Posts
    3,999
    Thanks G/R
    295/585
    Trade Feedback
    1 (100%)
    Mentioned
    9 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Crackjack View Post
    I have tried using everything between 1 and 5000(yeah just to see if it worked..) and it's the same.

    I have however now narrowed the issue down to be on the combat field.
    When i run around like a maniac in my hideout, all quicksilvers works as they should, also when im using other flasks for the purpose of trying.

    The problem occur whenever i start to fight monsters, maps or outdoor zones does not matter, or indoor for that matter either(syndicate safehouses) - It simply stops working as it should and starts to randomly use quicksilvers whenever it feels doing it instead of following the duration timer.

    Yes, only been running around without any movement skills/spells.

    Edit 1: If it is any further help, i am playing Shadow/Saboteur with Arc mines.

    Edit 2: And there seems to the be issue, swapping Arc with Firestorm, exactly the same zone and setup it uses the flasks just fine but upon using Arc again it starts to break apart.

    Edit 3: Nevermind that edit, i was wrong. Happends to both Arc and Vaal arc gem.

    Edit 4: Tried same setup but Glacial Cascade now and it is the very same, so i guess it got something to do with either arming the mine or detonating it, that it somehow breaks the flask loop.
    The mines issue should have been fixed as of this commit to PoEHUD. Fixed Actor.isMoving for miners/trappers players . TehCheat/PoEHUD@92239cc . GitHub

    Like I said, if you are using ANY skills while moving, it invalidates the test. The logic for "are we moving" doesn't take skills into effect.

  17. Thanks Crackjack (1 members gave Thanks to Sychotix for this useful post)
Page 23 of 39 FirstFirst ... 192021222324252627 ... LastLast

Similar Threads

  1. [Release] TreeRoutine for PoeHUD plus a Flask Manager
    By Sychotix in forum PoE Bots and Programs
    Replies: 374
    Last Post: 08-15-2024, 03:21 AM
  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: 114
    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 01:37 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