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

User Tag List

Page 234 of 351 FirstFirst ... 134184230231232233234235236237238284334 ... LastLast
Results 3,496 to 3,510 of 5265
  1. #3496
    s01099033157's Avatar Member
    Reputation
    1
    Join Date
    Aug 2023
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It's not working properly at this point. When the league starts, does it work normally after the update?

    GameHelper: A light version of PoeHUD/Exile-Api
  2. #3497
    acgreat's Avatar Member
    Reputation
    2
    Join Date
    Jul 2023
    Posts
    18
    Thanks G/R
    4/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Now it works, I'm really using it to practice land reclamation

  3. #3498
    andreluizlpg's Avatar Member
    Reputation
    11
    Join Date
    Aug 2012
    Posts
    49
    Thanks G/R
    4/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey, just a question... there is some functions on flask manager, such as monsters in range, there is a function to work with to use a radius only for flasks?

    Ty and awesome work!

  4. #3499
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    3024
    Join Date
    Jun 2015
    Posts
    3,326
    Thanks G/R
    507/2709
    Trade Feedback
    0 (0%)
    Mentioned
    93 Post(s)
    Tagged
    2 Thread(s)
    Originally Posted by andreluizlpg View Post
    Hey, just a question... there is some functions on flask manager, such as monsters in range, there is a function to work with to use a radius only for flasks?

    Ty and awesome work!
    settings -> Core -> Nearby monster range
    If I did not reply to you, it mean the question you are asking is stupid.

  5. #3500
    SATADDIMA's Avatar Member
    Reputation
    1
    Join Date
    Feb 2022
    Posts
    4
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by GameHelper View Post
    settings -> Core -> Nearby monster range
    Greetings, will the current version v2.0.100 work at the start of the season, or will it be necessary to wait for a hot update from you in the first hours of the start?

  6. #3501
    camapxam's Avatar Active Member
    Reputation
    27
    Join Date
    Nov 2009
    Posts
    319
    Thanks G/R
    262/23
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by SATADDIMA View Post
    Greetings, will the current version v2.0.100 work at the start of the season, or will it be necessary to wait for a hot update from you in the first hours of the start?
    more like days, not hours, he need to play the game too

  7. #3502
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    3024
    Join Date
    Jun 2015
    Posts
    3,326
    Thanks G/R
    507/2709
    Trade Feedback
    0 (0%)
    Mentioned
    93 Post(s)
    Tagged
    2 Thread(s)
    Originally Posted by SATADDIMA View Post
    Greetings, will the current version v2.0.100 work at the start of the season, or will it be necessary to wait for a hot update from you in the first hours of the start?
    wait for a hot update from me in the first hours of the start
    Last edited by GameHelper; 08-16-2023 at 08:05 AM.
    If I did not reply to you, it mean the question you are asking is stupid.

  8. Thanks Forumuser1000 (1 members gave Thanks to GameHelper for this useful post)
  9. #3503
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1448
    Join Date
    Apr 2006
    Posts
    4,009
    Thanks G/R
    296/592
    Trade Feedback
    1 (100%)
    Mentioned
    11 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by SATADDIMA View Post
    Greetings, will the current version v2.0.100 work at the start of the season, or will it be necessary to wait for a hot update from you in the first hours of the start?
    Chances of it working are next to none. There is a ton of work put into trying to make the update process smooth, but they can only do so much.

    The general idea if people are interested... lets say you have a player object that contains your health information. Once you find the object, you can use a debugger (like Cheat Engine) to track down functions that use it. For example...
    Code:
    public void PlayerTakesDamage(Player player)
    {
        player.Health = player.Health - 10;
    }
    You can make a pattern to say "Hey, in the code try and find a function that looks similar to the above." You can look at that function and say "Alright, so this function decreases Player+0x10... so the health value is saved at +0x10" Every time they patch, the location in the code changes... BUT your pattern should find out where it moves. If they add things to the player object too, you can just look at this function and say "Oh, now it lives at +0x20. Thats fine." Now in the case of big updates like patches... maybe they add a new mechanic that you also lose a little mana when you take damage.

    Code:
    public void PlayerTakesDamage(Player player)
    {
        player.Mana = player.Mana - 1;
        player.Health = player.Health - 10;
    }
    Now suddenly your pattern breaks. You try to scan, but it doesn't find anything (or finds way too many things). You have no idea where this is... maybe you can look at an old patch where you know it is and make a new one. Maye you can't and you have to load it up in game and start over.


    If everything runs super smoothly, it could be out day0. But if either of the other two cases happens (which is common in big patches like this), it will take time. Could be hours if its only a few, could be days if its a bunch.

  10. Thanks GameHelper, GlebSmet, shiggykame (3 members gave Thanks to Sychotix for this useful post)
  11. #3504
    andreluizlpg's Avatar Member
    Reputation
    11
    Join Date
    Aug 2012
    Posts
    49
    Thanks G/R
    4/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by GameHelper View Post
    settings -> Core -> Nearby monster range
    I use this radius, but if i put the radius too large to see monsters on minimap, the potions are used too early, i wanna know if there is a expression like "MonsterRadius("value of radius you want")".

  12. #3505
    Cequez's Avatar Member
    Reputation
    3
    Join Date
    Jun 2019
    Posts
    19
    Thanks G/R
    5/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does anyone have a fix if the radar stuttering/lagging behind? Latest version of my nvidia driver.

  13. #3506
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    3024
    Join Date
    Jun 2015
    Posts
    3,326
    Thanks G/R
    507/2709
    Trade Feedback
    0 (0%)
    Mentioned
    93 Post(s)
    Tagged
    2 Thread(s)
    Originally Posted by Cequez View Post
    Does anyone have a fix if the radar stuttering/lagging behind? Latest version of my nvidia driver.
    It’s GGG POE game issue, their new technology isn’t optimized. Wait for them to fix it on their side.


    Originally Posted by andreluizlpg View Post
    I use this radius, but if i put the radius too large to see monsters on minimap
    This radius isn’t used to show monster on minimap. Let me know what I need to change to make sure that isn’t what user think.
    If I did not reply to you, it mean the question you are asking is stupid.

  14. Thanks Cequez (1 members gave Thanks to GameHelper for this useful post)
  15. #3507
    satbuster's Avatar Member
    Reputation
    12
    Join Date
    Oct 2017
    Posts
    79
    Thanks G/R
    20/11
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yay! Ready for another smooth league start. PayPal loaded and ready to go.

  16. #3508
    vlad997602's Avatar Member
    Reputation
    1
    Join Date
    Apr 2023
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey, can you tell me please, can i move camera far or closer with this hud? All other huds appear to have this function, but here i didnt find

  17. #3509
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    3024
    Join Date
    Jun 2015
    Posts
    3,326
    Thanks G/R
    507/2709
    Trade Feedback
    0 (0%)
    Mentioned
    93 Post(s)
    Tagged
    2 Thread(s)
    ==uploaded a new version==

    * AHK stopped spamming keys when chat is active. So now if chat is active, AHK won't trigger any flasks/skills but auto-quit still works. So don't start chatting while near uber uber elder in SSF+HC+Ruthless mode.

    * added a template for IsKeyPressedForAction
    If I did not reply to you, it mean the question you are asking is stupid.

  18. Thanks c4gRi, Hidi (2 members gave Thanks to GameHelper for this useful post)
  19. #3510
    c4gRi's Avatar Member
    Reputation
    1
    Join Date
    Oct 2007
    Posts
    29
    Thanks G/R
    8/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by GameHelper View Post
    ==uploaded a new version==

    * AHK stopped spamming keys when chat is active. So now if chat is active, AHK won't trigger any flasks/skills but auto-quit still works. So don't start chatting while near uber uber elder in SSF+HC+Ruthless mode.

    * added a template for IsKeyPressedForAction

    thats fucking nice, thank you

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 12:19 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