PoEHUD Overlay Updated menu

Shout-Out

User Tag List

Page 357 of 461 FirstFirst ... 257307353354355356357358359360361407457 ... LastLast
Results 5,341 to 5,355 of 6913
  1. #5341
    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 xxsevernajaxx View Post
    I'll see if I can figure it out, its hidden on the ground though, so neversink doesn't display it. Ill have a look at it tomorrow and see if I can fix it and also take a picture of what it looks like. Would be nice if it could be solved on the hud side since neversink always uses the same logic for his filters and in my opinion thats the best filter
    link me the item + the filter you are using ( on which it's hidden on the ground and not on the HUD ).
    If I did not reply to you, it mean the question you are asking is stupid.

    PoEHUD Overlay Updated
  2. #5342
    xxsevernajaxx's Avatar Member
    Reputation
    7
    Join Date
    Mar 2011
    Posts
    76
    Thanks G/R
    4/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by zaafar View Post
    link me the item + the filter you are using ( on which it's hidden on the ground and not on the HUD ).
    here is a picture of some, but not all items where the bug occurs:

    PoEHUD Overlay Updated-unbenannt-gif

    leather belt ilvl 80 -> shown on map and hud because its a chancing base -> correct
    rustic sash ilvl 78 -> hidden on map, shown on hud -> incorrect
    rustic sash ilvl 78 -> hidden on map, shown on hud -> incorrect
    studded belt ilvl 78 -> hidden on map, shown on hud -> incorrect
    turquois amulet ilvl 78 -> hidden on map, shown on hud -> incorrect

    those are only examples, it applies to almost all jewellry/accessory

    link to the filter: Releases * NeverSinkDev/NeverSink-Filter * GitHub
    very strict version
    Last edited by xxsevernajaxx; 04-01-2017 at 09:09 AM.

  3. #5343
    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 TehCheat View Post
    HUD had a virus, so if you've downloaded it in the last couple of days, I'd do a full system scan to make sure you're clean. Zaafar was the one who built the exe. No idea if he intended it to be malicious, all I've got is facts. He built the exe and virus scanners don't like it. I rebuilt the exe on my system and scanned it and it came back clean.

    I've removed the external plugins from the project, as well. Someone should maintain these on the side in their own repository. I have rebuilt the exe on the x64 branch. He also built the Garena 64 bit version a couple of days ago, as well, so if you're using that, I'd scan it to make sure it's clean.

    I've removed him as a collaborator. All exe builds will go through me from now on.
    Just for the wider audience: it wasn't my exe/my fault. it was poehud-master exe so I would suggest don't use x32 bit version for now ( until tehcheat updates it ).
    Source: Virus detected - Generik.Trojan ? * Issue #113 * TehCheat/PoEHUD * GitHub (last post)


    Originally Posted by HvC View Post
    Id love to get my hands on one of the infected executables, if you could shoot me one of those TehCheat that'd be great.
    So the correct exe you are looking for is in poehud master branch.

    Originally Posted by xxsevernajaxx View Post
    here is a picture of some, but not all items where the bug occurs:
    leather belt ilvl 80 -> shown on map and hud because its a chancing base -> correct
    rustic sash ilvl 78 -> hidden on map, shown on hud -> incorrect
    rustic sash ilvl 78 -> hidden on map, shown on hud -> incorrect
    studded belt ilvl 78 -> hidden on map, shown on hud -> incorrect
    turquois amulet ilvl 78 -> hidden on map, shown on hud -> incorrect

    those are only examples, it applies to almost all jewellry/accessory

    link to the filter: Releases * NeverSinkDev/NeverSink-Filter * GitHub
    very strict version
    okay, let me debug it and i will tell you the issue/fixes.



    P.S
    Those who still wanna use Inventory Preview and Maps Exchange plugins u can download them from my repo.
    GitHub - zaafar/poehud_mapsexchange
    GitHub - zaafar/poehud_inventorypreview
    Last edited by GameHelper; 04-01-2017 at 03:04 PM.
    If I did not reply to you, it mean the question you are asking is stupid.

  4. Thanks toadskin (1 members gave Thanks to GameHelper for this useful post)
  5. #5344
    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 xxsevernajaxx View Post
    here is a picture of some, but not all items where the bug occurs:

    PoEHUD Overlay Updated-unbenannt-gif

    leather belt ilvl 80 -> shown on map and hud because its a chancing base -> correct
    rustic sash ilvl 78 -> hidden on map, shown on hud -> incorrect
    rustic sash ilvl 78 -> hidden on map, shown on hud -> incorrect
    studded belt ilvl 78 -> hidden on map, shown on hud -> incorrect
    turquois amulet ilvl 78 -> hidden on map, shown on hud -> incorrect

    those are only examples, it applies to almost all jewellry/accessory

    link to the filter: Releases * NeverSinkDev/NeverSink-Filter * GitHub
    very strict version
    Code:
    Show #$lead to gold bases %TC-Corrupted-Bases
    	Corrupted True
    	Class Amulet Belt
    	Rarity = Normal
    	SetFontSize 34
    	SetBorderColor 129 15 213 200        # BORDERCOLOR:	 Warband Item
    it's poehud issue, Corrupted is not working correctly that is because of following reason.
    Code:
                                                                                    //else
                                                                                    //{
                                                                                    //    var poeCorruptedContext = statement.poeCorrupted();
                                                                                    //    if (poeCorruptedContext != null)
                                                                                    //    {
                                                                                    //       poeCorruptedCondition &= mods.Corrupted == Convert.ToBoolean(poeCorruptedContext.Boolean().GetText());
                                                                                    //    }
                                                                                    //}
    If I did not reply to you, it mean the question you are asking is stupid.

  6. #5345
    xxsevernajaxx's Avatar Member
    Reputation
    7
    Join Date
    Mar 2011
    Posts
    76
    Thanks G/R
    4/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nice, that was quite fast, looking forward to a fix. the suggestion to use lead to gold for anything else but sorcerer boots is a horrible decision by neversink though (just came to my attention, didn't ever look at that part)

  7. #5346
    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 xxsevernajaxx View Post
    nice, that was quite fast, looking forward to a fix. the suggestion to use lead to gold for anything else but sorcerer boots is a horrible decision by neversink though (just came to my attention, didn't ever look at that part)
    I don't think so the fix is possible any time soon.
    basically in poehud there is no reliable way to identify if an item is corrupted or not...


    As this is only "Show" that required corrupted to be true. I would suggest to remove this one.
    Also, there are some warband "show" with corrupted to be true, they would work, as in they also want "Identified" to be true too. and item identified property works correctly.
    Last edited by GameHelper; 04-01-2017 at 09:12 PM.
    If I did not reply to you, it mean the question you are asking is stupid.

  8. Thanks toadskin (1 members gave Thanks to GameHelper for this useful post)
  9. #5347
    IeUz's Avatar Member
    Reputation
    2
    Join Date
    Aug 2011
    Posts
    84
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there a clean dx9 version of PoEHud? (i.e. without virus)

  10. #5348
    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 IeUz View Post
    Is there a clean dx9 version of PoEHud? (i.e. without virus)
    no............
    If I did not reply to you, it mean the question you are asking is stupid.

  11. #5349
    IeUz's Avatar Member
    Reputation
    2
    Join Date
    Aug 2011
    Posts
    84
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    are you being sarcastic?

    i am just asking because there was some mention bout it by TehCheats, although others say it could be a false positive . . .

  12. #5350
    TehCheat's Avatar ★ Elder ★
    Reputation
    2563
    Join Date
    Oct 2013
    Posts
    1,900
    Thanks G/R
    349/2265
    Trade Feedback
    5 (100%)
    Mentioned
    32 Post(s)
    Tagged
    1 Thread(s)
    Originally Posted by IeUz View Post
    are you being sarcastic?

    i am just asking because there was some mention bout it by TehCheats, although others say it could be a false positive . . .
    Pretty sure it's getting flagged falsely because it uses a scrambler to change the exe name, which is something a lot of viruses do. If you're still uncomfortable using it, the code is open source (so you and others can see there's nothing malicious) and it's rather easy to compile it in VS2015 thanks to nuget grabbing packages automatically.

  13. Thanks toadskin (1 members gave Thanks to TehCheat for this useful post)
  14. #5351
    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)
    No, I am not being sarcastic I am just being paranoid about positives.

    I don't think so they are false positive, as I have compiled x64 version with memory reading, scrambler and everything (GitHub - zaafar/PoEHUD) with 0 positives (Antivirus scan for 61a1aeb16122c2ce3ad7d2d8915ff533a98d3719921106db6b6232a34c25f932 at
    2017-04-03 06:42:02 UTC - VirusTotal
    ).
    However, I do agree with TehCheat to compile it yourself by installing VS2015 rather than taking any risk.
    If I did not reply to you, it mean the question you are asking is stupid.

  15. Thanks toadskin (1 members gave Thanks to GameHelper for this useful post)
  16. #5352
    sight's Avatar Member
    Reputation
    2
    Join Date
    Jan 2015
    Posts
    64
    Thanks G/R
    3/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by zaafar View Post
    No, I am not being sarcastic I am just being paranoid about positives.

    I don't think so they are false positive, as I have compiled x64 version with memory reading, scrambler and everything (GitHub - zaafar/PoEHUD) with 0 positives (Antivirus scan for 61a1aeb16122c2ce3ad7d2d8915ff533a98d3719921106db6b6232a34c25f932 at
    2017-04-03 06:42:02 UTC - VirusTotal
    ).
    However, I do agree with TehCheat to compile it yourself by installing VS2015 rather than taking any risk.
    so the question is, does yours scramble the exe name....

    because here's the thing, unlike your tag says, there is an anti-cheat on poe
    but it's not like crappy ones like punk buster or any of the ones that came after in that school of thought

    it's constantly running but doesn't do any memory reads unless GGG tells it too
    they do that to be able to fish for hacks more effectively

    if you're new to the game since after beta... you probably want to read the whole zoomhack thread by gruud.

  17. #5353
    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 sight View Post
    so the question is, does yours scramble the exe name....
    Yeah it does cuz it's basically TehCheat version of PoeHud recompiled.
    If I did not reply to you, it mean the question you are asking is stupid.

  18. #5354
    HunterHero's Avatar Legendary
    Reputation
    656
    Join Date
    Jun 2006
    Posts
    879
    Thanks G/R
    150/230
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone else getting .NET errors?

    PoeHUD.Hud.ExternalOverlay.<OnLoad>d__14.MoveNext()
    System.Runtime.CompilerServices.AsyncMethodBuilderCore.<>c.<ThrowAsync>b__6_0(Ob ject state)


    It worked fine yesterday and I've tried searching through this thread but there doesn't seem to be any concrete solution.

  19. #5355
    vitasikxp2's Avatar Member
    Reputation
    10
    Join Date
    Jan 2017
    Posts
    69
    Thanks G/R
    3/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Startup error
    PoEHUD Overlay Updated-png

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:03 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