CLEO Help Cleo - Health memory hack

CLEO related
Status
Not open for further replies.

mbcool

Active member
Joined
May 14, 2013
Messages
49
Reaction score
0
Hey :) :):)

I try to change my health with memory hacking.
But I failed :( :(:(

Whats wrong?
(Noob attack :D :D:D )

0A96: 3@ = actor $PLAYER_ACTOR struct
3@ += 540
0A8C: write_memory 3@ size 4 value 1000 virtual_protect 0

I tried it with the actor struct and the CPED base adress but nothing works ...


//_____________________Same Question again for german people (my english is not the best)_______________________//
Ich habe versucht mein Leben per Memory Hacking zu ändern.
Aber es klappt nicht :( :(:(

Was mache ich falsch?

0A96: 3@ = actor $PLAYER_ACTOR struct
3@ += 540
0A8C: write_memory 3@ size 4 value 1000 virtual_protect 0

Ich habe es mit dem "Actor struct" und der "CPED" base Adresse probiert, aber nichts hat geklappt.
 

mbcool

Active member
Joined
May 14, 2013
Messages
49
Reaction score
0
Es geht darum, dass ich testen / lernen / wissen möchte wie Memory Hacking mit CLEO funktioniert.
Und ich hab mir gedacht, ich mach es am Health.

___

I want to know / learn how to do memory hacking with cleo.
And i thought i'll try it with simple stuff like health.
 
Joined
Feb 18, 2005
Messages
2,965
Reaction score
271
Hey :) :):)

I try to change my health with memory hacking.
But I failed :( :(:(

Whats wrong?
(Noob attack :D :D:D )

0A96: 3@ = actor $PLAYER_ACTOR struct
3@ += 540
0A8C: write_memory 3@ size 4 value 1000 virtual_protect 0

I tried it with the actor struct and the CPED base adress but nothing works ...

First learn the difference between hexdecimals(0x540) and decimals(1344).
Second health is float so use 1000.0

Code:
0A96: 3@ = actor $PLAYER_ACTOR struct
3@ += 0x540 // or 1344
0A8C: write_memory 3@ size 4 value 100.0 virtual_protect 0
 
Status
Not open for further replies.
Top