Not a member yet? Why not Sign up today
Create an account  

Themabewertung:
  • 0 Bewertung(en) - 0 im Durchschnitt
  • 1
  • 2
  • 3
  • 4
  • 5
I DIE IN GAME(WATCH VIDEO)

#36
Hello...
Here we go with the little guide...
First of all you must have cheat engine and your game running.
I take the same code from a few posts above... For the players armor...
So this is what you see...

Picture 1
[Bild: v33ggg5q.jpg]
Doubleclick on the address that esi holds shown in the players register window. In my case its 106C0EB8 (yellow marked).
You can see that the bottom of the memory viewer is now shown this memory region...
Now its time to go to the dissect function. You can see this in the next picture...

Picture 2
[Bild: 7cq4jqcy.jpg]
Now a new window pops up like this in Picture 3...

Picture 3
[Bild: unbh2pg4.jpg]
Now you have to create a new structure... You can do this by press [CTRL+N]...
I named this new structure "Armor --- ESI" but you can choose an other one if you wish...
The size of the structure (512) is more as enough. But in other situations or games you can increase this if needed...
When you made all of your choices simply click the OK button...
Now doubleclick on the address that esi holds shown in the enemys register window. In my case its 1223F268 (green marked).
Back to the structure window you press [CTRL+A] to show the enemy structure.
And this is now the interesting part. You must compare between the player and enemy structure started from the adress that esi holds.
For this guide i filtered out the necessary offset as shown in Picture 4.

Picture 4
[Bild: pbnefblw.jpg]
Now click on the little arrow on the left (under the string "Armor ..." and left from 00E4 ).
This we will see as shown in Picture 5.

Picture 5
[Bild: g4biullx.jpg]
At this point you can see how i find my comparings to filter out if its a enemy or player address...
To clarify -> i read the address that esi holds, to this address i add the hex value 0xe4.
That means in my case ESI (0x106C0EB8) + 0xe4 = 0x106C0F9C. And now i read the 4 byte value that 0x106C0F9C holds...
I simply to this with this code...
Code:
mov eax,[esi+000000E4]        <<<--- copy value of [esi+e4] to eax
In my case its 0x12410E40. This value is also a pointer to another memory region. It can also be variable with a new game start or if i load a saved game.
But the value "Player" is everytime the same. So i can say YES its a player address...
This compare i do simply with this code...
Code:
cmp [eax],79616C50 { "Play" }    <<<--- cmp value at address that eax holds with 'Play' (Player)


And this is a last picture to show this a little bit easier...
Picture 6
[Bild: c6azw7sp.jpg]
Zitieren



