PoeHUD - Overlay for Path of Exile menu

User Tag List

Page 106 of 125 FirstFirst ... 656102103104105106107108109110 ... LastLast
Results 1,576 to 1,590 of 1871
  1. #1576
    rinleez's Avatar Banned
    Reputation
    1
    Join Date
    Jan 2009
    Posts
    66
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by shlomoe View Post
    No one has reported being banned solely by using poehud, you however said you were banned for botting.
    Several people got banned for botting since the patch. If they can detect the bot(exiled bot I suppose, exilebuddy is down for maintenance luckily), they can detect poe hud as well. It would seem like a better plan to gradually investigate "flagged" accounts and prepare a bigger banwave, rather than auto ban all minor offenders like people who used a zoomhack. I would understand why GGG would decide to instantly ban bots to be their priority, since bots are the ones ruining the economy and actually NOT playing the game.

    PoeHUD - Overlay for Path of Exile
  2. #1577
    Mike2012's Avatar Member
    Reputation
    8
    Join Date
    Oct 2012
    Posts
    85
    Thanks G/R
    44/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well, most likely all who used the PoEHUD after the last 10mb patch will get banned soon. - That also includes me. - Therefore I (tried) to move my valuable stash items onto my GF's old ACC.

  3. #1578
    Druzil01's Avatar Member
    Reputation
    7
    Join Date
    Mar 2014
    Posts
    93
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by shlomoe View Post
    If the client hacks (maphack etc) are disabled but still present in the HUD, do they still write into memory? Or would removing them from the HUD stop them?
    does a Shotgun coninously shoot if you have it soemwhere in your house and not Using it?

  4. #1579
    OriginalNameFrom's Avatar Member
    Reputation
    1
    Join Date
    Mar 2014
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Guys, please if you know help me with some helpful stuff from PoeHUD!
    Is it safe to use minimap with monsters? I NEEDED that SO MUCH to see if there any monsters left and i want to know if its detectable and safe.

    Is it safe to use detector Masters and StrongBoxes when i join location ?

    Is it safe to use detector loot (Drop Maps, Drop Orbs, Drop Unique, Drop Craft base items) ?

    Thanks a lot!

  5. #1580
    FrankTheCrazy's Avatar Member
    Reputation
    11
    Join Date
    Nov 2008
    Posts
    122
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by OriginalNameFrom View Post
    Guys, please if you know help me with some helpful stuff from PoeHUD!
    Is it safe to use minimap with monsters? I NEEDED that SO MUCH to see if there any monsters left and i want to know if its detectable and safe.

    Is it safe to use detector Masters and StrongBoxes when i join location ?

    Is it safe to use detector loot (Drop Maps, Drop Orbs, Drop Unique, Drop Craft base items) ?

    Thanks a lot!
    These all CAN be detected but from what ive personally seen it only seems to scan for the maphack CURRENTLY. Are you safe using ANY hack? No one knows

  6. #1581
    Satin's Avatar Member
    Reputation
    1
    Join Date
    Dec 2014
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm 80 percent sure that this app still writes to mem even when client hacks are disabled since it pushes the disabled state to the games memory.
    Aka unsafe.

  7. #1582
    asakapatae1234's Avatar Member
    Reputation
    1
    Join Date
    Feb 2014
    Posts
    15
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    poehud hooks itself but doesn't flip the switch for client hacks if you leave it at default settings which is disabled.

  8. #1583
    ralyeh's Avatar Member
    Reputation
    1
    Join Date
    Jan 2015
    Posts
    50
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Satin View Post
    I'm 80 percent sure that this app still writes to mem bla-bla-bla
    Repair the detector.

  9. #1584
    Satin's Avatar Member
    Reputation
    1
    Join Date
    Dec 2014
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    private void DisableMaphack()
    {
    int addr = m.AddressOfProcess + m.offsets.MaphackFunc;
    if (m.ReadByte(addr) != 0x51)
    {
    Console.WriteLine("Something is wrong with maphackfunc");
    }
    else
    {
    for (; (int)m.ReadByte(addr) != 0xC3; ++addr)
    {
    if (m.ReadByte(addr) == 0xD9 && m.ReadByte(addr + 1) == 0xE
    m.WriteBytes(addr + 1, 0x00);
    }
    Console.WriteLine("Maphack removed");
    }
    So this gets called when it's off, m.WriteBytes(addr + 1, 0x00); ... i'll let you guess what that does eh ?

  10. #1585
    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 Satin View Post
    So this gets called when it's off, m.WriteBytes(addr + 1, 0x00); ... i'll let you guess what that does eh ?
    Doesn't that only get called when you toggle off the maphack, though? If you start with maphack off it should never get called.

  11. #1586
    ralyeh's Avatar Member
    Reputation
    1
    Join Date
    Jan 2015
    Posts
    50
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Satin, put a breakpoint in the debug on this row:
    Code:
    m.WriteBytes(addr + 1, 0x00);
    Originally Posted by TehCheat View Post
    Doesn't that only get called when you toggle off the maphack, though? If you start with maphack off it should never get called.
    This method's invoked on Dispose method even when it's turned off.
    Last edited by ralyeh; 01-14-2015 at 02:47 PM.

  12. #1587
    droopie28's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    79
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Welp moved all my good items to another account, bet you it gets banned too, gl all!

  13. #1588
    discroll's Avatar Member
    Reputation
    1
    Join Date
    Jan 2015
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i used it to disable particles before upgrading my computer 2 months ago so i dont have it anymore. are there any traces of it that they can detect ?

  14. #1589
    Tyman3's Avatar Sergeant
    Reputation
    6
    Join Date
    Jun 2012
    Posts
    63
    Thanks G/R
    4/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by discroll View Post
    i used it to disable particles before upgrading my computer 2 months ago so i dont have it anymore. are there any traces of it that they can detect ?
    No


    10 characters

  15. #1590
    toykilla's Avatar Member
    Reputation
    3
    Join Date
    Sep 2012
    Posts
    33
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by vocalist926 View Post
    Pretty sure facebook tracks you even when you are not on their website.
    I am pretty sure you signed an agreement with facebook allowing them to do that...

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. [Buying] Looking for path of exile high lvl account
    By kevel1 in forum PoE Buy Sell Trade
    Replies: 0
    Last Post: 01-29-2013, 09:46 PM
  3. [Selling] Dota 2 cd-key or trade for Path of Exile
    By neepz in forum General MMO Buy Sell Trade
    Replies: 0
    Last Post: 01-13-2013, 11:22 AM
  4. [Trading] Dota2 beta keys for Path of Exile beta keys
    By shaunffs in forum General MMO Buy Sell Trade
    Replies: 0
    Last Post: 12-13-2012, 04:20 PM
  5. [Trading] 20m D3 Gold for Path of Exiles Beta Key
    By Jam3z in forum Diablo 3 Buy Sell Trade
    Replies: 0
    Last Post: 07-31-2012, 05:30 PM
All times are GMT -5. The time now is 03:00 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