How to "start" cheating in PathOfExile? menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 27
  1. #1
    Fire7D's Avatar Member
    Reputation
    1
    Join Date
    May 2018
    Posts
    22
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    How to "start" cheating in PathOfExile?

    Hello, Im new on this forum (at least on posting scene) and I have "simple" question - How to "start" cheating in PathOfExile?

    I have an idea what I want to do - External MapHack using ReadProcessMemory only and "Limited User" (Thats all, is it safe?) Finally I want to do something like this or even further this

    Is there any "offset database" like hazeDumper for CS:GO? What about league starts, easly updatable or I will have to find them myself?

    How to "start" cheating in PathOfExile?
  2. #2
    SuhzWarmane's Avatar Member
    Reputation
    6
    Join Date
    Apr 2018
    Posts
    28
    Thanks G/R
    1/5
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You read the forums.

    If you have software development knowledge, then you should be able to point yourself in the right direction. If you dont, well go learn how to program and come back in a 6 months - 1 year.

    Some threads have some members that have linked multiple resources that are super helpful, dont have the links off the top of my head though.

  3. #3
    Fire7D's Avatar Member
    Reputation
    1
    Join Date
    May 2018
    Posts
    22
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I literally can not imagine how can I get map-related address / offset for "standard" game (game without explore all map function lol), didnt even tried to analyse PathOfExile yet. Eventually I will take quick programming course from Google Ad. Thanks for ur input, ur response is very helpful.

  4. #4
    SuhzWarmane's Avatar Member
    Reputation
    6
    Join Date
    Apr 2018
    Posts
    28
    Thanks G/R
    1/5
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Cant tell if you are being sarcastic or not, but learning programming should be your step 1 if you want to learn how to do this.

    It requires quite a deep understanding of computer science to be able to reverse engineer a game.

  5. #5
    Fire7D's Avatar Member
    Reputation
    1
    Join Date
    May 2018
    Posts
    22
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Okay, I was on Bootcamp and I tried to do something. I found this post (Learning to read memory from ExileAPI [Help]) but I have problem with "...and then add the length of the instruction, which is 7...". What is this 7?

  6. #6
    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 Fire7D View Post
    Okay, I was on Bootcamp and I tried to do something. I found this post (Learning to read memory from ExileAPI [Help]) but I have problem with "...and then add the length of the instruction, which is 7...". What is this 7?
    Open that pattern in cheat engine, you will see that the instruction includes 7 byes. Basically that line ( or that whole paragraph actually) is talking about the POE game instruction at that point.

  7. #7
    Fire7D's Avatar Member
    Reputation
    1
    Join Date
    May 2018
    Posts
    22
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Isnt it changed for one year? then add the address of the start of the instruction, which is 0x1A, and then add the length of the instruction, which is 7. Based on this screenshot I have to add 0x5A (? it's dec90). In his case "result" should be 0x21 / (dec)33, in my case it should be 0xC / (dec)12. How to get this 0xC / (dec)12 in result of this?

    Any tips with InGameState?

    Again, based on this upper screenshot GameStateOffset = 0x7FF7F401A028 (the same address is in CMP opcode).
    0x7FF7F1A583D7 (start of pattern) + 0x025C1C45 (relative DWORD from client) + 0xC = 0x7FF7F401A028 (so it's correct as a guide said)
    The 8bytes value hidden behind 0x7FF7F401A028 address is 0x20F4A77B690.

    Then 0x20F4A77B690 + 48 offset points to 0x7FF7F401A028 address. Memory view of this address.

    Can You check that I'm on right track?

    EDIT: (ignore the upper thing)
    I guess im on right track now, added 48 offset to 0x7FF7F401A028 and it pointed me to this map.
    Am I right?
    Last edited by Fire7D; 10-11-2021 at 07:26 PM.

  8. #8
    Fire7D's Avatar Member
    Reputation
    1
    Join Date
    May 2018
    Posts
    22
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I think I found it (highlighted on screenshot). Can You check am I right? Screenshot

    I cant even get TimeInGame or MousePosX with this (0x7FF60363D4F0 + 0x770 or 0x644), pointing me to "nothing" good / returning me "nothing" good.
    Last edited by Fire7D; 10-11-2021 at 08:24 PM.

  9. #9
    GameAssist's Avatar Banned CoreCoins Purchaser Authenticator enabled
    Reputation
    98
    Join Date
    Apr 2010
    Posts
    349
    Thanks G/R
    55/83
    Trade Feedback
    0 (0%)
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    In my opinion, it is wrong to start mastering the study of the memory of an unfamiliar process using a ready-made pattern.
    Try to find, for example, the offsets for the position of your hero by moving around the map, his health (putting on or taking off things) or the offset for the camera by moving the cursor.
    Further, using open information about structures ExileApi/GameOffsets at master . Queuete/ExileApi . GitHub and their nesting one into another, you can gradually reach InGameState, which you find by a pattern that may change tomorrow and no one will tell you the new correct one

  10. #10
    Fire7D's Avatar Member
    Reputation
    1
    Join Date
    May 2018
    Posts
    22
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Found pointer on my own, it wasnt that hard. Now I have "problem" with LayerMelee. From where (First or Last) I have to read those bytes (what size)? I did read all (NumRows * bytesPerRow * 23 size) bytes from First but in my opinion it's still not right.

  11. #11
    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 Fire7D View Post
    Hello, Im new on this forum (at least on posting scene) and I have "simple" question - How to "start" cheating in PathOfExile?

    I have an idea what I want to do - External MapHack using ReadProcessMemory only and "Limited User" (Thats all, is it safe?) Finally I want to do something like this or even further this

    Is there any "offset database" like hazeDumper for CS:GO? What about league starts, easly updatable or I will have to find them myself?
    why do you wanna do that? i already have created a program that does exactly that (and more)
    https://www.ownedcore.com/forums/mmo...exile-api.html (GameHelper: A light version of PoeHUD/Exile-Api)

    Unless you are doing this for learning purposes.
    Last edited by GameHelper; 10-12-2021 at 09:54 PM.

  12. #12
    Fire7D's Avatar Member
    Reputation
    1
    Join Date
    May 2018
    Posts
    22
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I want to have something for private use with only one module (external map hack). For learning too of course, but it have to work atleast.

  13. #13
    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 Fire7D View Post
    I want to have something for private use with only one module (external map hack). For learning too of course, but it have to work atleast.
    Download my software and delete "Plugin -> PreloadAlert and SimpleFlaskManager" folders.
    This will make sure that only 1 module (external map hack) is left.

    I don't understand what you mean by private. My software source code is private, does that count as private?

  14. #14
    Fire7D's Avatar Member
    Reputation
    1
    Join Date
    May 2018
    Posts
    22
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    By "for private use" I mean my own private cheat. When I will get banned I will be mad with myself for doing sh1t. I think it's still just better to do something for my own use instead of using public one.

  15. #15
    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 Fire7D View Post
    By "for private use" I mean my own private cheat. When I will get banned I will be mad with myself for doing sh1t. I think it's still just better to do something for my own use instead of using public one.
    I see, make sense. Good luck!!!

Page 1 of 2 12 LastLast

Similar Threads

  1. [How-To] How to get started in the Inscription Glyph Market
    By Vilesting in forum World of Warcraft Guides
    Replies: 0
    Last Post: 02-13-2012, 08:54 AM
  2. How to get inside the tree in Sw trade district
    By Brisi[NOR] in forum World of Warcraft Exploits
    Replies: 11
    Last Post: 07-23-2007, 01:59 PM
  3. How to get through the door in Scholo
    By djzzero in forum World of Warcraft Exploits
    Replies: 8
    Last Post: 05-29-2007, 01:33 PM
  4. How to annoy horde and alliance in EotS.
    By XnS-Ozh in forum World of Warcraft Exploits
    Replies: 3
    Last Post: 05-04-2007, 05:40 PM
  5. How to not get deserter debuff in a BG!
    By wicked_joe in forum World of Warcraft Exploits
    Replies: 12
    Last Post: 11-01-2006, 03:09 PM
All times are GMT -5. The time now is 08:31 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