TreeRoutine for PoeHUD plus a Flask Manager menu

User Tag List

Page 7 of 25 FirstFirst ... 34567891011 ... LastLast
Results 91 to 105 of 365
  1. #91
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1421
    Join Date
    Apr 2006
    Posts
    3,943
    Thanks G/R
    285/572
    Trade Feedback
    1 (100%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by eNdless2k View Post
    Im trying to make an activation on my Zerphis Flask.

    I have a normal mana Flask which activates correctly, but zerphis just doesnt activate when the mana flask is running.

    Is there any reason why?
    The Use Flask Type Action will search for a flask of the specified type... but will ONLY decide to drink flasks if we are missing its buff (described in FlaskBuffDetails.json). If you are wanting special logic for the flask, I would probably add a decorator with your desired conditions and then a Use Flask Action.

    Keep in mind, I'm not sure I have a way to ignore specifics flasks in the Use Flask Type Action, so it could be used as a mana flask as well.

    TreeRoutine for PoeHUD plus a Flask Manager
  2. #92
    Javi137's Avatar Member
    Reputation
    1
    Join Date
    Dec 2017
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Leaving this here so it doesn't get lost: https://i.gyazo.com/thumb/1200/842cb...73fe95-png.jpg

    happened on a breach

  3. #93
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1421
    Join Date
    Apr 2006
    Posts
    3,943
    Thanks G/R
    285/572
    Trade Feedback
    1 (100%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Javi137 View Post
    Leaving this here so it doesn't get lost: https://i.gyazo.com/thumb/1200/842cb...73fe95-png.jpg

    happened on a breach
    Might have fixed it. Update and see if it happens again.

  4. #94
    DJS's Avatar Member
    Reputation
    4
    Join Date
    Mar 2017
    Posts
    39
    Thanks G/R
    6/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hell this BuildYourOwnRoutine is really hot. In about two hours I figured out to setup my individual flask routine and it's dream!!! Thanx alot for this Tool!

    Just finished first test runs and now I wonder how there is a possibility to integrate Is-Buff-active-conditions like Bloodrage and Vaal Haste (incl. stacks).
    All fantastic mechanics are in this tool to go even further with it :-)

    Again thanx for this great work!

  5. #95
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1421
    Join Date
    Apr 2006
    Posts
    3,943
    Thanks G/R
    285/572
    Trade Feedback
    1 (100%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DJS View Post
    Hell this BuildYourOwnRoutine is really hot. In about two hours I figured out to setup my individual flask routine and it's dream!!! Thanx alot for this Tool!

    Just finished first test runs and now I wonder how there is a possibility to integrate Is-Buff-active-conditions like Bloodrage and Vaal Haste (incl. stacks).
    All fantastic mechanics are in this tool to go even further with it :-)

    Again thanx for this great work!
    Yes, it is possible. A developer was working on this at one point so it may be available soon (TM)

  6. #96
    eNdless2k's Avatar Member
    Reputation
    2
    Join Date
    Mar 2008
    Posts
    31
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sychotix View Post
    The Use Flask Type Action will search for a flask of the specified type... but will ONLY decide to drink flasks if we are missing its buff (described in FlaskBuffDetails.json). If you are wanting special logic for the flask, I would probably add a decorator with your desired conditions and then a Use Flask Action.

    Keep in mind, I'm not sure I have a way to ignore specifics flasks in the Use Flask Type Action, so it could be used as a mana flask as well.
    Is there a tutorial how to do this? I really dont get the logic, maybe im to dumb -.-

    Ive Zerphis in Slot 1
    Slot 2 Manaflask
    Slot 3 instant Manaflask

    I want zerphis and the normal mana Flask to trigger at the same time when i reach below 60% mana and the instant flask to trigger when im below 30%

  7. #97
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1421
    Join Date
    Apr 2006
    Posts
    3,943
    Thanks G/R
    285/572
    Trade Feedback
    1 (100%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by eNdless2k View Post
    Is there a tutorial how to do this? I really dont get the logic, maybe im to dumb -.-

    Ive Zerphis in Slot 1
    Slot 2 Manaflask
    Slot 3 instant Manaflask

    I want zerphis and the normal mana Flask to trigger at the same time when i reach below 60% mana and the instant flask to trigger when im below 30%
    I'd look up how a behavior tree works or look at my example BasicFlaskRoutine profile that comes included

    Below might be along the lines of what you want.

    PrioritySelector
    {
    Decorator (mana < 60%)
    {
    Sequence
    {
    UseFlaskAction(1),
    UseFlaskTypeAction(Mana, not-instant)

    }
    },
    Decorator (Mana < 30%)
    {
    UseFlasktypeAction(Mana, instant)
    }
    }

  8. #98
    Xcesiuss's Avatar Contributor CoreCoins Purchaser
    Reputation
    119
    Join Date
    Mar 2008
    Posts
    135
    Thanks G/R
    14/85
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    GitHub - Xcesius/BuildYourOwnRoutine: A PoEHUD plugin designed for a non-programmer to create their own custom plugins

    (It will be added into default BuildYourOwnRoutine when finished)

    NEW ::
    Added Vaal Skill Action support (You dont need to track any of the vaal buffs, they are being checked inside the action. I've only managed to test Vaal Haste)
    Added PlayerHasBuff Condition support, can filter(search) which buff you are looking for. Count buff support will be added soon
    WIP MapBoss Condition (Will return true when player is near the map boss)
    Last edited by Xcesiuss; 04-24-2018 at 09:34 PM.

  9. #99
    PatriotOC's Avatar Member
    Reputation
    1
    Join Date
    Aug 2017
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How do i make my flasks not run when im in my hideout? I cant seem to figure it out...

  10. #100
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1421
    Join Date
    Apr 2006
    Posts
    3,943
    Thanks G/R
    285/572
    Trade Feedback
    1 (100%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by PatriotOC View Post
    How do i make my flasks not run when im in my hideout? I cant seem to figure it out...
    Add a decorator with the hideout condition.

  11. #101
    PatriotOC's Avatar Member
    Reputation
    1
    Join Date
    Aug 2017
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sychotix View Post
    Add a decorator with the hideout condition.
    Decorator(FlaskHasBuffCondition - flask_bonus_movement_speed - inverted)
    {
    UseFlaskTypeAction(Speedrun)
    }

    where do i put the decorator to check for hideout

  12. #102
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1421
    Join Date
    Apr 2006
    Posts
    3,943
    Thanks G/R
    285/572
    Trade Feedback
    1 (100%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by PatriotOC View Post
    Decorator(FlaskHasBuffCondition - flask_bonus_movement_speed - inverted)
    {
    UseFlaskTypeAction(Speedrun)
    }

    where do i put the decorator to check for hideout
    Add it to your decorator condition.

    Decorator(InHideout (inverted) AND FlaskHasBuffCondition [etc]
    {

    }

  13. #103
    PatriotOC's Avatar Member
    Reputation
    1
    Join Date
    Aug 2017
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sychotix View Post
    Add it to your decorator condition.

    Decorator(InHideout (inverted) AND FlaskHasBuffCondition [etc]
    {

    }
    wait you can do that? I assumed it was only one condition allowed my bad

    EDIT:

    But I dont get it, the condition for the hideout is always the same. I am actually lost....I just wanna make it so that my quicksilver runs constantly but not when im in hideout
    Last edited by PatriotOC; 04-25-2018 at 10:05 AM.

  14. #104
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1421
    Join Date
    Apr 2006
    Posts
    3,943
    Thanks G/R
    285/572
    Trade Feedback
    1 (100%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by PatriotOC View Post
    wait you can do that? I assumed it was only one condition allowed my bad

    EDIT:

    But I dont get it, the condition for the hideout is always the same. I am actually lost....I just wanna make it so that my quicksilver runs constantly but not when im in hideout
    I don't know if I have really tested the "InHideout" condition. If it is always returning true for whatever reason... then that is a bug. It should always return true when you are in the hideout. You can invert it to always return true when you are NOT in your hideout... or at least that is its intention.

  15. #105
    PatriotOC's Avatar Member
    Reputation
    1
    Join Date
    Aug 2017
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    False 2.JPG
    False.JPG

    Shouldnt "InHideoutCondition" be true or am I not understanding it? It doesnt change regardless if I invert it or not
    Attached Thumbnails Attached Thumbnails TreeRoutine for PoeHUD plus a Flask Manager-false-jpg   TreeRoutine for PoeHUD plus a Flask Manager-false-2-jpg  
    Last edited by PatriotOC; 04-25-2018 at 11:34 AM.

Page 7 of 25 FirstFirst ... 34567891011 ... LastLast

Similar Threads

  1. [Release] STASHIE - a stash managing plugin for PoeHud
    By Preaches in forum PoE Bots and Programs
    Replies: 554
    Last Post: 04-10-2023, 03:11 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. 4 WoW accounts for Sale/Trade T6 Druid For SALE.. PLUS MORE!!!
    By Badlah in forum Members Only Accounts And CD Keys Buy Sell
    Replies: 10
    Last Post: 07-16-2008, 10:16 PM
All times are GMT -5. The time now is 12:00 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