GameHelper for POE 2 menu

User Tag List

Page 42 of 61 FirstFirst ... 383940414243444546 ... LastLast
Results 616 to 630 of 911
  1. #616
    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 adreamjay View Post
    Can AHKTrigger implement a certain situation to trigger holding to press “Raise Shield” Skill instead of clicking key one time?

    “Raise Shield” Skill can keep pressing skill key for moving.

    The new feature in POE2 is very interesting. Thank you very much for the upgrade "added AHK templates for weapon set active".
    Don’t think so…
    If I did not reply to you, it mean the question you are asking is stupid.

    GameHelper for POE 2
  2. #617
    whywasibanned's Avatar Member
    Reputation
    3
    Join Date
    Mar 2020
    Posts
    28
    Thanks G/R
    2/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    in GH for the Autoquit section, currently i have it set to PlayerVitals.ES.Percent <= 5 however, how can i add it so that it has to satisfy 2 conditions, so

    PlayerVitals.ES.Percent <= 5 would be the first condition and the second condition would be the players mana was less than 15% it would autoquit


    This is what i have in the settings.ini file now


    {
    "EnableAutoQuit": false,
    "AutoQuitCondition": {
    "conditionSource": "PlayerVitals.ES.Percent <= 1",
    "component": null
    },

  3. #618
    oops6025's Avatar Member
    Reputation
    3
    Join Date
    Apr 2024
    Posts
    3
    Thanks G/R
    9/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by whywasibanned View Post
    in GH for the Autoquit section, currently i have it set to PlayerVitals.ES.Percent <= 5 however, how can i add it so that it has to satisfy 2 conditions, so

    PlayerVitals.ES.Percent <= 5 would be the first condition and the second condition would be the players mana was less than 15% it would autoquit


    This is what i have in the settings.ini file now


    {
    "EnableAutoQuit": false,
    "AutoQuitCondition": {
    "conditionSource": "PlayerVitals.ES.Percent <= 1",
    "component": null
    },
    Maybe this could work

    Code:
    PlayerVitals.ES.Percent <= 5 || PlayerVitals.MANA.PERCENT <= 15
    || is the OR operator

  4. #619
    whywasibanned's Avatar Member
    Reputation
    3
    Join Date
    Mar 2020
    Posts
    28
    Thanks G/R
    2/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by oops6025 View Post
    Maybe this could work

    Code:
    PlayerVitals.ES.Percent <= 5 || PlayerVitals.MANA.PERCENT <= 15
    || is the OR operator

    but i need it so that both conditions were true for it to log out, not the first condtion or the second condition.

  5. #620
    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 whywasibanned View Post
    but i need it so that both conditions were true for it to log out, not the first condtion or the second condition.
    && is for the and operator.

    Another easy way is to make the condition in regular rules area for flasks and once they are ready copy the final version in auto quit. You can press merge condition button in order to merge multiple conditions boxes into 1.
    Last edited by GameHelper; 01-08-2025 at 12:09 PM.
    If I did not reply to you, it mean the question you are asking is stupid.

  6. #621
    mega2k0's Avatar Member
    Reputation
    13
    Join Date
    Jul 2016
    Posts
    125
    Thanks G/R
    15/12
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    then use &&

  7. #622
    John201302's Avatar Member
    Reputation
    1
    Join Date
    Jan 2025
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    what is world drawing for?

  8. #623
    whywasibanned's Avatar Member
    Reputation
    3
    Join Date
    Mar 2020
    Posts
    28
    Thanks G/R
    2/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ok, so it should look something like this?


    {
    "EnableAutoQuit": false,
    "AutoQuitCondition": {
    "conditionSource": "PlayerVitals.ES.Percent <= 5 && PlayerVitals.MANA.PERCENT <= 15",
    "component": null
    },


    Ok, thx! It seems to be working!
    Last edited by whywasibanned; 01-08-2025 at 12:23 PM.

  9. Thanks GameHelper (1 members gave Thanks to whywasibanned for this useful post)
  10. #624
    lenoli95's Avatar Member
    Reputation
    1
    Join Date
    Jul 2019
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Wrong message
    Last edited by lenoli95; 01-08-2025 at 12:21 PM.

  11. #625
    lenoli95's Avatar Member
    Reputation
    1
    Join Date
    Jul 2019
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ddt442 View Post
    Oh, that is much smarter!!!

    If minions are not dead and blink is useable switching to weapons set2 ?
    I never thought of using the timer to do that, thanks!
    The painoffering script is pure genius.
    can you tell me how to set the timer, I didn't find similar sample code and functions

  12. #626
    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 lenoli95 View Post
    can you tell me how to set the timer, I didn't find similar sample code and functions
    You can append delay component to any condition by pressing the add component button. This delay component ensures that the truthfulness of the condition is delay by the value set by you. For example if you got a condition that says there are 5 monster around you, adding a 5 sec delay component to it would ensures there are 5 monsters around you for atleast 5 seconds before the condition yield true.
    If I did not reply to you, it mean the question you are asking is stupid.

  13. #627
    cupkax's Avatar Site Donator
    Reputation
    12
    Join Date
    Dec 2019
    Posts
    5
    Thanks G/R
    2/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Few more things for the radar:

    ACT3 - Jungle Ruins (Corpse Quest)

    Code:
      "G3_3": {
        "Metadata/Terrain/Jungle/JungleExterior/Feature/StMW_KuamShrine_01.tdtx:1-y:2": "Ravaged Corpse"
      }
    ACT3 - Temple of Kopec Stairs

    Code:
      "G3_12": {
        "Metadata/Terrain/Dungeon/Ziggurat/ziggurat_outerwall_end_stairsup_01.tdtx:2-y:1": "Stairs Up",
        "Metadata/Terrain/Dungeon/Ziggurat/ziggurat_outerwall_end_stairsup_01.tdtx:1-y:1": "Stairs Up"
      }
    For the life of me, I can't figure out the paths for the exquisite idols' dungeons in Utzaal. If someone has time to find these, it'd be great.

  14. Thanks mksilva, Leonkun (2 members gave Thanks to cupkax for this useful post)
  15. #628
    lenoli95's Avatar Member
    Reputation
    1
    Join Date
    Jul 2019
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by GameHelper View Post
    You can append delay component to any condition by pressing the add component button. This delay component ensures that the truthfulness of the condition is delay by the value set by you. For example if you got a condition that says there are 5 monster around you, adding a 5 sec delay component to it would ensures there are 5 monsters around you for atleast 5 seconds before the condition yield true.
    fe67d96b-d8a9-4c83-b642-dd1118b6e7f9(1).pngThanks, I have set it up

  16. #629
    BobbyBFree's Avatar Member
    Reputation
    1
    Join Date
    May 2022
    Posts
    5
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone here try setting up icons for Sanctum? I'm trying to have the death crystals show up on the map, but I can't get them to show. I put the full path in the special monster tracker and the special objects just in case. Could very well be user error, but wanted to ask. Screenshot 2025-01-08 203529.png Screenshot 2025-01-08 203638.png

  17. #630
    monka2's Avatar Member
    Reputation
    1
    Join Date
    Jan 2025
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    is it detectable? I am afraid of getting banned soon after I will start to use it. What is your all experience? Was someone ever banned for this tool in poe2 or in poe1 (other version)?
    Last edited by monka2; 01-08-2025 at 09:44 PM. Reason: extra question

Page 42 of 61 FirstFirst ... 383940414243444546 ... LastLast

Similar Threads

  1. [Trading] my CS:GO beta invite for PoE beta key
    By SLOWLLY in forum General Trading Buy Sell Trade
    Replies: 1
    Last Post: 08-20-2012, 09:06 AM
  2. [Trading] trading Molten-wow Premium acc for PoE key
    By blackhorn1233 in forum World of Warcraft Buy Sell Trade
    Replies: 0
    Last Post: 08-01-2012, 02:37 AM
  3. [Trading] d3 account for poe beta key
    By ffs910 in forum Diablo 3 Buy Sell Trade
    Replies: 1
    Last Post: 07-31-2012, 12:15 AM
  4. [Trading] The Secret World Pre-Order Key for PoE Closed Beta Key
    By Duplicity in forum General MMO Buy Sell Trade
    Replies: 2
    Last Post: 04-05-2012, 08:12 AM
  5. [Trading] Firefall beta invites for PoE keys.
    By forzakenus in forum General MMO Buy Sell Trade
    Replies: 0
    Last Post: 04-04-2012, 01:12 PM
All times are GMT -5. The time now is 07:46 PM. 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