GameHelper for POE 2 menu

User Tag List

Page 16 of 61 FirstFirst ... 121314151617181920 ... LastLast
Results 226 to 240 of 911
  1. #226
    zxcvbn911's Avatar Member
    Reputation
    2
    Join Date
    Jul 2019
    Posts
    11
    Thanks G/R
    28/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by dalnim View Post
    Player health bar is not displayed.
    The author is aware, it's mentioned in the first post. By the way, if you've downloaded previous versions of GH, you can use the HealthBars plugin from those instead. I'm using the one from 8.2.0, and it works just fine

    GameHelper for POE 2
  2. #227
    yangfei9099's Avatar Member
    Reputation
    1
    Join Date
    Jun 2019
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can Big Brother set the opt-out method for automatic logout? For example, automatically pressing ESC to pause the game or automatically exiting to the character selection screen, etc., because I found that pressing esc is safer than automatically logging out of the login screen, especially when you are solo

  3. #228
    brothercreed's Avatar Member
    Reputation
    1
    Join Date
    Jul 2024
    Posts
    5
    Thanks G/R
    3/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    how to add own autohotkey conditions i want to have below code for flammability. its for reagent got it from discord. could anyone help me do same thing for gh. any place where i can find all the list of objects/function calls supported

    SinceLastActivation(1)
    && Monsters(100, MonsterRarity.Magic | MonsterRarity.Rare | MonsterRarity.Unique).Any(monster => monster.IsAlive
    && monster.DistanceToCursor < 20
    && !monster.Buffs.Has("curse_fire_weakness"))

  4. #229
    brothercreed's Avatar Member
    Reputation
    1
    Join Date
    Jul 2024
    Posts
    5
    Thanks G/R
    3/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i am currently using below condition. i want to know how to check distance from the monsters and if they are already affected by the curse. Also i want to know what condition to add to check for corpses.

    PlayerSkillIsUseable.Contains("FlammabilityPlayer") && MonsterCount(MonsterRarity.AtLeastRare, MonsterNearbyZones.OuterCircle) > 1 && PlayerVitals.MANA.CURRENT >= 120

  5. #230
    RealTobi's Avatar Member
    Reputation
    1
    Join Date
    Dec 2024
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello So with me the mini map does not work and NPC are not displayed in the mini map either

  6. #231
    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)
    released a new version with following fixes

    1: fixed a rare crash that may occur after playing 1000 maps..
    2: fixed the taskbar hidden issue (go to setting and then misc setting and click fix taskbar not showing checkbox)
    3: fixed player healthbars...they are now back...
    4: improvement to healthbar rubberbandiing....u have to delete healthbar plugin -> config folder before starting GH in order to receive new and improved config. do backup before deletion.
    ---- issue is still there...this is the best i can do...i think it's the underlying lib/technology i am using...so don't expect a fix anytime soon....hopefully this change would make it better...if not..and you don't like it....restore the backup of your deleted config file.
    Last edited by GameHelper; 12-23-2024 at 12:53 PM.
    If I did not reply to you, it mean the question you are asking is stupid.

  7. Thanks zxcvbn911, AndrewKJ93, WSSANON (3 members gave Thanks to GameHelper for this useful post)
  8. #232
    epuhs's Avatar Member
    Reputation
    1
    Join Date
    Jan 2012
    Posts
    41
    Thanks G/R
    3/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by GameHelper View Post
    released a new version with following fixes

    1: fixed a rare crash that may occur after playing 1000 maps..
    2: fixed the taskbar hidden issue (go to setting and then misc setting and click fix taskbar not showing checkbox)
    3: fixed player healthbars...they are now back...
    4: improvement to healthbar rubberbandiing....u have to delete healthbar plugin -> config folder before starting GH in order to receive new and improved config. do backup before deletion.
    ---- issue is still there...this is the best i can do...i think it's the underlying lib/technology i am using...so don't expect a fix anytime soon....hopefully this change would make it better...if not..and you don't like it....restore the backup of your deleted config file.
    Thanks @GameHelper!

    Quick question, for the AutoHotkey conditions available for PlayerVitals, can you also expose the current Health Regen value? I dont see it available (even though it's in DV) unless I'm being silly and missing it.

  9. #233
    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 epuhs View Post
    Thanks @GameHelper!

    Quick question, for the AutoHotkey conditions available for PlayerVitals, can you also expose the current Health Regen value? I dont see it available (even though it's in DV) unless I'm being silly and missing it.
    Sure, let me check and get back to you, if it’s not exposed, i will expose it.
    If I did not reply to you, it mean the question you are asking is stupid.

  10. Thanks epuhs, AndrewKJ93 (2 members gave Thanks to GameHelper for this useful post)
  11. #234
    lussuria's Avatar Active Member
    Reputation
    17
    Join Date
    Feb 2017
    Posts
    11
    Thanks G/R
    9/11
    Trade Feedback
    1 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    for the monk homeboys.
    Here's how u can check if your bell is castable:
    PlayerBuffs["tempest_bell_combo_tracker_EDD3"].Charges >= 4

    And here are the checks I use for Charged Staff:
    !PlayerBuffs.Has("charged_staff_stack_B385")
    PlayerSkillIsUseable.Contains("ChargedStaffPlayer") -------This is probably useless.
    PlayerBuffs.Has("power_charge")

  12. Thanks GameHelper, KronosQC (2 members gave Thanks to lussuria for this useful post)
  13. #235
    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)
    Edit: nvm me, I am blind
    Last edited by GameHelper; 12-23-2024 at 01:30 PM.
    If I did not reply to you, it mean the question you are asking is stupid.

  14. #236
    zxcvbn911's Avatar Member
    Reputation
    2
    Join Date
    Jul 2019
    Posts
    11
    Thanks G/R
    28/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Not only do the new healthbars look cooler and more natural now, but it also seems like the frame rates have improved. Outstanding!

  15. Thanks GameHelper (1 members gave Thanks to zxcvbn911 for this useful post)
  16. #237
    Eisner's Avatar Member
    Reputation
    2
    Join Date
    Jul 2020
    Posts
    6
    Thanks G/R
    4/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    how did you manage to launch overlay poe2 and gamehelper at the same time?

  17. #238
    diesall's Avatar Contributor
    Reputation
    199
    Join Date
    Jul 2011
    Posts
    211
    Thanks G/R
    1/48
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Is the Escapestate exposed as a condition for ahkhotkeytrigger?

  18. #239
    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 diesall View Post
    Is the Escapestate exposed as a condition for ahkhotkeytrigger?
    i dont think so but should be pretty easy to expose that....


    Originally Posted by Eisner View Post
    how did you manage to launch overlay poe2 and gamehelper at the same time?
    double click both of them??? i dont understand the question...
    If I did not reply to you, it mean the question you are asking is stupid.

  19. #240
    Galavant's Avatar Member
    Reputation
    2
    Join Date
    Dec 2024
    Posts
    1
    Thanks G/R
    3/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Mine is something like that, and it get use when u didnt have charged staff or it expires in 3sec:
    PlayerBuffs["power_charge"].Charges >= 3
    !PlayerBuffs.Has("ChargedStaffPlayer")
    PlayerBuffs["charged_staff_stack_B385"].TimeLeft <= 3

    It counteracts from spamming with every stack.

  20. Thanks ali_ee (1 members gave Thanks to Galavant for this useful post)
Page 16 of 61 FirstFirst ... 121314151617181920 ... 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 05:09 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