Need help finding GetMainCharacterIndex function address

06/07/2022 11:36 unmaykr#1
Hello, I've recently jumped into game hacking and can't get past this problem.
I'm trying to find the GetMainCharacterIndex function address in Cheat Engine.
Here's the function in Cheat engine:
[Only registered and activated users can see links. Click Here To Register...]

And for example here's the GetTargetVID function in Cheat Engine:
[Only registered and activated users can see links. Click Here To Register...]

In this function it's easy to find the address, its called in the 2nd line so the address is: base + 0x0F6F40.

How would I go about finding the address in the GetMainCharacterIndex function?
06/08/2022 21:14 cyphersKitten#2
1. Learn C++
2. Learn how to use CE
3. Learn how to reverse engineer
4. Learn how memory works
5. Better use a known website like imgur to upload pictures, because I doubt people will click on an unknown website called "postimg.cc" before checking it. (I never saw it before)
06/08/2022 21:53 unmaykr#3
Quote:
Originally Posted by ~2B~ View Post
1. Learn C++
2. Learn how to use CE
3. Learn how to reverse engineer
4. Learn how memory works
5. Better use a known website like imgur to upload pictures, because I doubt people will click on an unknown website called "postimg.cc" before checking it. (I never saw it before)
Imgur was down at the time of posting, couldnt find any other site to upload the images but i've updated the links now.
I'm trying to learn reverse engineering, trying to find stuff by myself but I'm stuck on this for like 2 days now, thats why I'm trying to get some hints, there are many functions i'm interested but they're also looking like this.
06/09/2022 08:34 br4ve-trave1er.asf#4
Quote:
Originally Posted by unmaykr View Post
Imgur was down at the time of posting, couldnt find any other site to upload the images but i've updated the links now.
I'm trying to learn reverse engineering, trying to find stuff by myself but I'm stuck on this for like 2 days now, thats why I'm trying to get some hints, there are many functions i'm interested but they're also looking like this.
just go to unknown_cheats/guidedhacking you wont find help here
06/10/2022 08:14 Affenmaster02#5
Get the base address of the python module(s) (eventually use exlib and OpenBot with the python loader for that, because they do it already, although it seems there is an update missing, so it may not work)

When you have the python base addresses, load yourself an python entry point,
"Include" the _chr module,
Set a breakpoint,
Execute the method from python
And you will jump right to the method address, since it's a cythonized method