Search found 5 matches

by hardjack79
Wed Jan 29, 2020 12:30 am
Forum: General Gamehacking
Topic: Which strategy to find a variable using AOB scan in Cpp?
Replies: 3
Views: 1973

Re: Which strategy to find a global variable using AOB scan in Cpp?

A clarification: I think it was misleading and ignorant of me to call my target a "global variable". I've done some more reading and I think the variable is part of a structure that probably lives within the heap. In any case it resides in a 'black' address in CE that changes on each application sta...
by hardjack79
Tue Jan 28, 2020 9:06 pm
Forum: General Gamehacking
Topic: Which strategy to find a variable using AOB scan in Cpp?
Replies: 3
Views: 1973

Re: Which strategy to find a global variable using AOB scan in Cpp?

Thanks SunBeam. I think the idea of testing a method in Lua first is a great one. I'll try and figure out how to use a reference from within .text rather than looking directly in .data or .bss, which is what I think I have done so far (e.g. I haven't found a reference to my global variable, I've jus...
by hardjack79
Tue Jan 28, 2020 10:52 am
Forum: General Gamehacking
Topic: Which strategy to find a variable using AOB scan in Cpp?
Replies: 3
Views: 1973

Which strategy to find a variable using AOB scan in Cpp?

I've written a little program in C++2019 for theHunter (x64) that reads a global variable (number of animals I've scared away) and plays a short sound clip whenever that increments. It works well until there is a game update and then I need to update the pointers, so I would like to transition to an...
by hardjack79
Wed Jul 31, 2019 9:41 am
Forum: General Gamehacking
Topic: Lost in the registers - theHunter [x,y,z]
Replies: 2
Views: 103193

Re: Lost in the registers - theHunter [x,y,z]

Thanks SunBeam, that is super helpful. I'm sure there are plenty of other things I can mess around with instead (not looking to make it easier really, just have fun with it).
by hardjack79
Sat Jul 27, 2019 12:37 am
Forum: General Gamehacking
Topic: Lost in the registers - theHunter [x,y,z]
Replies: 2
Views: 103193

Lost in the registers - theHunter [x,y,z]

Hi all, I'm just getting into CE and game hacking but it is my new favourite pass-time. But I've hit a wall and hopefully someone who understands can explain why. I'm trying to hack teleportation into theHunter CotW singleplayer. I've found static addresses for float player position in the world (or...