GameHelper: A light version of PoeHUD/Exile-Api menu

User Tag List

Page 70 of 351 FirstFirst ... 20666768697071727374120170 ... LastLast
Results 1,036 to 1,050 of 5265
  1. #1036
    BombokaLusitana's Avatar Member
    Reputation
    8
    Join Date
    Jun 2021
    Posts
    49
    Thanks G/R
    38/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Having the same issue with Withering Step, I needed it to check that Phasing (slither) wasn't on in order to trigger it (since I gain Elusive on crit), even with slither LESS THAN 1 it keeps on spamming Withering Step, so it doesn't look like it checks if the buff isn't there.
    Last edited by BombokaLusitana; 11-30-2021 at 04:09 PM.

    GameHelper: A light version of PoeHUD/Exile-Api
  2. #1037
    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)
    What is the "Condition" for casting desecrate?

    im planning to make a flask manager when i use desecrate it will press a key.


    Bug Report:
    Autoquit sometimes quit but not in health threshold
    Radar is showing the scourge rader even tho im not in scourge

  3. #1038
    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)
    Everyone wait for an update since I forgot to handle (de)buff that doesn't have duration on them. Once I release that new version, then I will show how each of your issues can be solved without using CONTAINS/NOT_CONTAINS. I will also add contains/not-contains back, since that is more user-friendly (easy to understand).
    Last edited by GameHelper; 11-30-2021 at 06:07 PM.
    If I did not reply to you, it mean the question you are asking is stupid.

  4. #1039
    BombokaLusitana's Avatar Member
    Reputation
    8
    Join Date
    Jun 2021
    Posts
    49
    Thanks G/R
    38/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by hacker143 View Post
    What is the "Condition" for casting desecrate?

    im planning to make a flask manager when i use desecrate it will press a key.


    Bug Report:
    Autoquit sometimes quit but not in health threshold
    Radar is showing the scourge rader even tho im not in scourge
    Animation - SpellAreaOfEffectChaos

  5. #1040
    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)
    okay, released a new version, download from the first post. CONTAINS, NOT_CONTAINS is back.


    Originally Posted by MtSeven View Post
    _Doesn't have T(x) OR have with less than N duration. ----> This is the part that I can't do with the new update (in the last I checked only with NOT_CONTAINS).
    You should not use NOT_CONTAINS/CONTAINS. Try using DURATION_PERCENT with 1.0f for that "non existence or close to non existence" logic.

    Originally Posted by RebrandSoft View Post
    Imagine Ice golem buffs that there's no duration on them... in this case with 0 is not correct because it will be always true and it will cast and cast non-stop since some buffs are static and they are like yes or no with contains was easy because watches is this buff exists... looking for buffs with this name!
    This logic is wrong. If a buff doesn't have duration, it's duration is set to infinite in the game. Checking for LESS THAN 1 (or 0.1) DURATION will do the job. However, contains/not-contains is back, so feel free to use that also.

    Originally Posted by RebrandSoft View Post
    Hi mate, now since we don't have in status effect "contains" and "not contains" I can't make when my golem dies to revive him. I've used when not_contains ice_elemental_buff (ice golem) to recast (hit a button). Some of these buffs are not with charges or duration and etc how we can trigger them ?
    Originally Posted by BombokaLusitana View Post
    Having the same issue with Withering Step, I needed it to check that Phasing (slither) wasn't on in order to trigger it (since I gain Elusive on crit), even with slither LESS THAN 1 it keeps on spamming Withering Step, so it doesn't look like it checks if the buff isn't there.
    contains/not-contains is back,


    let me know if something doesn't work,
    Last edited by GameHelper; 11-30-2021 at 07:01 PM.
    If I did not reply to you, it mean the question you are asking is stupid.

  6. Thanks BombokaLusitana (1 members gave Thanks to GameHelper for this useful post)
  7. #1041
    RebrandSoft's Avatar Member
    Reputation
    8
    Join Date
    Mar 2020
    Posts
    82
    Thanks G/R
    16/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by GameHelper View Post
    okay, released a new version, download from the first post. CONTAINS, NOT_CONTAINS is back.




    You should not use NOT_CONTAINS/CONTAINS. Try using DURATION_PERCENT with 1.0f for that "non existence or close to non existence" logic.



    This logic is wrong. If a buff doesn't have duration, its duration is set to infinite in the game. Checking for LESS THAN 1 (or 0.1) DURATION will do the job. However, contains/not-contains is back, so feel free to use that also.





    contains/not-contains is back,


    let me know if something doesn't work,
    Thanks for the fast response! I will test everything now

    Just one small thing.... can you add "ImGui.CloseCurrentPopup();" in the flask manager popup window with the conditions please ? were you calling the add function or whatever. With this when we click on Add the popup will close without clicking outside the popup window.

  8. Thanks GameHelper (1 members gave Thanks to RebrandSoft for this useful post)
  9. #1042
    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 RebrandSoft View Post
    Thanks for the fast response! I will test everything now

    Just one small thing.... can you add "ImGui.CloseCurrentPopup();" in the flask manager popup window with the conditions please ? were you calling the add function or whatever. With this when we click on Add the popup will close without clicking outside the popup window.
    What if user don’t want to close the popup and add another condition after adding first condition? That’s the use-case due to which I didn’t add that line where you are asking me to add it.


    So the current way of working is that if you are done adding all your conditions, click outside the popup.
    Last edited by GameHelper; 11-30-2021 at 07:39 PM.
    If I did not reply to you, it mean the question you are asking is stupid.

  10. #1043
    RebrandSoft's Avatar Member
    Reputation
    8
    Join Date
    Mar 2020
    Posts
    82
    Thanks G/R
    16/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by GameHelper View Post
    What if user don’t want to close the popup and add another condition after adding first condition? That’s the use-case due to which I didn’t add that line where you are asking me to add it.


    So the current way of working is that if you are done adding all your conditions, click outside the window.
    I'm stupid don't listen to me I didn't think about it

  11. #1044
    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 hacker143 View Post
    Bug Report:
    Radar is showing the scourge rader even tho im not in scourge
    update to the latest version, that feature is now removed.
    If I did not reply to you, it mean the question you are asking is stupid.

  12. #1045
    ProfesionnalLeecher's Avatar Member
    Reputation
    2
    Join Date
    Aug 2017
    Posts
    23
    Thanks G/R
    21/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there a way to show legion chests/generals like this during the stasis phase?
    revealed.png

    Mine currently shows it like this:
    stasis.png

    I tried changing radar to the first icon but then it did this instead:
    text.png

    Edit: I wanna know if it's possible to see what the reward is during the stasis phase and a unique icon on the general.
    Last edited by ProfesionnalLeecher; 12-01-2021 at 05:09 AM.

  13. #1046
    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 ProfesionnalLeecher View Post
    Is there a way to show legion chests/generals like this during the stasis phase?
    revealed.png

    Mine currently shows it like this:
    stasis.png

    I tried changing radar to the first icon but then it did this instead:
    text.png

    Edit: I wanna know if it's possible to see what the reward is during the stasis phase and a unique icon on the general.
    No, for now, it's either Text version or some common icon for all chests + General.
    If I did not reply to you, it mean the question you are asking is stupid.

  14. #1047
    MtSeven's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    27
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    1 Thread(s)
    Working great! Tks for the (NOT)Contains, this condition helps a lot.

    The next step is a offset to know if a vaal skill have full souls lol. I don't know if this is easily trackable but would be a nice addition for the features. Currently my Manager is spanning the button with a cooldown while I don't have Soul_Prevention.

  15. #1048
    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 MtSeven View Post
    Working great! Tks for the (NOT)Contains, this condition helps a lot.

    The next step is a offset to know if a vaal skill have full souls lol. I don't know if this is easily trackable but would be a nice addition for the features. Currently my Manager is spanning the button with a cooldown while I don't have Soul_Prevention.
    Read rule number 1.
    If I did not reply to you, it mean the question you are asking is stupid.

  16. #1049
    suzimia's Avatar Member
    Reputation
    3
    Join Date
    Aug 2020
    Posts
    41
    Thanks G/R
    8/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    For the flask manager, I'm not able to find the number keys (1- 0 ). There are numberpad keys and some D1,D2,etc but not (1-0). Other than that, great tool!

  17. #1050
    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 suzimia View Post
    For the flask manager, I'm not able to find the number keys (1- 0 ). There are numberpad keys and some D1,D2,etc but not (1-0). Other than that, great tool!
    D1 is basically 1.
    If I did not reply to you, it mean the question you are asking is stupid.

  18. Thanks suzimia (1 members gave Thanks to GameHelper for this useful post)

Similar Threads

  1. "Light" Version of PoE HUD
    By deimudda69 in forum Path of Exile
    Replies: 41
    Last Post: 01-04-2020, 09:44 PM
  2. Replies: 34
    Last Post: 12-14-2019, 11:08 AM
  3. US version of TBC needed
    By Victor in forum World of Warcraft General
    Replies: 0
    Last Post: 01-16-2007, 05:08 AM
  4. Cracked version of Fraps?
    By Amedis in forum Community Chat
    Replies: 36
    Last Post: 12-04-2006, 12:00 AM
  5. new version of Studio
    By wrigley in forum WoW ME Questions and Requests
    Replies: 1
    Last Post: 12-02-2006, 06:35 PM
All times are GMT -5. The time now is 10:45 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