GameHelper for POE 2 menu

User Tag List

Page 60 of 61 FirstFirst ... 10565758596061 LastLast
Results 886 to 900 of 911
  1. #886
    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)
    Originally Posted by Repsolhonda View Post
    Appreciate the reply mate.
    I can run as different user, but I opened process manager>users, and both steam and poe2 are running under the main account, so I tried to run steam then poe2 under the dummy account but it still loads up in process manager under the main.
    I've also stopped steam on startup through windows then redid the process above but to no avail.

    Any ideas why that would be happening ?
    Heres a script for you as I am also running poe2 via steam -
    Code:
    @echo off
    SETLOCAL
    color 3f
    
    SET run_as=C:\Windows\System32\runas.exe
    
    REM Name of the local user account you are having launch the EXE
    SET local_user=guest
    
    SET exe_name=PathOfExile_x64Steam.exe
    SET exe_name1=steam.exe
    
    SET exe_params=--nologo
    
    REM Keep in mind because of strange reasons this one must have / instead of \
    SET exe_path=D:/Program Files/Steam/steamapps/common/Path of Exile 2
    SET exe_path1=D:/Program Files/Steam/
    REM Make sure to change this drive letter if not on D: drive
    CD D:
    echo ===============================
    ECHO "launching steam"
    echo ===============================
    echo.
    tasklist | findstr /i "steam.exe" && taskkill /f /im steam.exe
    IF NOT "%ERRORLEVEL%"=="0" START %run_as% /user:%local_user% /savecred "cmd /C cd /D \"%exe_path1%\" && Start /high %exe_name1%"
    
    ECHO "wait for steam to launch"
    pause
    echo.
    echo ===============================
    ECHO "launching poe"
    echo ===============================
    echo.
    REM launching POE once steam is fully loaded
    TASKLIST /fi "IMAGENAME eq %exe_name%" 2>NUL | FIND /I /N "%exe_name%">NUL
    IF NOT "%ERRORLEVEL%"=="0" START %run_as% /user:%local_user% /savecred "cmd /C cd /D \"%exe_path%\" && Start /high %exe_name%"
    
    echo "please wait for poe to launch"
    pause
    
    echo ===============================
    ECHO "launching helper"
    echo ===============================
    timeout 45 /nobreak 
    pushd C:\path\to\gamehelper
    gamehelper.exe

    GameHelper for POE 2
  2. #887
    Repsolhonda's Avatar Member
    Reputation
    1
    Join Date
    Feb 2025
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by suzimia View Post
    Heres a script for you as I am also running poe2 via steam -
    Code:
    @echo off
    SETLOCAL
    color 3f
    
    SET run_as=C:\Windows\System32\runas.exe
    
    REM Name of the local user account you are having launch the EXE
    SET local_user=guest
    
    SET exe_name=PathOfExile_x64Steam.exe
    SET exe_name1=steam.exe
    
    SET exe_params=--nologo
    
    REM Keep in mind because of strange reasons this one must have / instead of \
    SET exe_path=D:/Program Files/Steam/steamapps/common/Path of Exile 2
    SET exe_path1=D:/Program Files/Steam/
    REM Make sure to change this drive letter if not on D: drive
    CD D:
    echo ===============================
    ECHO "launching steam"
    echo ===============================
    echo.
    tasklist | findstr /i "steam.exe" && taskkill /f /im steam.exe
    IF NOT "%ERRORLEVEL%"=="0" START %run_as% /user:%local_user% /savecred "cmd /C cd /D \"%exe_path1%\" && Start /high %exe_name1%"
    
    ECHO "wait for steam to launch"
    pause
    echo.
    echo ===============================
    ECHO "launching poe"
    echo ===============================
    echo.
    REM launching POE once steam is fully loaded
    TASKLIST /fi "IMAGENAME eq %exe_name%" 2>NUL | FIND /I /N "%exe_name%">NUL
    IF NOT "%ERRORLEVEL%"=="0" START %run_as% /user:%local_user% /savecred "cmd /C cd /D \"%exe_path%\" && Start /high %exe_name%"
    
    echo "please wait for poe to launch"
    pause
    
    echo ===============================
    ECHO "launching helper"
    echo ===============================
    timeout 45 /nobreak 
    pushd C:\path\to\gamehelper
    gamehelper.exe
    Cheers mate,
    My poe2 is on D drive.

    So I copypaste this directly into CMD and it should work ? Do I need to edit any of the code for it to work ? eg, usernames etc

  3. #888
    kastorsigmund's Avatar Member
    Reputation
    1
    Join Date
    Mar 2019
    Posts
    17
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    2nd EDIT: Apparently this was with just a few maps. Seems to work now.

    Anyone else having an issue with tempest bell charges not reporting correctly? This line from the player status effects dump:

    tempest_bell_combo_tracker_EDD3 BuffDefinationPtr: 1EA419C6E5C Total Time: ∞ Time Left: ∞ Entity Id: 1107 Charges: 2 Flask Slot: -1 Effectiveness: 100 (raw: 0) UnknownIdAndEquipmentInfo: EDD380C1

    The key number being Charges: 2. Up until about 10 hours ago, I had tempest bell set to trigger on at least rare within inner circle and 4 bell charges. Worked well.
    PlayerBuffs["tempest_bell_combo_tracker_EDD3"].Charges >= 4 && MonsterCount(MonsterRarity.AtLeastRare, MonsterNearbyZones.InnerCircle) > 0

    For some reason today, either GH is not reading the charges correctly, or the game is not reporting them in the same way that GH expects. Live viewing in the data visualizer shows Charges is always 2. As always I can manually trigger the bell in game with 4 charges shown on the skill button.

    Edit: Is there another way of triggering the bell without GH reading charges from player status? I tried deleting that condition or reducing it to Charges: 2. But then GH spams the bell key endlessly because all conditions are true.

    Thank you for maintaining this wonderful project and even more thanks for keeping it free.
    Last edited by kastorsigmund; 02-02-2025 at 03:09 AM.

  4. #889
    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
    Ok, so lets say my mana is set to trigger at 40% with 500 ms cool down or whatever, now when i cast mana tempest it drains my mana really quick a little over a second and it is all gone, but since i have it set to 40, it triggers and because i have melting maelstrom flask my mana is fully restored, but i am still spamming my attacks inside the mana tempest circle, so it starts draining real quick. However this time it doesnt trigger the flask even though it is below 40 and regardless of what the cooldown is even if it is set to 0, it doesnt trigger. What should happen is, once it hits 40% mana again, it should trigger and repeat factoring in the cooldown. Now i tested another app and it works the way i am talking about, however it doesn't seem to be working for me that i am describing with this app, but i am sure it could be done.

    I did some more testing and this is weird, if i load up my merc character the mana and the cooldown works fine, when i spam my attacks and the mana hits the trigger point, it will use the mana based on my trigger and cooldown points; however, it doesn't work for my stormweaver. I basically do the same test, but it will only trigger properly the first time. Can anyone else with the stormweaver do this test as well?
    I think you are saying something else and doing something else, please share your condition in screenshot.
    If I did not reply to you, it mean the question you are asking is stupid.

  5. #890
    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 GameHelper View Post
    I think you are saying something else and doing something else, please share your condition in screenshot.
    Ok, not exactly sure if this is what you wanted, i couldnt insert an image, so i uploaded it to here.

    Screenshot (139) — Postimages

    This is the default 11.10 version i downloaded, the only things i changed in the mana section was xbutton2 and cooldown to .500. Now as i mentioned in my test. This app is working fine when i tested it under my merc witchhunter build, it will use the mana at 30% and the cooldown works. However, when i do the same test with my stormweaver. The mana will only trigger the first time at the set point and then it does not spam the mana again regardless of the cooldown or the set point.

    Also with the stormweaver, i tested using a more normal mana pot and the melting maelstrom and the issue is still present.
    Last edited by whywasibanned; 02-02-2025 at 10:26 AM.

  6. #891
    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
    Ok, not exactly sure if this is what you wanted, i couldnt insert an image, so i uploaded it to here.

    Screenshot (139) — Postimages

    This is the default 11.10 version i downloaded, the only things i changed in the mana section was xbutton2 and cooldown to .500. Now as i mentioned in my test. This app is working fine when i tested it under my merc witchhunter build, it will use the mana at 30% and the cooldown works. However, when i do the same test with my stormweaver. The mana will only trigger the first time at the set point and then it does not spam the mana again regardless of the cooldown or the set point.

    Also with the stormweaver, i tested using a more normal mana pot and the melting maelstrom and the issue is still present.
    Looking at the screenshot, I was correct. U have 3 checks and a cooldown in your condition and you are only stating the 40% check in your first msg in this thread. I would recommend playing with your 3 checks and see which one is causing issues.

    Your first check is saying only drink flask when your mana is X%.

    And

    Your second check is saying only drink flask when flask effect is not available on the exile ( I.e. flask isn’t active ).

    And

    Your third check is saying only drink flask when it has enough charges.


    P.S: this is where I will stop, as far as I understand, there is nothing wrong with GH, it’s working as expected. It’s an issue with your condition. I try to not help in that since then ppl expect me to be master of every build and every flask and help them creating conditions. This is a very unrealistic demand/expectations ( even GGG employees aren’t the master of build/items of their own game ) because in poe there are infinite build/combos.
    Last edited by GameHelper; 02-02-2025 at 11:54 AM.
    If I did not reply to you, it mean the question you are asking is stupid.

  7. Thanks whywasibanned (1 members gave Thanks to GameHelper for this useful post)
  8. #892
    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)
    [QUOTE=GameHelper;4541491]Looking at the screenshot, I was correct. U have 3 checks and a cooldown in your condition and you are only stating the 40% check in your first msg in this thread. I would recommend playing with your 3 checks and see which one is causing issues.

    Your first check is saying only drink flask when your mana is X%.

    And

    Your second check is saying only drink flask when flask effect is not available on the exile ( I.e. flask isn’t active ).

    And

    Your third check is saying only drink flask when it has enough charges.

    Ok, thx for the help, issue has been resolved, i had to delete the last 2 condition and it did the trick. To be fair, i never added in those conditions, they are already added to the mana conditions when i downloaded the file and i don't really know much about the coding stuff. So when it worked for the merc, i figured it should work for the sorc as well. Either way thanks for taking the time to resolve this issue!

  9. #893
    Romot's Avatar Member
    Reputation
    1
    Join Date
    Jan 2024
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey im not sure if this has been asked, iv only recently come back. Is GH working for poe 1 settlers restart league?

  10. #894
    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 Romot View Post
    Hey im not sure if this has been asked, iv only recently come back. Is GH working for poe 1 settlers restart league?
    Nope….i don’t have any plans of updating it until ggg releases 3.26. Also source code is available if anyone else wanna update it.


    Before ggg release 3.26…I have the long and tedious task of merging poe2 GH with poe1 GH in such a way that there is only 1 GH that works with both poe1 and 2….
    Last edited by GameHelper; 02-03-2025 at 12:19 PM.
    If I did not reply to you, it mean the question you are asking is stupid.

  11. #895
    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)
    Is it possible to change when the health or mana pot triggers through the App's UI or it has to be through the settings.txt file?

  12. #896
    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
    Is it possible to change when the health or mana pot triggers through the App's UI or it has to be through the settings.txt file?
    I do not understand the question….
    If I did not reply to you, it mean the question you are asking is stupid.

  13. #897
    Romot's Avatar Member
    Reputation
    1
    Join Date
    Jan 2024
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by GameHelper View Post
    Nope….i don’t have any plans of updating it until ggg releases 3.26. Also source code is available if anyone else wanna update it.


    Before ggg release 3.26…I have the long and tedious task of merging poe2 GH with poe1 GH in such a way that there is only 1 GH that works with both poe1 and 2….
    alright mate, cheers!

  14. #898
    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 GameHelper View Post
    I do not understand the question….
    Ok, so just say i have my mana to trigger at 40% and i want to change it to 50, can i do it through the app UI, like i see the condition value, but i can't edit it. The only way i can change the value is if i shut down gamehelper and go to the plugins autohotkey config folder and edit the setting.txt file to 50 or whatever i want and then reload the app.

  15. #899
    mhoks'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 autoflashk keybind for controller ?

  16. #900
    AngryBeavers's Avatar Member
    Reputation
    5
    Join Date
    Jul 2021
    Posts
    23
    Thanks G/R
    7/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by whywasibanned View Post
    Ok, so just say i have my mana to trigger at 40% and i want to change it to 50, can i do it through the app UI, like i see the condition value, but i can't edit it. The only way i can change the value is if i shut down gamehelper and go to the plugins autohotkey config folder and edit the setting.txt file to 50 or whatever i want and then reload the app.
    1. Open plugin
    2. Select correct profile
    3. Modify conditions
    Screenshot

  17. Thanks whywasibanned (1 members gave Thanks to AngryBeavers for this useful post)

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 04:49 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