PoEHUD - Overlay for Path of Exile (Updated for 3.0) menu

User Tag List

Page 203 of 297 FirstFirst ... 103153199200201202203204205206207253 ... LastLast
Results 3,031 to 3,045 of 4452
  1. #3031
    Dwarvenlord's Avatar Member
    Reputation
    1
    Join Date
    Oct 2018
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have set up a limited user on a friends machine, so he too can play POE with the HUD. Mine works fine with a runas shortcut.

    Whenever I try the shortcut on his machine, the game throws a cannot open content.ggpk and crashes. I have set the properties on the directory and all sub files for access by the limited user.
    I have tried pointing the shortcut to both Client.exe and PathOfExile_x64.exe, neither works
    I have tried renaming content.ggpk to see if the game will rebuild it, and that has no effect.

    Now the kicker is that if I shift + right click the exe program and choose run as another user, I can put in the credentials and it works fine. It seems that there is something going on with the shortcut, even though it is identical to mine. (exvept the path to the exe and the start in directory)

    Anyone have any thoughts?

    PoEHUD - Overlay for Path of Exile (Updated for 3.0)
  2. #3032
    antitank's Avatar Banned
    Reputation
    4
    Join Date
    Sep 2018
    Posts
    27
    Thanks G/R
    10/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Dwarvenlord View Post
    I have set up a limited user on a friends machine, so he too can play POE with the HUD. Mine works fine with a runas shortcut.

    Whenever I try the shortcut on his machine, the game throws a cannot open content.ggpk and crashes. I have set the properties on the directory and all sub files for access by the limited user.
    I have tried pointing the shortcut to both Client.exe and PathOfExile_x64.exe, neither works
    I have tried renaming content.ggpk to see if the game will rebuild it, and that has no effect.

    Now the kicker is that if I shift + right click the exe program and choose run as another user, I can put in the credentials and it works fine. It seems that there is something going on with the shortcut, even though it is identical to mine. (exvept the path to the exe and the start in directory)

    Anyone have any thoughts?
    same issue. i just settled for using shift right click. not that much of a hassle to do it that way.

  3. #3033
    levelmax's Avatar Member
    Reputation
    10
    Join Date
    Dec 2016
    Posts
    39
    Thanks G/R
    260/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Dwarvenlord View Post
    I have set up a limited user on a friends machine, so he too can play POE with the HUD. Mine works fine with a runas shortcut.

    Whenever I try the shortcut on his machine, the game throws a cannot open content.ggpk and crashes. I have set the properties on the directory and all sub files for access by the limited user.
    I have tried pointing the shortcut to both Client.exe and PathOfExile_x64.exe, neither works
    I have tried renaming content.ggpk to see if the game will rebuild it, and that has no effect.

    Now the kicker is that if I shift + right click the exe program and choose run as another user, I can put in the credentials and it works fine. It seems that there is something going on with the shortcut, even though it is identical to mine. (exvept the path to the exe and the start in directory)

    Anyone have any thoughts?
    Did you try this?
    https://www.ownedcore.com/forums/mmo...ml#post3945846 (Run PoE as a limited user)

  4. #3034
    TehCheat's Avatar ★ Elder ★
    Reputation
    2564
    Join Date
    Oct 2013
    Posts
    1,900
    Thanks G/R
    349/2266
    Trade Feedback
    5 (100%)
    Mentioned
    32 Post(s)
    Tagged
    1 Thread(s)
    That was my first hunch, that the shortcut was created with the old shortcut text for the limited user method instead of the new runas with the cmd call.

    Bad:
    Code:
    C:\Windows\System32\runas.exe /user:YOURNAME  /savecred "C:\Program Files (x86)\Grinding Gear Games\Path of Exile\PathOfExile_x64.exe"
    Good:
    Code:
    C:\Windows\System32\runas.exe /user:YOURNAME /savecred "cmd /C cd \"C:/Program Files (x86)/Grinding Gear Games/Path of Exile/\" && PathOfExile_x64.exe"

  5. #3035
    kisapl's Avatar Member
    Reputation
    1
    Join Date
    Mar 2013
    Posts
    32
    Thanks G/R
    4/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TehCheat View Post
    That was my first hunch, that the shortcut was created with the old shortcut text for the limited user method instead of the new runas with the cmd call.

    Bad:
    Code:
    C:\Windows\System32\runas.exe /user:YOURNAME  /savecred "C:\Program Files (x86)\Grinding Gear Games\Path of Exile\PathOfExile_x64.exe"
    Good:
    Code:
    C:\Windows\System32\runas.exe /user:YOURNAME /savecred "cmd /C cd \"C:/Program Files (x86)/Grinding Gear Games/Path of Exile/\" && PathOfExile_x64.exe"
    Its not working in other drive?
    lets say my user name is 222 and poe exe location is E:/POE/
    C:\Windows\System32\runas.exe /user:222 /savecred "cmd /C cd "E:/POE/" && PathOfExile_x64.exe"
    This shortcut gives me cmd windows for 1 sec and its disappear. I cant even enter password. What im doing wrong?

  6. #3036
    TehCheat's Avatar ★ Elder ★
    Reputation
    2564
    Join Date
    Oct 2013
    Posts
    1,900
    Thanks G/R
    349/2266
    Trade Feedback
    5 (100%)
    Mentioned
    32 Post(s)
    Tagged
    1 Thread(s)
    Originally Posted by kisapl View Post
    Its not working in other drive?
    lets say my user name is 222 and poe exe location is E:/POE/
    C:\Windows\System32\runas.exe /user:222 /savecred "cmd /C cd "E:/POE/" && PathOfExile_x64.exe"
    This shortcut gives me cmd windows for 1 sec and its disappear. I cant even enter password. What im doing wrong?
    Probably because it's changing drives. You're also missing a '\' before each of the quotes inside the larger quote string.
    For example
    Code:
    cd "E:/POE/"
    should be
    Code:
    cd \"E:/POE/\"
    But again, it's changing drives, so you might need to something like
    Code:
    C:\Windows\System32\runas.exe /user:222 /savecred "cmd /C e: && cd \"E:/POE/\" && PathOfExile_x64.exe"
    Or you could use a batch (.bat) file to get it to do things properly.
    Last edited by TehCheat; 10-29-2018 at 02:22 PM.

  7. #3037
    antitank's Avatar Banned
    Reputation
    4
    Join Date
    Sep 2018
    Posts
    27
    Thanks G/R
    10/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    After some digging around content.ggpk, I have managed to find and include lightning mirage's spawns in monster_names_alerts.txt Metadata/Monsters/Clone;CLONE CLONE CLONE;;;ms-purple-gray.png Metadata/Monster - Pastebin.com
    Where in ggpk can i find the nemesis mods exact names for use in monster_mod_alerts.txt?

  8. #3038
    kisapl's Avatar Member
    Reputation
    1
    Join Date
    Mar 2013
    Posts
    32
    Thanks G/R
    4/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TehCheat View Post
    Probably because it's changing drives. You're also missing a '\' before each of the quotes inside the larger quote string.
    For example
    Code:
    cd "E:/POE/"
    should be
    Code:
    cd \"E:/POE/\"
    But again, it's changing drives, so you might need to something like
    Code:
    C:\Windows\System32\runas.exe /user:222 /savecred "cmd /C e: && cd \"E:/POE/\" && PathOfExile_x64.exe"
    Or you could use a batch (.bat) file to get it to do things properly.
    Thank you for helping but im still cant get it working. I will stay with shift rmb method

  9. #3039
    TehCheat's Avatar ★ Elder ★
    Reputation
    2564
    Join Date
    Oct 2013
    Posts
    1,900
    Thanks G/R
    349/2266
    Trade Feedback
    5 (100%)
    Mentioned
    32 Post(s)
    Tagged
    1 Thread(s)
    Originally Posted by kisapl View Post
    Thank you for helping but im still cant get it working. I will stay with shift rmb method
    In my testing, it didn't seem to like the /savecred on a PC that's on a domain, maybe that's what you're running into. If I remove /savecred and type the limited user's password in each time, it works fine. If I add /savecred, it instantly fails. Not sure why, but I'd be curious if the PC giving you trouble is on a domain. It might also be some weird group policy or something.

  10. #3040
    poe1992's Avatar Member
    Reputation
    4
    Join Date
    Sep 2018
    Posts
    35
    Thanks G/R
    16/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can anyone make a basic version of HUD? My game becomes a bit laggy when I use HUD for a long time. I would like a version with just the function of showing stuffs on the map

  11. #3041
    Leozan's Avatar Contributor
    Reputation
    88
    Join Date
    Nov 2010
    Posts
    23
    Thanks G/R
    4/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by antitank View Post
    After some digging around content.ggpk, I have managed to find and include lightning mirage's spawns in monster_names_alerts.txt Metadata/Monsters/Clone;CLONE CLONE CLONE;;;ms-purple-gray.png Metadata/Monster - Pastebin.com
    Where in ggpk can i find the nemesis mods exact names for use in monster_mod_alerts.txt?
    oh boy, that would be exactly what i need in hardcore, those lightning dudes killed me last league and this league also lvl 96 on hc.
    Another idea for those who still play this league: show valuable fossils like glyphic/bloodstained/faceted/hollow in another colour on the minimap, like the strongbox unique colour.

  12. #3042
    antitank's Avatar Banned
    Reputation
    4
    Join Date
    Sep 2018
    Posts
    27
    Thanks G/R
    10/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Leozan View Post
    oh boy, that would be exactly what i need in hardcore, those lightning dudes killed me last league and this league also lvl 96 on hc.
    Another idea for those who still play this league: show valuable fossils like glyphic/bloodstained/faceted/hollow in another colour on the minimap, like the strongbox unique colour.
    its already fufilled and running by the random features plugin. i edited its images to make them clearer and Fossil_Tiers.json files to tier the fossils to my own preferences.

  13. Thanks Leozan (1 members gave Thanks to antitank for this useful post)
  14. #3043
    mrcreat1ve's Avatar Member
    Reputation
    1
    Join Date
    Mar 2017
    Posts
    35
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi. My preload alert on my strongbox isn’t working. Can I fix it somehow?

  15. #3044
    Leozan's Avatar Contributor
    Reputation
    88
    Join Date
    Nov 2010
    Posts
    23
    Thanks G/R
    4/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by antitank View Post
    its already fufilled and running by the random features plugin. i edited its images to make them clearer and Fossil_Tiers.json files to tier the fossils to my own preferences.
    PERFECT, thanks

  16. #3045
    TehCheat's Avatar ★ Elder ★
    Reputation
    2564
    Join Date
    Oct 2013
    Posts
    1,900
    Thanks G/R
    349/2266
    Trade Feedback
    5 (100%)
    Mentioned
    32 Post(s)
    Tagged
    1 Thread(s)
    Originally Posted by mrcreat1ve View Post
    Hi. My preload alert on my strongbox isn’t working. Can I fix it somehow?
    Your options are:
    1) Time machine to the beginning of the league before they changed how chests are loaded.
    2) Ask Chris to change it back.

    They changed how chests are loaded and it's no longer possible to see strongboxes in preloads.

Similar Threads

  1. [Release] ExileHUD - External overlay for Path of Exile (work in progress)
    By Evozer in forum PoE Bots and Programs
    Replies: 1131
    Last Post: 04-04-2015, 05:14 PM
  2. [Release] PoeHUD - Overlay for Path of Exile
    By Coyl in forum PoE Bots and Programs
    Replies: 1870
    Last Post: 01-27-2015, 02:28 AM
  3. Replies: 0
    Last Post: 07-02-2014, 02:10 AM
  4. [Trading] "Path of Exile Beta Key" for "Diablo 3 Beta Key".
    By BlQ in forum Diablo 3 Buy Sell Trade
    Replies: 4
    Last Post: 03-30-2012, 01:42 AM
  5. [Trading] "Path of Exile Beta Key" for "Diablo 3 Beta Key".
    By Chakl22 in forum General Trading Buy Sell Trade
    Replies: 0
    Last Post: 10-16-2011, 03:15 AM
All times are GMT -5. The time now is 02:07 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