PoEHUD Overlay Updated menu

User Tag List

Page 263 of 461 FirstFirst ... 163213259260261262263264265266267313363 ... LastLast
Results 3,931 to 3,945 of 6913
  1. #3931
    jonasgm1's Avatar Member
    Reputation
    2
    Join Date
    Oct 2015
    Posts
    5
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Still not work on client

    PoEHUD Overlay Updated
  2. #3932
    bcz's Avatar Contributor
    Reputation
    172
    Join Date
    Apr 2008
    Posts
    172
    Thanks G/R
    8/140
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by vmv View Post
    Can you post on paste bin all the loaded text files when a remnant is nearby...i can't find any ...2h past and not a single one.
    here's how I detect them, just replace the "CheckForPreload(text);" line with this
    Code:
                    if (text.ToLower().Contains("metadata/monsters/daemon/essencedaemon")) { essencefound = true; }
                    if (text.ToLower().Contains("minimonolith")) { minimono = true; }
                    CheckForPreload(text);
                }
                if ((minimono == true) && (essencefound == false))
                {
                    alerts.Add(new PreloadConfigLine { Text = "Remnant of Corruption", FastColor = () => new ColorBGRA(255, 255, 55, 255) });
                }
    also define minimono and essencefound at the top
    Code:
            private bool minimono = false;
            private bool essencefound = false;
    As I've been saying, even if I give you the names of the files associated with Remnants of Corruption it won't help because those files are the same ones used for other essences that aren't remnants... so you'd have to use this code to see if any of those "general essence files" are loaded while none of the "essence specific" ones are, in which case they must belong to the "undefined" Remnant of Corruption... unless of course there really is a file out there somewhere that is specific to remnants but after hours of testing I've concluded that there isn't.

  3. Thanks killerng1703 (1 members gave Thanks to bcz for this useful post)
  4. #3933
    bcz's Avatar Contributor
    Reputation
    172
    Join Date
    Apr 2008
    Posts
    172
    Thanks G/R
    8/140
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by jonasgm1 View Post
    Still not work on client
    typically they will need more details than that if you're hoping for help with your problem

  5. #3934
    vmv's Avatar ★ Elder ★
    Reputation
    1196
    Join Date
    Nov 2013
    Posts
    1,397
    Thanks G/R
    103/1053
    Trade Feedback
    0 (0%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bcz View Post
    here's how I detect them, just replace the "CheckForPreload(text);" line with this
    Code:
                    if (text.ToLower().Contains("metadata/monsters/daemon/essencedaemon")) { essencefound = true; }
                    if (text.ToLower().Contains("minimonolith")) { minimono = true; }
                    CheckForPreload(text);
                }
                if ((minimono == true) && (essencefound == false))
                {
                    alerts.Add(new PreloadConfigLine { Text = "Remnant of Corruption", FastColor = () => new ColorBGRA(255, 255, 55, 255) });
                }
    also define minimono and essencefound at the top
    Code:
            private bool minimono = false;
            private bool essencefound = false;
    As I've been saying, even if I give you the names of the files associated with Remnants of Corruption it won't help because those files are the same ones used for other essences that aren't remnants... so you'd have to use this code to see if any of those "general essence files" are loaded while none of the "essence specific" ones are, in which case they must belong to the "undefined" Remnant of Corruption... unless of course there really is a file out there somewhere that is specific to remnants but after hours of testing I've concluded that there isn't.
    It doesn't work always...it gives false reports.

  6. #3935
    bcz's Avatar Contributor
    Reputation
    172
    Join Date
    Apr 2008
    Posts
    172
    Thanks G/R
    8/140
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by vmv View Post
    It doesn't work always...it gives false reports.
    100% accurate for me. I go after every one that shows up too. Maybe someone else can try.

  7. #3936
    vmv's Avatar ★ Elder ★
    Reputation
    1196
    Join Date
    Nov 2013
    Posts
    1,397
    Thanks G/R
    103/1053
    Trade Feedback
    0 (0%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bcz View Post
    100% accurate for me. I go after every one that shows up too. Maybe someone else can try.
    Can you detect this too ? :


    I can't ..no matter the code, it doesn't show up.

  8. #3937
    arbujack's Avatar Member
    Reputation
    1
    Join Date
    May 2015
    Posts
    9
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I started using poe hud two days ago and everything is fine. Gj TehCheat, I'm going to donate you as soon as I get some money.

  9. #3938
    randompoeplayer's Avatar Member
    Reputation
    1
    Join Date
    Sep 2016
    Posts
    7
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hi can someone tell me if ill get banned for creating a lot instances trying to find masters/essences/diviners?

  10. #3939
    shuv1t's Avatar Member
    Reputation
    1
    Join Date
    Sep 2016
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by randompoeplayer View Post
    hi can someone tell me if ill get banned for creating a lot instances trying to find masters/essences/diviners?
    I guess there is always a chance, but to be anecdotal about it I've spammed instances a lot in this game and haven't even gotten a warning. -if- you are detected it's much more likely that GGG will send you an email and ask you to stop, not just outright ban you.

  11. #3940
    randompoeplayer's Avatar Member
    Reputation
    1
    Join Date
    Sep 2016
    Posts
    7
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by shuv1t View Post
    I guess there is always a chance, but to be anecdotal about it I've spammed instances a lot in this game and haven't even gotten a warning. -if- you are detected it's much more likely that GGG will send you an email and ask you to stop, not just outright ban you.
    thank you, found like 5 diviners in 30 mins feels awesome.

  12. #3941
    chonic's Avatar Member
    Reputation
    8
    Join Date
    Mar 2009
    Posts
    50
    Thanks G/R
    8/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by randompoeplayer View Post
    thank you, found like 5 diviners in 30 mins feels awesome.
    Which zone are you farming for diviners?

  13. #3942
    randompoeplayer's Avatar Member
    Reputation
    1
    Join Date
    Sep 2016
    Posts
    7
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by chonic View Post
    Which zone are you farming for diviners?
    any zone works,i go for the ones with better cards and roll cards from current location.

  14. #3943
    shuv1t's Avatar Member
    Reputation
    1
    Join Date
    Sep 2016
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by chonic View Post
    Which zone are you farming for diviners?
    coast <-> mud flats is really good, scour alch and chaos the diviners till they give additional from current area + preferably additional corrupted + quantity / additional items = pride before the fall cards. I farmed 3 kaoms in like 5 hours

    belly 1 <-> belly 2 also works for The Hunger = Taste of Hate, but these zones don't get as many diviners as coast and mud flats

  15. #3944
    Stompaphana's Avatar Member
    Reputation
    1
    Join Date
    Sep 2016
    Posts
    16
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is it safe to spam instances though? I remember way back you used to get banned for it.

  16. #3945
    Exclude's Avatar Member
    Reputation
    1
    Join Date
    Sep 2016
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Installed the version from your signature and on launch I get this error

    PoEHUD Overlay Updated-b80923871a7e10e6e754de9d3e0d401a-png

    Any ideas what I need to do?

Similar Threads

  1. [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
  2. [Tool] Exp per hour overlay (needs offset update)
    By moustache in forum PoE Bots and Programs
    Replies: 15
    Last Post: 11-08-2013, 09:00 PM
  3. Site updates 6/19/2006
    By Matt in forum OC News
    Replies: 1
    Last Post: 06-19-2006, 08:48 AM
  4. Updated(FuxxoZ|WoWGlider)
    By ih8blizz in forum World of Warcraft Bots and Programs
    Replies: 22
    Last Post: 06-16-2006, 09:24 PM
  5. New Update on the Patch!
    By Dwarpy in forum World of Warcraft General
    Replies: 1
    Last Post: 05-22-2006, 12:50 AM
All times are GMT -5. The time now is 11:17 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