Zoom Hack, Map Hack and Full Bright for x64 menu

User Tag List

Page 2 of 6 FirstFirst 123456 LastLast
Results 16 to 30 of 87
  1. #16
    maper's Avatar Elite User __readgsqword(0x188); CoreCoins Purchaser
    Reputation
    496
    Join Date
    Nov 2013
    Posts
    356
    Thanks G/R
    26/353
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by zaafar View Post
    I cannot share the source.
    Just out of curiosity, why? If your program modifies the game's virtual memory, it would be trivial to get the source, anyway.

    Zoom Hack, Map Hack and Full Bright for x64
  2. #17
    kkc123's Avatar Member
    Reputation
    1
    Join Date
    Feb 2017
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    When i pressed the keys i only heard the sound but it did nothing.

  3. #18
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    2455
    Join Date
    Jun 2015
    Posts
    3,048
    Thanks G/R
    455/2200
    Trade Feedback
    0 (0%)
    Mentioned
    65 Post(s)
    Tagged
    1 Thread(s)
    Originally Posted by Vendrick View Post
    Just out of curiosity, why? If your program modifies the game's virtual memory, it would be trivial to get the source, anyway.
    There was a time when I reverse engineer another man hack (for learning).
    So I know what you are saying but It's still better than giving it on a plate.

    Originally Posted by kkc123 View Post
    When i pressed the keys i only heard the sound but it did nothing.
    Steam or non steam?




    Btw if anyone wanna contribute, these hacks doesn't have "remove black object/spot".
    Last edited by GameHelper; 02-09-2017 at 03:28 AM.
    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. #19
    guru007's Avatar Member
    Reputation
    2
    Join Date
    Jan 2017
    Posts
    13
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    is there a way to fix the blackness while zooming out?

  6. #20
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    2455
    Join Date
    Jun 2015
    Posts
    3,048
    Thanks G/R
    455/2200
    Trade Feedback
    0 (0%)
    Mentioned
    65 Post(s)
    Tagged
    1 Thread(s)
    not that i know of.
    If I did not reply to you, it mean the question you are asking is stupid.

  7. #21
    maper's Avatar Elite User __readgsqword(0x188); CoreCoins Purchaser
    Reputation
    496
    Join Date
    Nov 2013
    Posts
    356
    Thanks G/R
    26/353
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by guru007 View Post
    is there a way to fix the blackness while zooming out?
    This is possible. The game will typically set a back clipping plane to cull objects that are too far away. In DirectX 11, which is what the 64-bit client uses, there is a structure called D3D11_VIEWPORT, which has a MaxDepth member that can be adjusted. It's just a matter of finding this structure, or one like it.

    The blackness can also be a rendering artifact of the shadows system in POE specifically. Try disabling shadows and you may be able to zoom out further before reaching the back clipping plane.
    Last edited by maper; 02-09-2017 at 11:31 AM.

  8. Thanks toadskin (1 members gave Thanks to maper for this useful post)
  9. #22
    kkc123's Avatar Member
    Reputation
    1
    Join Date
    Feb 2017
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    im using a non-steam version.
    window 10

  10. #23
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    2455
    Join Date
    Jun 2015
    Posts
    3,048
    Thanks G/R
    455/2200
    Trade Feedback
    0 (0%)
    Mentioned
    65 Post(s)
    Tagged
    1 Thread(s)
    Originally Posted by Vendrick View Post
    This is possible. The game will typically set a back clipping plane to cull objects that are too far away. In DirectX 11, which is what the 64-bit client uses, there is a structure called D3D11_VIEWPORT, which has a MaxDepth member that can be adjusted. It's just a matter of finding this structure, or one like it.

    The blackness can also be a rendering artifact of the shadows system in POE specifically. Try disabling shadows and you may be able to zoom out further before reaching the back clipping plane.
    it's difficult to search for something which is constant in cheat engine.
    Even if i know the value of MaxDepth I cannot change that value to narrow down my results.....or if different instances have different MaxDepth value then it may work...


    Originally Posted by kkc123 View Post
    im using a non-steam version.
    window 10
    hmm, no idea how to debug it bro....I am using non-steam and windows 10 and it's working on my computer....
    If I did not reply to you, it mean the question you are asking is stupid.

  11. #24
    maper's Avatar Elite User __readgsqword(0x188); CoreCoins Purchaser
    Reputation
    496
    Join Date
    Nov 2013
    Posts
    356
    Thanks G/R
    26/353
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by zaafar View Post
    it's difficult to search for something which is constant in cheat engine.
    Even if i know the value of MaxDepth I cannot change that value to narrow down my results.....or if different instances have different MaxDepth value then it may work...
    Cheat Engine is just one tool in your arsenal. In the case of trying to find a D3D11_VIEWPORT structure, I would use a debugger such as WinDbg or Ollydbg to set a breakpoint on a function that uses that structure - for example, ID3D11DeviceContext::RSSetViewports.

  12. #25
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    2455
    Join Date
    Jun 2015
    Posts
    3,048
    Thanks G/R
    455/2200
    Trade Feedback
    0 (0%)
    Mentioned
    65 Post(s)
    Tagged
    1 Thread(s)
    Originally Posted by Vendrick View Post
    Cheat Engine is just one tool in your arsenal. In the case of trying to find a D3D11_VIEWPORT structure, I would use a debugger such as WinDbg or Ollydbg to set a breakpoint on a function that uses that structure - for example, ID3D11DeviceContext::RSSetViewports.
    Thx for the starting point! I will definitely work on that.
    If I did not reply to you, it mean the question you are asking is stupid.

  13. #26
    ninbe's Avatar Member
    Reputation
    1
    Join Date
    Feb 2017
    Posts
    3
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can i get banned using this? will the AC detect?

    is the zoom working?

  14. #27
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    2455
    Join Date
    Jun 2015
    Posts
    3,048
    Thanks G/R
    455/2200
    Trade Feedback
    0 (0%)
    Mentioned
    65 Post(s)
    Tagged
    1 Thread(s)
    Originally Posted by ninbe View Post
    can i get banned using this? will the AC detect?
    is the zoom working?
    No idea*, No idea*, yes.


    *using it since last 2 leagues no ban.
    If I did not reply to you, it mean the question you are asking is stupid.

  15. Thanks ninbe, toadskin (2 members gave Thanks to GameHelper for this useful post)
  16. #28
    ninbe's Avatar Member
    Reputation
    1
    Join Date
    Feb 2017
    Posts
    3
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by zaafar View Post
    No idea*, No idea*, yes.


    *using it since last 2 leagues no ban.


    Hopefully the Anti Cheat doesnt detect, I am a returning player and all i really want to use is Zoomout and Brightness

  17. #29
    ninbe's Avatar Member
    Reputation
    1
    Join Date
    Feb 2017
    Posts
    3
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    doesnt work on me, just tried. it just makes beep noise when i click , ?

  18. #30
    darkknight7777's Avatar Member
    Reputation
    1
    Join Date
    Feb 2013
    Posts
    39
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Maybe the new patch just recently broke it? I couldn't get it to work either

Page 2 of 6 FirstFirst 123456 LastLast

Similar Threads

  1. Replies: 3
    Last Post: 02-29-2024, 11:00 PM
  2. [Hack] Found a open source Map/Zoom hack that needs updated
    By dtmajors in forum PoE Bots and Programs
    Replies: 1
    Last Post: 03-09-2016, 01:16 AM
  3. Replies: 23
    Last Post: 11-06-2015, 12:26 PM
  4. Replies: 4
    Last Post: 01-03-2009, 05:28 PM
All times are GMT -5. The time now is 04:03 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search