Nachrichten in diesem Thema
I DIE IN GAME(WATCH VIDEO) - von Kannibal - 20.05.2021, 16:53
RE: I DIE IN GAME(WATCH VIDEO) - von DNA - 21.05.2021, 12:43
RE: I DIE IN GAME(WATCH VIDEO) - von DNA - 21.05.2021, 13:11
RE: I DIE IN GAME(WATCH VIDEO) - von Kannibal - 21.05.2021, 18:53
RE: I DIE IN GAME(WATCH VIDEO) - von DNA - 21.05.2021, 19:39
RE: I DIE IN GAME(WATCH VIDEO) - von Kannibal - 23.05.2021, 17:11
RE: I DIE IN GAME(WATCH VIDEO) - von DNA - 23.05.2021, 22:55
RE: I DIE IN GAME(WATCH VIDEO) - von Kannibal - 24.05.2021, 14:49
RE: I DIE IN GAME(WATCH VIDEO) - von DNA - 24.05.2021, 19:21
RE: I DIE IN GAME(WATCH VIDEO) - von Kannibal - 30.05.2021, 06:52
RE: I DIE IN GAME(WATCH VIDEO) - von DNA - 30.05.2021, 10:13
RE: I DIE IN GAME(WATCH VIDEO) - von Kannibal - 30.05.2021, 10:15
RE: I DIE IN GAME(WATCH VIDEO) - von DNA - 08.06.2021, 16:19
RE: I DIE IN GAME(WATCH VIDEO) - von Kannibal - 10.06.2021, 14:58
RE: I DIE IN GAME(WATCH VIDEO) - von DNA - 10.06.2021, 16:06
RE: I DIE IN GAME(WATCH VIDEO) - von Kannibal - 11.06.2021, 16:56
RE: I DIE IN GAME(WATCH VIDEO) - von DNA - 17.06.2021, 14:23
RE: I DIE IN GAME(WATCH VIDEO) - von Kannibal - 22.06.2021, 05:32
RE: I DIE IN GAME(WATCH VIDEO) - von DNA - 22.06.2021, 14:58
RE: I DIE IN GAME(WATCH VIDEO) - von Kannibal - 22.06.2021, 20:24
RE: I DIE IN GAME(WATCH VIDEO) - von DNA - 23.06.2021, 13:44
RE: I DIE IN GAME(WATCH VIDEO) - von Kannibal - 25.06.2021, 14:29
RE: I DIE IN GAME(WATCH VIDEO) - von DNA - 25.06.2021, 20:44
RE: I DIE IN GAME(WATCH VIDEO) - von Kannibal - 29.06.2021, 06:03
RE: I DIE IN GAME(WATCH VIDEO) - von DNA - 29.06.2021, 20:36
RE: I DIE IN GAME(WATCH VIDEO) - von Kannibal - 30.06.2021, 10:08
RE: I DIE IN GAME(WATCH VIDEO) - von Kannibal - 01.07.2021, 10:54
RE: I DIE IN GAME(WATCH VIDEO) - von Kannibal - 01.07.2021, 15:32
RE: I DIE IN GAME(WATCH VIDEO) - von Kannibal - 01.07.2021, 19:40
RE: I DIE IN GAME(WATCH VIDEO) - von iNvIcTUs oRCuS - 02.07.2021, 14:44
RE: I DIE IN GAME(WATCH VIDEO) - von Kannibal - 02.07.2021, 22:33
RE: I DIE IN GAME(WATCH VIDEO) - von DNA - 03.07.2021, 08:30
RE: I DIE IN GAME(WATCH VIDEO) - von Kannibal - 25.07.2021, 09:54
RE: I DIE IN GAME(WATCH VIDEO) - von Kannibal - 30.07.2021, 15:36
RE: I DIE IN GAME(WATCH VIDEO) - von Kannibal - 13.08.2021, 07:17
RE: I DIE IN GAME(WATCH VIDEO) - von Kannibal - 13.08.2021, 11:10
RE: I DIE IN GAME(WATCH VIDEO) - von Kannibal - 13.08.2021, 12:24
RE: I DIE IN GAME(WATCH VIDEO) - von Kannibal - 14.08.2021, 11:11
RE: I DIE IN GAME(WATCH VIDEO) - von Kannibal - 15.08.2021, 04:33
RE: I DIE IN GAME(WATCH VIDEO) - von Kannibal - 15.08.2021, 20:00
RE: I DIE IN GAME(WATCH VIDEO) - von Kannibal - 15.08.2021, 22:20
RE: I DIE IN GAME(WATCH VIDEO) - von Kannibal - 16.08.2021, 04:09
RE: I DIE IN GAME(WATCH VIDEO) - von Kannibal - 16.08.2021, 06:34
RE: I DIE IN GAME(WATCH VIDEO) - von Kannibal - 01.09.2021, 12:24
RE: I DIE IN GAME(WATCH VIDEO) - von DNA - 03.09.2021, 15:58
RE: I DIE IN GAME(WATCH VIDEO) - von Kannibal - 16.09.2021, 06:55
RE: I DIE IN GAME(WATCH VIDEO) - von DNA - 16.09.2021, 12:59
RE: I DIE IN GAME(WATCH VIDEO) - von Kannibal - 28.10.2021, 07:26

Gehe zu:


Benutzer, die gerade dieses Thema anschauen:
2 Gast/Gäste